-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add arbitrary proposal to add options
- Loading branch information
1 parent
8dce4d7
commit d82b3cb
Showing
2 changed files
with
50 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
use starknet::contract_address::{ContractAddress}; | ||
|
||
#[starknet::interface] | ||
trait IArbitraryProposalAddOptions<TContractState> { | ||
fn execute_arbitrary_proposal(ref self: TContractState); | ||
} | ||
|
||
#[starknet::contract] | ||
pub mod ArbitraryProposalAddOptions { | ||
use amm_governance::proposals::proposals as proposals_component; | ||
use amm_governance::proposals::proposals::InternalTrait; | ||
use konoha::types::{CustomProposalConfig}; | ||
use konoha::contract::IGovernanceDispatcher; | ||
use konoha::contract::IGovernanceDispatcherTrait; | ||
use starknet::{ContractAddress, ClassHash, get_contract_address}; | ||
|
||
component!(path: proposals_component, storage: proposals, event: ProposalsEvent); | ||
|
||
#[storage] | ||
struct Storage { | ||
#[substorage(v0)] | ||
proposals: proposals_component::Storage, | ||
} | ||
|
||
#[derive(starknet::Event, Drop)] | ||
#[event] | ||
enum Event { | ||
ProposalsEvent: proposals_component::Event, | ||
} | ||
|
||
#[constructor] | ||
fn constructor(ref self: ContractState) {} | ||
|
||
#[abi(embed_v0)] | ||
impl ArbitraryProposalAddOptions of super::IArbitraryProposalAddOptions<ContractState> { | ||
fn execute_arbitrary_proposal(ref self: ContractState) { | ||
let option_deployer_class_hash: felt252 = | ||
0x004e19b87b7777e6e7032ca325794cd793a4d6e9591a8c4e60e0d1b27e4da3d7; | ||
|
||
let add_options = CustomProposalConfig { | ||
target: option_deployer_class_hash, | ||
selector: selector!("add_options"), | ||
library_call: true | ||
}; | ||
|
||
self.proposals.add_custom_proposal_config(add_options); | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ mod traits; | |
mod types; | ||
mod upgrades; | ||
pub mod vecarm; | ||
mod arbitrary_proposal_add_options; |