Enum abstract_core::proxy::QueryMsg
source · pub enum QueryMsg {
Config {},
TotalValue {},
TokenValue {
identifier: AssetEntry,
},
HoldingAmount {
identifier: AssetEntry,
},
AssetConfig {
identifier: AssetEntry,
},
AssetsConfig {
start_after: Option<AssetEntry>,
limit: Option<u8>,
},
AssetsInfo {
start_after: Option<AssetInfo>,
limit: Option<u8>,
},
BaseAsset {},
}
Variants§
Config
Fields
Contains the enabled modules
Returns ConfigResponse
TotalValue
Fields
Returns the total value of the assets held by this account
AccountValue
TokenValue
Fields
§
identifier: AssetEntry
Returns the value of one token with an optional amount set.
If amount is not set, the account’s balance of the token is used.
TokenValueResponse
HoldingAmount
Fields
§
identifier: AssetEntry
Returns the amount of specified tokens this contract holds
HoldingAmountResponse
AssetConfig
Fields
§
identifier: AssetEntry
Returns the oracle configuration value for the specified key
AssetConfigResponse
AssetsConfig
Returns AssetsConfigResponse
Human readable
AssetsInfo
Returns AssetsInfoResponse
Not human readable
BaseAsset
Fields
Returns BaseAssetResponse
Trait Implementations§
source§impl<'de> Deserialize<'de> for QueryMsg
impl<'de> Deserialize<'de> for QueryMsg
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 QueryMsg
impl JsonSchema for QueryMsg
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 more