Governance

Code

  • MessageMultiSigWallet.sol

  • MultiSigWallet.sol

Events

Confirmation

event Confirmation(address indexed sender, uint indexed transactionId);

Allows an owner to confirm a transaction.

  • address sender : Owner Address

  • uint transactionId : Transaction Identifier

Revocation

event Revocation(address indexed sender, uint indexed transactionId);

Allows an owner to revoke confirmation for a transaction.

  • address sender : Owner Address

  • uint transactionId : Transaction Identifier

Submission

Adds a new transaction to the transaction mapping if the transaction does not exist yet.

  • uint transactionId : Transaction Identifier

Execution

Transaction succeeded.

  • uint transactionId : Transaction Identifier

ExecutionFailure

Transaction failed.

  • uint transactionId : Transaction Identifier

OwnerAddition

Adds new Owner.

  • address owner : New Owner Address

OwnerRemoval

Removes Owner.

  • address owner : Owner Address

RequirementChange

Changes Multi-Sig Wallet Requirement.

  • uint required : Requirement Value

Interface

Last updated

Was this helpful?