Reference

Cryptex protocol is governed and upgraded by CTX token holders, using three distinct components; the CTX token, governance module, and Timelock. Together, these contracts allow the community to propose, vote, and implement changes to the Cryptex protocol.

Any addresses with more than 100k CTX delegated to it may propose governance actions, which contain finished, executable code. When a proposal is created, the community can cast their votes during a 3 day voting period. If a majority, and at least 400k votes are cast for the proposal, it is queued in the Timelock, and may be executed in a minimum of 2 days.

Timelock

The Timelock contract can modify system parameters, logic, and contracts in a 'time-delayed, opt-out' upgrade pattern. Timelock has a hard-coded minimum delay of 2 days, which is the least amount of notice possible for a governance action. Each proposed action will be published at a minimum of 2 days in the future from the time of announcement. Major upgrades, such as changing the risk system, may have up to a 30 day delay. Timelock is controlled by the governance module; pending and completed governance actions can be monitored on the Timelock Dashboard.

Key Events

DelegateChanged

DelegateChanged(
address indexed delegator,
address indexed fromDelegate,
address indexed toDelegate
);

Emitted when an account changes its delegate.

DelegateVotesChanged

DelegateVotesChanged(
address indexed delegate,
uint256 previousBalance,
uint256 newBalance
);

Emitted when a delegate account's vote balance changes.

ProposalCreated

ProposalCreated(
uint256 id,
address proposer,
address[] targets,
uint256[] values,
string[] signatures,
bytes[] calldatas,
uint256 startBlock,
uint256 endBlock,
string description
);

Emitted when a new proposal is created.

VoteCast

VoteCast(address voter, uint proposalId, bool support, uint votes)

Emitted when a vote has been cast on a proposal.

ProposalCanceled

ProposalCanceled(uint id)

Emitted when a proposal has been canceled.

ProposalQueued

ProposalQueued(uint id, uint eta)

Emitted when a proposal has been queued in the Timelock.

ProposalExecuted

ProposalExecuted(uint id)

Emitted when a proposal has been executed in the Timelock.

Read-Only Functions: CTX

Get Current Votes

function getCurrentVotes(address account) returns (uint96)

Returns the balance of votes for an account as of the current block.

NameType
accountaddressAddress of the account of which to retrieve the number of votes.

Get Prior Votes

function getPriorVotes(address account, uint blockNumber) returns (uint96)

Returns the prior number of votes for an account at a specific block number. The block number passed must be a finalized block or the function will revert.

NameType
accountaddressAddress of the account of which to retrieve the prior number of votes.
blocknumberuintThe block number at which to retrieve the prior number of votes.
unnameduint96The number of prior votes

State-Changing Functions: CTX

Delegate

function delegate(address delegatee)

Delegate votes from the sender to the delegatee. Users can delegate to 1 address at a time, and the number of votes added to the delegatee’s vote count is equivalent to the balance of CTX in the user’s account. Votes are delegated from the current block and onward, until the sender delegates again, or transfers their CTX.

NameType
delegateeaddressThe address to which msg.sender wishes to delegate their votes to.

Delegate By Signature

function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s)

Delegate votes from the sender to the delegatee. Users can delegate to 1 address at a time, and the number of votes added to the delegatee’s vote count is equivalent to the balance of CTX in the user’s account. Votes are delegated from the current block and onward, until the sender delegates again, or transfers their CTX.

NameType
delegateeaddressThe address to which msg.sender wishis to delegate their vote to
nonceuintThe contract state required to match the signature. This can be retrieved from the contract’s public nonces mapping
expiryuintThe time when the signature expires. A block timestamp in seconds since the unix epoch.
vuintThe recovery byte of the signature.
rbytes32Half of the ECDSA signature pair.
sbytes32Half of the ECDSA signature pair.

Read-Only Functions: Governor Alpha

Quorum Votes

function quorumVotes() public pure returns (uint)

Returns the minimum number of votes required for a proposal to succeed.

Proposal Threshold

function proposalThreshold() returns (uint)

Returns the minimum number of votes required for an account to create a proposal.

Proposal Max Operations

function proposalMaxOperations() returns (uint)

Returns the maximum number of actions that can be included in a proposal. Actions are functions calls that will be made when a proposal succeeds and executes.

Voting Delay

function votingDelay() returns (uint)

Returns the number of blocks to wait before voting on a proposal may begin. This value is added to the current block number when a proposal is created.

