Hord Congress
Represents multi-sig wallet for HORD app.
Last updated
Was this helpful?
Represents multi-sig wallet for HORD app.
Last updated
Was this helpful?
HordCongress.sol
HordCongress
is deployed at on the Ethereum mainnet.
Standard implementation of the wallet. This contract contains the initial total supply of HORD
tokens.
Emitted each time when a new proposal is created.
Emitted each time when a vote has been cast on a proposal.
Emitted each time when a proposal has been canceled.
Emitted each time when a proposal has been executed.
Emitted each time when ether is received.
Emitted each time when transaction is executed.
Returns the name of the contract. [HordCongress
]
Returns the total number of proposals.
Returns official record of all proposals ever proposed.
Returns all actions from exact proposal.
Returns the address of HordCongressMembersRegistry
contract.
One time call function to set address of HordCongressMembersRegistry
contract.
Only a member of HordCongress
can call this function in order to create a proposal for which members will vote and based on the votes the proposal will be executed or rejected.
Returns id of new proposal.
Emits a ProposalCreated
event.
Only a member of HordCongress
can call this function in order to vote on a specific proposal.
Emits a VoteCast
event.
Only a member of HordCongress
can call this function in order to execute a specific proposal which reached the minimal quorum (50% or more of the votes are in favor).
Emits a ExecuteTransaction
and ProposalExecuted
events.
Only a member of HordCongress
can call this function in order to cancel a specific proposal which didn`t reach the minimal quorum (less than 50% of votes are in favor).
Emits a ProposalCanceled
event .