Enum abstract_core::manager::ExecuteMsg
source · pub enum ExecuteMsg {
ExecOnModule {
module_id: String,
exec_msg: Binary,
},
UpdateModuleAddresses {
to_add: Option<Vec<(String, String)>>,
to_remove: Option<Vec<String>>,
},
InstallModule {
module: ModuleInfo,
init_msg: Option<Binary>,
},
RegisterModule {
module_addr: String,
module: Module,
},
UninstallModule {
module_id: String,
},
Upgrade {
modules: Vec<(ModuleInfo, Option<Binary>)>,
},
UpdateInfo {
name: Option<String>,
description: Option<String>,
link: Option<String>,
},
SetOwner {
owner: GovernanceDetails<String>,
},
UpdateStatus {
is_suspended: Option<bool>,
},
UpdateSettings {
ibc_enabled: Option<bool>,
},
Callback(CallbackMsg),
}
Expand description
Execute messages
Variants§
ExecOnModule
Forward execution message to module
UpdateModuleAddresses
Updates the ACCOUNT_MODULES
map
Only callable by account factory or owner.
InstallModule
Install module using module factory, callable by Owner
RegisterModule
Registers a module after creation. Used as a callback only by the Module Factory to register the module on the Account.
UninstallModule
Uninstall a module given its ID.
Upgrade
Fields
§
modules: Vec<(ModuleInfo, Option<Binary>)>
Upgrade the module to a new version
If module is abstract::manager
then the contract will do a self-migration.
UpdateInfo
Update info
SetOwner
Fields
§
owner: GovernanceDetails<String>
Sets a new Owner
UpdateStatus
Update account statuses
UpdateSettings
Update settings for the Account, including IBC enabled, etc.
Callback(CallbackMsg)
Callback endpoint
Trait Implementations§
source§impl Clone for ExecuteMsg
impl Clone for ExecuteMsg
source§fn clone(&self) -> ExecuteMsg
fn clone(&self) -> ExecuteMsg
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExecuteMsg
impl Debug for ExecuteMsg
source§impl<'de> Deserialize<'de> for ExecuteMsg
impl<'de> Deserialize<'de> for ExecuteMsg
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for ExecuteMsg
impl JsonSchema for ExecuteMsg
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl PartialEq<ExecuteMsg> for ExecuteMsg
impl PartialEq<ExecuteMsg> for ExecuteMsg
source§fn eq(&self, other: &ExecuteMsg) -> bool
fn eq(&self, other: &ExecuteMsg) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.