-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* i_execution_strategy * i_proposal_validation_strategy * i_execution_strategy * i_quorum * i_quorum * i_quorum * i_voting_strategy * proposing_power.cairo * i_proposal_validation_strategy * vanilla proposing strategy * vanilla proposal strategy * choice.cairo * finalization status * indexed strategy * Proposal Status * proposing power * proposal.cairo * strategy * add todo * update settings calldata * user address * user address * update settings * merkle.cairo * utils proposition power * reinitializable * reinitializable * stark_eip712 * add link to off-chain sig SNIP * struct_hash * erc20_votes * eth_balance_of * erc20_votes * vanilla voting strategy * merkle_whitelist * eth balance of address * erc20 votes starknet address * space interface * eth_sig * eth_tx * vanilla auth * stark_sig auth * stark_tx auth * vanilla execution strategy * simple quorum * eth_relayer * emove print in vanilla auth * iethtxauthenticator update * fix eip712 spelling * comments on eth relayer * payload description * newly executed * optional trait * voting power at * the voting delay in seconds * comments for min_voting_duration * max voting duration comment * next voting strategy index comment * propose comments * vote comments * IndexedStrategy comment * proposal comments * active voting strategies comment * Strategy comment
- Loading branch information
Showing
32 changed files
with
493 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
/// Optional trait that execution strategies can decide to implement. | ||
#[starknet::interface] | ||
trait IQuorum<TContractState> { | ||
/// Returns the `quorum` value of an execution strategy. | ||
fn quorum(self: @TContractState) -> u256; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.