This document covers a general overview of the Gravity bridge design process, more detailed documents for specific things are listed below.
Minting and locking tokens in Gravity
The high-level workflow is:
Activation Steps:
- Bootstrap Cosmos SDK chain
- Deploy Ethereum contract
Token Transfer Steps:
- Transfer original ERC20 tokens from ETH to Cosmos
- Transfer pegged tokens from Cosmos to ETH
- Update Cosmos Validator set on ETH
The first two steps are done once, the other 3 repeated many times.
Words matter and we seek clarity in the terminology, so we can have clarity in our thinking and communication. Key concepts that we mention below will be defined here:
Operator
- This is a person (or people) who control a Cosmos SDK validator node. This is also calledvaloper
or "Validator Operator" in the Cosmos SDK staking sectionFull Node
- This is an Ethereum Full Node run by an OperatorValidator
- This is a Cosmos SDK Validating Node (signing blocks)Eth Signer
(name WIP) - This is a separate binary controlled by an Operator that holds Ethereum private keys used for signing transactions used to move tokens between the two chains.Oracle
(name WIP) - This is a separate binary controlled by an Operator that holds Cosmos SDK private keys used for bringing data from the Ethereum chain over to the Cosmos chain by submittingClaims
, these claims aggregate into anAttestation
Orchestrator
- a single binary that combines theEth Signer
,Oracle
, andRelayer
for ease of use by theOperator
Relayer
- This is a type of node that submits updates to the Gravity contract on Ethereum. It earns fees from the transactions in a batch.REST server
- This is the Cosmos SDK "REST Server" that runs on Port 1317, either on the validator node or another Cosmos SDK node controlled by the OperatorEthereum RPC
- This is the JSON-RPC server for the Ethereum Full Node.Validator Set
- The set of validators on the Cosmos SDK chain, along with their respective voting power. These are ed25519 public keys used to sign tendermint blocks.Gravity Tx pool
- Is a transaction pool that exists in the chain store of Cosmos -> Ethereum transactions waiting to be placed into a transaction batchTransaction batch
- A transaction batch is a set of Ethereum transactions to be sent from the Gravity Ethereum contract at the same time. This helps reduce the costs of submitting a batch. Batches have a maximum size (currently around 100 transactions) and are only involved in the Cosmos -> Ethereum flowGravity Batch pool
- Is a transaction pool like structure that exists in the chains to store, separate from theGravity Tx pool
it stores transactions that have been placed in batches that are in the process of being signed or being submitted by theOrchestrator Set
EthBlockDelay
- Is a agreed upon number of Ethereum blocks all oracle attestations are delayed by. NoOrchestrator
will attest to have seen an event occur on Ethereum until this number of blocks has elapsed as denoted by their trusted Ethereum full node. This should prevent short forks form causing disagreements on the Cosmos side. The current value being considered is 50 blocks.Observed
- events on Ethereum are consideredObserved
when theEth Signers
of 66% of the active Cosmos validator set during a given block has submitted an oracle message attesting to seeing the event.Validator set delta
- This is a term for the difference between the validator set currently in the Gravity Ethereum contract and the actual validator set on the Cosmos chain. Since the validator set may change every single block there is essentially guaranteed to be some nonzeroValidator set delta
at any given time.Allowed validator set delta
- This is the maximum allowedValidator set delta
this parameter is used to determine if the Gravity contract in MsgProposeGravityContract has a validator set 'close enough' to accept. It is also used to determine when validator set updates need to be sent. This is decided by a governance vote before MsgProposeGravityContract can be sent.Gravity ID
- This is a random 32 byte value required to be included in all Gravity signatures for a particular contract instance. It is passed into the contract constructor on Ethereum and used to prevent signature reuse when contracts may share a validator set or subsets of a validator set. This is also set by a governance vote before MsgProposeGravityContract can be sent.Gravity contract code hash
- This is the code hash of a known good version of the Gravity contract solidity code. It will be used to verify exactly which version of the bridge will be deployed.Start Threshold
- This is the percentage of total voting power that must be online and participating in Gravity operations before a bridge can start operating.Claim
(name WIP) - an Ethereum event signed and submitted to cosmos by a singleOrchestrator
instanceAttestation
(name WIP) - aggregate of claims that eventually becomesobserved
by all orchestratorsVoucher
- represent a bridged ETH token on the Cosmos side. Their denom is has agravity
prefix and a hash that is build from contract address and contract token. The denom is considered unique within the system.Counterpart
- to aVoucher
is the locked ETH token in the contractDelegate keys
- when anOperator
sets up theEth Signer
andOracle
they assignDelegate Keys
by sending a message containing these keys using theirValidator
address. There is one delegate Ethereum key, used for signing messages on Ethereum and representing thisValidator
on Ethereum and one delegate Cosmos key that is used to submitOracle
messages.Gravity Contract
- TheGravity Contract
is the Ethereum contract that holds all of the Gravity bridge bunds on the Ethereum side. It contains a representation of the cosmos validator set usingDelegate Keys
and normalized powers. For example if a validator has 5% of the Cosmos chain validator power, their delegate key will have 5% of the voting power in theGravity Contract
these value are regularly updated to keep the Cosmos and Ethereum chain validator sets in sync.
The Operator is the key unit of trust here. Each operator is responsible for maintaining 4 secure processes:
- Cosmos SDK Validator - signing blocks
- Fully synced Ethereum Full Node
Eth Signer
, which signs things with theOperator's
Eth keys and submits using messages additional documentation ethereum signingEth Oracle
, which observes events from Ethereum full nodes and relays them using messages additional documentation oracle
The Validator Set is the actual set of keys with stake behind them, which are slashed for double-signs or other misbehavior. We typically consider the security of a chain to be the security of a Validator Set. This varies on each chain, but is our gold standard. Even IBC offers no more security than the minimum of both involved Validator Sets.
The Eth Signer is a binary run alongside the main Cosmos daemon (gaiad
or equivalent) by the validator set. It exists purely as a matter of code organization and is in charge of signing Ethereum transactions, as well as observing events on Ethereum and bringing them into the Cosmos state. It signs transactions bound for Ethereum with an Ethereum key, and signs over events coming from Ethereum with a Cosmos SDK key. We can add slashing conditions to any mis-signed message by any Eth Signer run by the Validator Set and be able to provide the same security as the Valiator Set, just a different module detecting evidence of malice and deciding how much to slash. If we can prove a transaction signed by any Eth Signer of the Validator Set was illegal or malicious, then we can slash on the Cosmos chain side and potentially provide 100% of the security of the Validator Set. Note that this also has access to the 3 week unbonding
period to allow evidence to slash even if they immediately unbond.
The MultiSig Set is a (possibly aged) mirror of the Validator Set but with Ethereum keys, and stored on the Ethereum contract. If we ensure the MultiSig Set is updated much more often than the unbonding period (eg at least once per week), then we can guarantee that all members of the MultiSig Set have slashable atoms for misbehavior. However, in some extreme cases of stake shifting, the MultiSig Set and Validator Set could get quite far apart, meaning there is many of the members in the MultiSig Set are no longer active validators and may not bother to transfer Eth messages. Thus, to avoid censorship attacks/inactivity, we should also update this everytime there is a significant change in the Validator Set (eg. > 3-5%). If we maintain those two conditions, the MultiSig Set should offer a similar level of security as the Validator Set.
Slashing is documented in the slashing spec