Voting Period

function votingPeriod() returns (uint)

Returns the duration of voting on a proposal, in blocks.

Get Actions

function getActions(uint proposalId) returns (uint proposalId) public view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas)

Gets the actions of a selected proposal. Pass a proposal ID and get the targets, values, signatures and calldatas of that proposal.

NameType
proposalIduintID of the proposal

Returns:

  • Array of addresses of contracts the proposal calls.
  • Array of unsigned integers the proposal uses as values.
  • Array of strings of the proposal’s signatures.
  • Array of calldata bytes of the proposal.

Get Receipt

function getReceipt(uint proposalId, address voter) returns (Receipt memory)

Returns a proposal ballot receipt of a given voter.

NameType
proposalIduintID of the proposal in which to get a voter’s ballot receipt.
voteraddressAddress of the account of a proposal voter.
ReceiptstructA Receipt struct for the ballot of the voter address.

State

function state(uint proposalId) returns (ProposalState)

Returns enum of type ProposalState, possible types are: -Pending -Active -Canceled -Defeated -Succeeded -Queued -Expired -andExecuted

NameType
proposalIduintID of the proposal

State-Changing Functions: Governor Alpha

Propose

function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) returns (uint)

Creates a Proposal to change the protocol.

Proposals will be voted on by delegated voters. If there is sufficient support before the voting period ends, the proposal shall be automatically enacted. Enacted proposals are queued and executed in the Timelock contract.

The sender must hold more CTX than the current proposal threshold (proposalThreshold()) as of the immediately previous block. The proposal can have up to 10 actions (based on proposalMaxOperations()).

The proposer cannot create another proposal if they currently have a pending or active proposal. It is not possible to queue two identical actions in the same block (due to a restriction in the Timelock), therefore actions in a single proposal must be unique, and unique proposals that share an identical action must be queued in different blocks.

NameType
targetsaddressThe ordered list of target addresses for calls to be made during proposal execution. This array must be the same length as all other array parameters in this function.
valuesuintThe ordered list of values (i.e. msg.value) to be passed to the calls made during proposal execution. This array must be the same length as all other array parameters in this function
signaturesstringThe ordered list of function signatures to be passed during execution. This array must be the same length as all other array parameters in this function.
calldatasbytesThe ordered list of data to be passed to each individual function call during proposal execution. This array must be the same length as all other array parameters in this function.
descriptionstringA human readable description of the proposal and the changes it will enact.
UnnameduintReturns ID of the new proposal

Queue

function queue(uint proposalId)

After a proposal has succeeded, any address can call the queue method to move the proposal into the Timelock queue. A proposal can only be queued if it has succeeded.

NameType
proposalIduintID of a given successful proposal

Execute

function execute(uint proposalId) payable

After the Timelock delay period, any account may invoke the execute method to apply the changes from the proposal to the target contracts. This will invoke each of the actions described in the proposal. This function is payable so the Timelock contract can invoke payable functions that were selected in the proposal.

NameType
proposalIduintID of a given successful proposal

Cancel

function queue(uint proposalId)

Cancel a proposal that has not yet been executed. The Guardian is the only one who may execute this unless the proposer does not maintain the delegates required to create a proposal. If the proposer does not have more delegates than the proposal threshold, anyone can cancel the proposal.

NameType
proposalIduintID of a proposal to cancel

Cast Vote

function castVote(uint proposalId, bool support)

Cast a vote on a proposal. The account's voting weight is determined by it's number of delegated votes at the time the proposal becomes active.

NameType
proposalIduintID of a given successful proposal
supportboolA boolean of true for 'yes' or false for 'no' on the proposal vote.

Cast Vote By Signature

function castVoteBySig(uint proposalId, bool support, uint8 v, bytes32 r, bytes32 s)

Cast a vote on a proposal. The account's voting weight is determined its number of delegated votes at the time the proposal became active. This method has the same purpose as Cast Vote, but instead enables offline signatures to participate in governance voting. For more details on how to create an offline signature, review EIP-712.

NameType
proposalIduintID of a given successful proposal
supportboolA boolean of true for 'yes' or false for 'no' on the proposal vote.
expiryuintThe time when the signature expires. A block timestamp in seconds since the unix epoch.
vuintThe recovery byte of the signature.
rbytes32Half of the ECDSA signature pair.
sbytes32Half of the ECDSA signature pair.