abstract_std/account.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
//! # Account Account
//!
//! `abstract_std::account` implements the contract interface and state lay-out.
//!
//! ## Description
//!
//! The Account is part of the Core Abstract Account contracts along with the `abstract_std::account` contract.
//! This contract is responsible for:
//! - Managing modules instantiation and migrations.
//! - Managing permissions.
//! - Upgrading the Account and its modules.
//! - Providing module name to address resolution.
//!
//! **The account should be set as the contract/CosmWasm admin by default on your modules.**
//! ## Migration
//! Migrating this contract is done by calling `ExecuteMsg::Upgrade` with `abstract::account` as module.
//!
use cosmwasm_schema::QueryResponses;
use cosmwasm_std::{Binary, Coin, CosmosMsg, Empty};
use crate::objects::{
gov_type::{GovAction, GovernanceDetails, TopLevelOwnerResponse},
module::ModuleInfo,
ownership::Ownership,
AccountId,
};
use cosmwasm_std::Addr;
use cw2::ContractVersion;
use state::{AccountInfo, SuspensionStatus};
pub mod state {
use std::collections::HashSet;
use cosmwasm_std::Addr;
use cw_storage_plus::{Item, Map};
use crate::objects::{module::ModuleId, storage_namespaces, AccountId};
pub type SuspensionStatus = bool;
/// Abstract Account details.
#[cosmwasm_schema::cw_serde]
#[derive(Default)]
pub struct AccountInfo {
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub link: Option<String>,
}
impl AccountInfo {
pub fn has_info(&self) -> bool {
self.name.is_some() || self.description.is_some() || self.link.is_some()
}
}
#[cosmwasm_schema::cw_serde]
pub struct WhitelistedModules(pub Vec<Addr>);
pub const WHITELISTED_MODULES: Item<WhitelistedModules> =
Item::new(storage_namespaces::account::WHITELISTED_MODULES);
/// Suspension status
pub const SUSPENSION_STATUS: Item<SuspensionStatus> =
Item::new(storage_namespaces::account::SUSPENSION_STATUS);
/// Info about the Account
pub const INFO: Item<AccountInfo> = Item::new(storage_namespaces::account::INFO);
/// Enabled Abstract modules
pub const ACCOUNT_MODULES: Map<ModuleId, Addr> =
Map::new(storage_namespaces::account::ACCOUNT_MODULES);
/// Stores the dependency relationship between modules
/// map module -> modules that depend on module.
pub const DEPENDENTS: Map<ModuleId, HashSet<String>> =
Map::new(storage_namespaces::account::DEPENDENTS);
/// List of sub-accounts
pub const SUB_ACCOUNTS: Map<u32, cosmwasm_std::Empty> =
Map::new(storage_namespaces::account::SUB_ACCOUNTS);
/// Account Id storage key
pub const ACCOUNT_ID: Item<AccountId> = Item::new(storage_namespaces::account::ACCOUNT_ID);
/// Temporary state variable that allows for checking access control on admin operation
pub const CALLING_TO_AS_ADMIN: Item<Addr> =
Item::new(storage_namespaces::account::CALLING_TO_AS_ADMIN);
pub const CALLING_TO_AS_ADMIN_WILD_CARD: &str = "calling-to-wild-card";
#[cfg(feature = "xion")]
/// XION temporary state. This is used to make sure that the account only has admin rights when authenticated through XION
/// If a call originates from the top level owner account address, there are 2 cases within xion:
/// - It's a call made from the account directly.
/// In that case, the tx just got through BeforeTx and the admin_auth flag is set during that hook.
/// --> [`AUTH_ADMIN`] should be true
/// - It's a call made from the account through another module.
/// In that case, it means that the execute function on the account was executed successfully
/// --> [`AUTH_ADMIN`] flag is not set anymore, because it's removed at the end of each execution
///
/// If a module wants to have admin rights, they need to call through the account, but as soon as the account finishes execution, the Auth_Admin flag is set to false, so there is no chance to do admin actions there
///
/// This flag can only be set in the beforeTx hook and is always removed in the AfterTx hook
pub const AUTH_ADMIN: Item<bool> = Item::new(storage_namespaces::account::AUTH_ADMIN);
// Additional states, not listed here: cw_gov_ownable::GovOwnership, authenticators, if chain supports it
}
#[cosmwasm_schema::cw_serde]
pub struct MigrateMsg {}
/// Account Instantiate Msg
/// https://github.com/burnt-labs/contracts/blob/main/contracts/account/src/msg.rs
#[cosmwasm_schema::cw_serde]
// ANCHOR: init_msg
pub struct InstantiateMsg<Authenticator = Empty> {
/// Code id of the account
pub code_id: u64,
/// The ownership structure of the Account.
pub owner: GovernanceDetails<String>,
/// Optionally specify an account-id for this account.
/// If provided must be between (u32::MAX/2)..u32::MAX range.
pub account_id: Option<AccountId>,
/// Optional authenticator for use with the `abstractaccount` cosmos-sdk module.
pub authenticator: Option<Authenticator>,
/// Optionally claim a namespace on instantiation.
/// Any fees will be deducted from the account and should be provided on instantiation.
pub namespace: Option<String>,
/// Optionally install modules on instantiation.
/// Any fees will be deducted from the account and should be provided on instantiation.
#[serde(default)]
pub install_modules: Vec<ModuleInstallConfig>,
/// Optional account name.
pub name: Option<String>,
/// Optional account description.
pub description: Option<String>,
/// Optional account link.
pub link: Option<String>,
}
// ANCHOR_END: init_msg
/// Callback message to set the dependencies after module upgrades.
#[cosmwasm_schema::cw_serde]
pub struct CallbackMsg {}
#[cosmwasm_schema::cw_serde]
#[derive(cw_orch::ExecuteFns)]
pub enum ExecuteMsg<Authenticator = Empty> {
/// Executes the provided messages if sender is whitelisted
#[cw_orch(fn_name("execute_msgs"), payable)]
Execute {
msgs: Vec<CosmosMsg<Empty>>,
},
/// Execute a message and forward the Response data
#[cw_orch(payable)]
ExecuteWithData {
msg: CosmosMsg<Empty>,
},
/// Forward execution message to module
#[cw_orch(payable)]
ExecuteOnModule {
module_id: String,
exec_msg: Binary,
/// Funds attached from account to the module
funds: Vec<Coin>,
},
/// Execute a Wasm Message with Account Admin privileges
#[cw_orch(payable)]
AdminExecute {
addr: String,
msg: Binary,
},
/// Forward execution message to module with Account Admin privileges
#[cw_orch(payable)]
AdminExecuteOnModule {
module_id: String,
msg: Binary,
},
/// Queries the Abstract Ica Client with the provided action query.
/// Provides access to different ICA implementations for different ecosystems.
IcaAction {
/// Query of type `abstract-ica-client::msg::QueryMsg`
action_query_msg: Binary,
},
/// Update Abstract-specific configuration of the module.
/// Only callable by the owner.
UpdateInternalConfig(InternalConfigAction),
/// Install module using module factory, callable by Owner
#[cw_orch(payable)]
InstallModules {
// Module information and Instantiate message to instantiate the contract
modules: Vec<ModuleInstallConfig>,
},
/// Uninstall a module given its ID.
UninstallModule {
module_id: String,
},
/// Upgrade the module to a new version
/// If module is `abstract::account` then the contract will do a self-migration.
/// Self-migration is protected and only possible to the [`crate::objects::module_reference::ModuleReference::Account`] registered in Registry
Upgrade {
modules: Vec<(ModuleInfo, Option<Binary>)>,
},
/// Creates a sub-account on the account
#[cw_orch(payable)]
CreateSubAccount {
// Name of the sub-account
name: Option<String>,
// Description of the account
description: Option<String>,
// URL linked to the account
link: Option<String>,
// optionally specify a namespace for the sub-account
namespace: Option<String>,
// Provide list of module to install after sub-account creation
install_modules: Vec<ModuleInstallConfig>,
/// If `None`, will create a new local account without asserting account-id.
///
/// When provided sequence in 0..2147483648 range: The tx will error
/// When provided sequence in 2147483648..u32::MAX range: Signals use of unclaimed Account Id in this range. The tx will error if this account-id already claimed. Useful for instantiate2 address prediction.
account_id: Option<u32>,
},
/// Update info
UpdateInfo {
name: Option<String>,
description: Option<String>,
link: Option<String>,
},
/// Update account statuses
UpdateStatus {
is_suspended: Option<bool>,
},
/// Actions called by internal or external sub-accounts
UpdateSubAccount(UpdateSubAccountAction),
/// Update the contract's ownership. The `action`
/// can propose transferring ownership to an account,
/// accept a pending ownership transfer, or renounce the ownership
/// of the account permanently.
UpdateOwnership(GovAction),
AddAuthMethod {
add_authenticator: Authenticator,
},
RemoveAuthMethod {
id: u8,
},
}
#[cosmwasm_schema::cw_serde]
#[derive(QueryResponses, cw_orch::QueryFns)]
pub enum QueryMsg {
/// Contains the enabled modules
/// Returns [`ConfigResponse`]
#[returns(ConfigResponse)]
Config {},
/// Query the versions of modules installed on the account given their `ids`.
/// Returns [`ModuleVersionsResponse`]
#[returns(ModuleVersionsResponse)]
ModuleVersions { ids: Vec<String> },
/// Query the addresses of modules installed on the account given their `ids`.
/// Returns [`ModuleAddressesResponse`]
#[returns(ModuleAddressesResponse)]
ModuleAddresses { ids: Vec<String> },
/// Query information of all modules installed on the account.
/// Returns [`ModuleInfosResponse`]
#[returns(ModuleInfosResponse)]
ModuleInfos {
start_after: Option<String>,
limit: Option<u8>,
},
/// Query the Account info.
/// Returns [`InfoResponse`]
#[returns(InfoResponse)]
Info {},
/// Returns [`SubAccountIdsResponse`]
#[returns(SubAccountIdsResponse)]
SubAccountIds {
start_after: Option<u32>,
limit: Option<u8>,
},
/// Returns [`TopLevelOwnerResponse`]
#[returns(TopLevelOwnerResponse)]
TopLevelOwner {},
/// Query the contract's ownership information
#[returns(Ownership<String>)]
Ownership {},
/// Query the pubkey associated with this account.
#[returns(Binary)]
AuthenticatorByID { id: u8 },
/// Query the pubkey associated with this account.
#[returns(Binary)]
AuthenticatorIDs {},
}
/// Module info and init message
#[non_exhaustive]
#[cosmwasm_schema::cw_serde]
pub struct ModuleInstallConfig {
pub module: ModuleInfo,
pub init_msg: Option<Binary>,
}
impl ModuleInstallConfig {
pub fn new(module: ModuleInfo, init_msg: Option<Binary>) -> Self {
Self { module, init_msg }
}
}
/// Internal configuration actions accessible from the [`ExecuteMsg::UpdateInternalConfig`] message.
#[cosmwasm_schema::cw_serde]
#[non_exhaustive]
pub enum InternalConfigAction {
/// Updates the [`state::ACCOUNT_MODULES`] map
/// Only callable by owner.
UpdateModuleAddresses {
to_add: Vec<(String, String)>,
to_remove: Vec<String>,
},
/// Update the execution whitelist in [`state::WHITELISTED_MODULES`]
/// Only callable by owner.
UpdateWhitelist {
/// Addresses to add to the Account's execution whitelist
to_add: Vec<String>,
/// Addresses to remove from the Account's execution whitelist
to_remove: Vec<String>,
},
}
#[cosmwasm_schema::cw_serde]
#[non_exhaustive]
pub enum UpdateSubAccountAction {
/// Unregister sub-account
/// It will unregister sub-account from the state
/// Could be called only by the sub-account itself
UnregisterSubAccount { id: u32 },
/// Register sub-account
/// It will register new sub-account into the state
/// Could be called by the sub-account
RegisterSubAccount { id: u32 },
}
#[cosmwasm_schema::cw_serde]
pub struct ModuleVersionsResponse {
pub versions: Vec<ContractVersion>,
}
#[cosmwasm_schema::cw_serde]
pub struct ModuleAddressesResponse {
pub modules: Vec<(String, Addr)>,
}
#[cosmwasm_schema::cw_serde]
pub struct InfoResponse {
pub info: AccountInfo,
}
#[cosmwasm_schema::cw_serde]
pub struct AccountModuleInfo {
pub id: String,
pub version: ContractVersion,
pub address: Addr,
}
#[cosmwasm_schema::cw_serde]
pub struct ModuleInfosResponse {
pub module_infos: Vec<AccountModuleInfo>,
}
#[cosmwasm_schema::cw_serde]
pub struct SubAccountIdsResponse {
pub sub_accounts: Vec<u32>,
}
#[cosmwasm_schema::cw_serde]
pub struct ConfigResponse {
pub whitelisted_addresses: Vec<Addr>,
pub account_id: AccountId,
pub is_suspended: SuspensionStatus,
pub registry_address: Addr,
pub module_factory_address: Addr,
}
#[cfg(test)]
mod test {
use cw_orch::core::serde_json::json;
use super::*;
#[coverage_helper::test]
fn minimal_deser_instantiate_test() {
let init_msg_binary: InstantiateMsg =
cosmwasm_std::from_json(br#"{"code_id": 1, "owner": {"renounced": {}}}"#).unwrap();
assert_eq!(
init_msg_binary,
InstantiateMsg {
code_id: 1,
owner: GovernanceDetails::Renounced {},
authenticator: Default::default(),
account_id: Default::default(),
namespace: Default::default(),
install_modules: Default::default(),
name: Default::default(),
description: Default::default(),
link: Default::default()
}
);
let init_msg_string: InstantiateMsg = cosmwasm_std::from_json(
json!({
"code_id": 1,
"owner": GovernanceDetails::Monarchy {
monarch: "bob".to_owned()
}
})
.to_string(),
)
.unwrap();
assert_eq!(
init_msg_string,
InstantiateMsg {
code_id: 1,
owner: GovernanceDetails::Monarchy {
monarch: "bob".to_owned()
},
authenticator: Default::default(),
account_id: Default::default(),
namespace: Default::default(),
install_modules: Default::default(),
name: Default::default(),
description: Default::default(),
link: Default::default()
}
)
}
}