-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Rate limit withdrawals to assetManager
Add RateLimits and Multisig governance actions
- Loading branch information
1 parent
811d521
commit 0d56698
Showing
12 changed files
with
335 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
use cosmwasm_std::Addr; | ||
use cw_common::xcall_manager_msg::ProtocolConfig; | ||
use cw_storage_plus::Item; | ||
use cw_storage_plus::{Item, Map}; | ||
|
||
pub const X_CALL: Item<String> = Item::new("xcall_address"); | ||
pub const ICON_GOVERNANCE: Item<String> = Item::new("icon_governance_network_address"); | ||
pub const PROPOSER: Item<Addr> = Item::new("admin_wallet"); | ||
pub const PROTOCOLS: Item<ProtocolConfig> = Item::new("protocols"); | ||
pub const PROPOSED_REMOVAL: Item<String> = Item::new("proposed_removal"); | ||
|
||
pub const WHITELISTED_ACTIONS: Map<Vec<u8>, bool> = Map::new("whitelisted_actions"); |
Oops, something went wrong.