Bridges are tools used to replicate state transition functions between blockchains. In the most common form these state transitions are token transfers. The central challenge of bridge design comes from reconcilling differing blockchain archicture while maintaining an acceptable level of decentralization.
My goal with this post is to formalize some of the core concepts related to bridge design. Currently there is so much jargon and terminology in the field that the core concepts often become lost. While the mathematical concepts are very rough, I find this level of detail and notation very useful for working with the concepts and defining exactly what is happening during a bridge operation. The math in this paper will be far to high-level and abstract for most mathematicians, while the computer science will be too hand-wavy and conceptual for the computer scientists but it works for me and that is all that matters!
Definitions
Blockchain
A blockchain is a sequence of blocks
where each block contains the following properties:
- represents the -th block
- is the cryptographic hash of block
- is the set of transactions in block
- is a nonce value used in proof-of-work systems
- is the hash of the previous block (creating the chain), with for the genesis block
The blockchain is considered valid if and only if:
Blockchain State
Let denote the state space of the blockchain. At any block height , the blockchain has state .
A transaction can be defined as:
Where:
- is the sender address
- is the recipient address
- is the value being transferred
- is the transaction data (for contract interactions)
- is the gas limit
- is the gas price
- is the cryptographic signature to authenticate the transaction
State Transition Function
The state transition function maps the current state and a block of transactions to a new state:
Where is the block containing transactions .
This can be decomposed into transaction-level state transitions:
Where:
- (the state before any transaction in block is applied)
- (the state after all transactions in block are applied)
- is the transaction-level state transition function
State Storage and Light Clients
The blockchain state is stored in a Merkle Patricia Trie structure :
Where:
- is the key space (typically account addresses)
- is the value space (account states including balances, nonces, etc.)
The root hash of this trie provides a cryptographic commitment to the entire state:
Where is a cryptographic hash function.
Merkle Proofs
For any key-value pair in the state, a Merkle proof can be constructed:
The validity of a proof can be verified by:
If and only if is indeed in the state trie with root .
Light Clients
A light client maintains only block headers rather than the full state:
Where each header contains:
Light Client Verification
To verify that a transaction is included in block :
- Verify that header is valid in the chain
- Request Merkle proof for transaction
- Verify
To verify a state query for key with value at block :
- Request Merkle proof for at block
- Verify
Bridges as Functors
At the highest level we can think of a blockchain bridge as a functor such that:
-
For each state , there exists a mapping
-
For each valid transition in , there exists a corresponding valid transition in
-
The functor preserves composition:
-
The functor preserves identity:
We evaluate bridges on two primary axis Security Properties and Trust Assumptions.
Security Properties
The security of a bridge can be expressed as preservation of certain invariants across the functor :
-
Conservation of Assets: For any state , the total value of assets in equals the total value of assets in (modulo locked assets)
-
Finality Preservation: If is a finalized transition in , then must also be finalized in
-
Consistency: For any states , if , then
Trust Assumptions
-
Light-Client Bridge: is equipped with a verification functor where is a subcategory of containing lightweight verification objects (block headers, Merkle proofs)
-
Validity-Proof Bridge (ZK Bridge): is associated with a proof system such that: where is efficiently verifiable in without knowledge of the full state of
-
Optimistic Bridge: is paired with a challenge functor where:
-
Multi-Signature Bridge: is factored through an adjudication category with a consensus functor such that: where maps blockchain states to adjudication states requiring -of- consensus
Interoperability Trilemma
Let be the set of all blockchains. For any blockchain bridge system , we define three properties:
-
Trustlessness (): The security of the bridge approaches the minimum security of the connected chains. where represents the security level of blockchain .
-
Extensibility (): The ability to connect any pair of blockchains from the set . where means complete extensibility.
-
Generalizability (): The ability to transfer arbitrary data across chains. where is the set of message types supported by and is the set of all possible message types.
The Trilemma Formalization
The Interoperability Trilemma states that for any bridge system :
Where is a constant significantly less than 1, representing the fundamental trade-off limit.
References
https://medium.com/connext/the-interoperability-trilemma-657c2cf69f17
https://ethereum.org/en/developers/docs/bridges/
https://arxiv.org/pdf/1801.09515