If we remove the consensus protocol (blockchain and mining) what do we get? We're left with what Satoshi Nakamoto had before he added the consensus protocol. No blockchain, no mining, just the transaction history with nothing to protect it from double spend attacks.
Here I present what I call "proof of advanced delegation" (PAD). PAD eliminates double spends by spending them in advance. When an output is created, the transaction that spends it is created too and it's txid is embedded in the output before it gets published. The output of the last transaction is not yet spent so it remains unpublished.
Beginning with an arbitrary transaction in the ledger, A, it's output is A1. The unpublished transaction that spends it is B and it's output is B1. To make a payment, the sender:
- Creates a new transaction C that splits B1 between two new outputs, C1 payment and C2 change.
- Generates the txid of C and embeds it in B1.
- Creates another transaction E that spends C2 and embeds it's txid in C2.
- Publishes transactions B (advanced delegation).
- Sends transaction C with sigs to the receiver in secret.
The receiver then:
- Sees transaction B on the network which validates and binds it to transaction C.
- Creates two new transactions of his own, D and F. D spends C1 and F spends D1.
- Publishes C and D as a pair and saves F until he's ready to spend it.
Since every published output is bound to the txid of the unpublished transaction that spends it, there is no opportunity to double spend them therefore no consensus mechanism is required.