pub enum FactoryExecuteMsg {
RegisterVaultInMaster {
instantiate_vault_msg: Box<InstantiateVaultMsg>,
vault_code_id: u64,
vault_label: String,
},
UpdateConfig {
owner: Option<String>,
launchpad_code_id: Option<u64>,
vesting_code_id: Option<u64>,
launch_fee: Option<Coin>,
master_address: Option<String>,
mito_treasury_address: Option<String>,
mito_treasury_fee_basis_points: Option<u16>,
default_staked_to_subscription: Option<BTreeMap<Uint128, Uint128>>,
launchpads_quote_denom: Option<String>,
quote_decimals: Option<u8>,
},
DeployLaunchpad {
project_owner: String,
project_token_denom: String,
hard_cap: Option<Uint128>,
use_whitelist: bool,
target_usd_subscription_incl_vault: FPDecimal,
quote_price_set_once_before_start_in_seconds: u64,
quote_pyth_pricefeed_id: String,
oracle_stale_time: u64,
vesting_config: Option<FactoryVestingConfig>,
amm_launch_config: Option<AmmLaunchConfig>,
staked_to_subscription_override: Option<BTreeMap<Uint128, Uint128>>,
},
}Variants§
RegisterVaultInMaster
UpdateConfig
Fields
DeployLaunchpad
Trait Implementations§
source§impl Clone for FactoryExecuteMsg
impl Clone for FactoryExecuteMsg
source§fn clone(&self) -> FactoryExecuteMsg
fn clone(&self) -> FactoryExecuteMsg
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 FactoryExecuteMsg
impl Debug for FactoryExecuteMsg
source§impl<'de> Deserialize<'de> for FactoryExecuteMsg
impl<'de> Deserialize<'de> for FactoryExecuteMsg
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 FactoryExecuteMsg
impl JsonSchema for FactoryExecuteMsg
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. 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 for FactoryExecuteMsg
impl PartialEq for FactoryExecuteMsg
source§fn eq(&self, other: &FactoryExecuteMsg) -> bool
fn eq(&self, other: &FactoryExecuteMsg) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for FactoryExecuteMsg
impl Serialize for FactoryExecuteMsg
impl Eq for FactoryExecuteMsg
impl StructuralPartialEq for FactoryExecuteMsg
Auto Trait Implementations§
impl Freeze for FactoryExecuteMsg
impl RefUnwindSafe for FactoryExecuteMsg
impl Send for FactoryExecuteMsg
impl Sync for FactoryExecuteMsg
impl Unpin for FactoryExecuteMsg
impl UnwindSafe for FactoryExecuteMsg
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)