Architecture
TODO:
Migrate references to ZNM
Update links to stale documentation + old monorepo
Summary
Purpose
This document describes a governable system for executing permissioned actions across chains.
We aim to clearly describe
what contracts comprise the system for calling permissioned functions across chains
which functions will be delegated to this system at launch, and
(directionally) who will have permission to call these functions at launch and in the future
Out of Scope
This document does NOT describe a system for how governance actions will be proposed, voted on, and/or approved before being executed.
It does not describe how contract upgrades will be written, reviewed, verified.
Overview
Pre-requisite Reading
If you're not familiar with how Nomad cross-chain messaging passing works, we recommend checking out the Protocol section on Cross-chain Messaging.
It may also help to familiarize yourself with the Router Pattern. The
GovernanceRouter
described below follows this pattern in the context of a cross-chain governance xApp.
We define a role, governor
, with the power to perform permissioned actions across chains. In order to empower the governor
, we deploy a cross-chain application comprised of a GovernanceRouter
contract on each chain.
Each GovernanceRouter
can be delegated control over an arbitrary set of permissioned functions on its local chain. The only way to access the permissioned functionality is to call the function via the GovernanceRouter
contract.
Each GovernanceRouter
is programmed to accept messages only from the governor
, which is deployed on only one chain. The governor
may call the contract locally (if it is deployed on the same chain), or it may send it messages remotely via Nomad. Because of its exclusive power over the GovernanceRouter
contracts, the governor
has exclusive rights to perform all of the permissioned roles that are delegated to the GovernanceRouter
on each chain.
The system receives orders from the governor
and carries out their effects across chains; it is agnostic to how the governor
chooses to operate. This maintains flexibility to design the governance proposal process in the future.
At launch, the core functionality that will be delegated to the GovernanceRouter
on each chain is the power to upgrade the implementation of the Home
and Replica
contracts. This way, the governor
will have the power to conduct upgrades of the Nomad system on every chain. More details on the upgradability system can be found here.
At launch, the governor
will be a multisig of trusted team and community members. In the near future, the governor
role will most likely be transferred to a more fully-featured set of contracts capable of accepting proposals, tallying votes, and executing successful proposals.
Message Flow Diagram
governor
sends message to its localGovernanceRouter
GovernanceRouter
dispatches the message...if the recipient is local, to the recipient directly (→ process finished)
if the recipient is remote, via Nomad to the local Home contract (→ continue to 3)
Message is relayed from local
Home
to remoteReplica
via NomadReplica
dispatches message to the remoteGovernanceRouter
GovernanceRouter
dispatched the message directly to the local recipient
Note on message recipient:
the recipient may be a
Replica
orHome
contractit may be an
UpgradeBeacon
that controls the implementation ofReplica
orHome
it may be any other app
For simplicity & clarity to show the message flow, this diagram represents the recipient as a generic "App"
Specification
Glossary of Terms
xApp - Cross-Chain Application
role —
an address stored in a smart contract's state that specifies an entity with special permissions on the contract
permission to call certain functions is usually implemented using a function modifier that requires that the caller of the function is one of the roles with permission to call it; all contract calls sent from callers that do not have valid permission will revert
example:
owner
is the role set on all Ownable contracts upon deployment; theowner
role has exclusive permission to call functions with theonlyOwner
modifier
permissioned function —
any smart contract function that restricts callers of the function to a certain role or roles
example: functions using the
onlyOwner
modifier on Ownable contracts
permissioned call — a call to a permissioned function
governor chain —
the chain on which the
governor
is deployedthe chain whose
GovernanceRouter
is also the specialGovernorRouter
which can send messages; allGovernanceRouters
on other chains can only receive governance messages
On-Chain Components
GovernanceRouter
xApp designed to perform permissioned roles on core Nomad contracts on all chains
State Variables
governor state variable
if the
governor
is local,governor
will be set to the EVM address of thegovernor
if the
governor
is remote,governor
will beaddress(0)
governorDomain state variable
the Nomad domain of the governor chain
stored as a state variable on all
GovernanceRouters
; should be the same on allGovernanceRouters
; always non-zeroif the
governor
is local,governorDomain
is equal to theoriginDomain
of the localHome
contractif the
governor
is remote,governorDomain
is equal to theoriginDomain
of the remoteHome
contract
equal to the
originDomain
of the localHome
contract on the chain of theGovernorRouter
used by all
GovernanceRouters
to determine whether an incoming Nomad message was sent from theGovernorRouter
if the message is from the
GovernorRouter
, theGovernanceRouter
will handle the incoming messageif not, it will revert
routers state variable
a mapping of domain → address of the remote
GovernanceRouter
on every other chain
domains state variable
an array of all domains that are registered in
routers
used to loop through and message all other chains when taking governance actions
there is the possibility that some domains in the array are null (if a chain has been de-registered)
GovernorRouter
the special
GovernanceRouter
that has permission to send governance messages to all otherGovernanceRouters
the
GovernanceRouter
on the governor chain
Governor
via the
GovernanceRouter
system, it has the unique ability to call permissioned functions on any contract on any chain that transfers permission to the localGovernanceRouter
the role with permission to send messages to the
GovernorRouter
the
GovernorRouter
has exclusive permission to send messages via Nomad to all otherGovernanceRouters
the
GovernanceRouters
can have arbitrary permissions delegated to them by any contract on their local chaintherefore, the
governor
is the entity with the power to call any permissioned function delegated to anyGovernanceRouter
on any chain
there is only one
governor
throughout the Nomad system; it can be deployed on any chainthe
governor
role can always be transferred to another contract, on the same chain or a different remote chainstored as a state variable on
GovernanceRouters
; set to zero on allGovernanceRouters
except on the governor chainAny contract on any chain that wishes for this governance system to have discretion to call a set of its functions can create a role & a function modifier giving exclusive permission to that role to call the function(s) (similar pattern to Ownable). The contract must then set the local
GovernanceRouter
to the permissioned role, which — by extension — gives thegovernor
exclusive permission to call those functions (regardless of whether thegovernor
is remote or local)
Failure States#
If there is fraud on the Nomad Home
contract on the governor chain, this is currently a "catastrophic failure state" — no further governance actions can be rolled out to remote chains; we must create a plan to recover the system in this case.
Message Types
Executing (Arbitrary) Calls
for each chain, the
governor
constructs the array of(to, data)
calls to the permissioned functions on the contracts that will perform the upgrades on that chainthe
governor
sends a transaction to theGovernanceRouter.callRemote
function on its local the , passing in thedomain
of the remote chain and the array of(to, data)
calls of transactions to execute on that chainthe local
GovernanceRouter
constructs an Nomad-compatible message from the array of calls, addresses the message to the remoteGovernanceRouter
, and sends the message to the localHome
contractthe message is relayed from the local
Home
to the remoteReplica
contract on the specifieddomain
the
Replica
dispatches the message to the specified recipient, which is the localGovernanceRouter
the
GovernanceRouter
parses the message to decode the array of(to, data)
callsthe
GovernanceRouter
uses low-level call to execute each of the transactions in the array within the local chain
Transferring Governor
Possible State Transitions
called by the local owner to transfer ownership to another local owner (
domain
does not change,owner
changes to a newbytes32
address)called by the local owner to transfer ownership to a remote owner (
domain
changes to the remote,owner
changes from a non-zerobytes32
tobytes32(0)
)called by a remote owner to transfer ownership to a local owner (
domain
changes to the local domain,owner
changes frombytes32(0)
to a non-zerobytes32
)called by a remote owner to transfer ownership to another remote owner (
domain
changes to the new remote owner,owner
remainsbytes32(0)
)
Enrolling a Router
used when a new chain is added to Nomad after we've already set up the system and transferred governorship
add a new domain → address mapping to the
routers
mapping on every otherGovernanceRouter
Functionality at Launch
Permissioned Roles
At launch, the GovernanceRouter
system will have the following permissions:
upgrade the implementation of
Home
(viaUpgradeBeacon
pattern)upgrade the implementation of all
Replicas
(via 1-to-NUpgradeBeacon
pattern)upgrade the implementation of itself (via
UpgradeBeacon
pattern)
The GovernanceRouter
will NOT have permission to:
un-enroll a
Replica
from theUsingNomad
contract, which will require a specialized role that can act quickly
Governor
The flexibility of this system will support a move to progressive decentralization.
Initially, the governor
will most likely be a multisig controlled by trusted team and community members
Later, the governor
role will most likely be transferred to a decentralized governance contract
Last updated