pub enum QueryMsg {
Show 21 variants
Admin {},
Chain {
chain_name: String,
},
ListChains {
start_after: Option<String>,
limit: Option<u32>,
},
Asset {
symbol: String,
chain_name: String,
},
AssetByDenom {
denom: String,
},
ListAssets {
start_after: Option<(String, String)>,
limit: Option<u32>,
},
ListAssetByBase {
base: String,
start_after: Option<(String, String)>,
limit: Option<u32>,
},
ListAssetByDisplay {
display: String,
start_after: Option<(String, String)>,
limit: Option<u32>,
},
ListAssetBySymbol {
symbol: String,
start_after: Option<(String, String)>,
limit: Option<u32>,
},
ListAssetByIbcHash {
hash: String,
start_after: Option<(String, String)>,
limit: Option<u32>,
},
ListAssetByIbcPathAndBaseDenom {
path: String,
base_denom: String,
start_after: Option<(String, String)>,
limit: Option<u32>,
},
ListAssetByTotalSupply {
start_after: Option<String>,
limit: Option<u32>,
},
ListAssetByCuratedDenom {
start_after: Option<String>,
limit: Option<u32>,
},
IbcPath {
chain_1: String,
chain_2: String,
},
ListIbcPaths {
start_after: Option<(String, String)>,
limit: Option<u32>,
},
ListIbcPathDenoms {
start_after: Option<String>,
limit: Option<u32>,
},
ListTotalSupply {
start_after: Option<String>,
limit: Option<u32>,
},
ListCuratedDenoms {
start_after: Option<String>,
limit: Option<u32>,
},
CuratedDenomsLastChange {},
FuzionChainConfig {
chain_name: String,
network_type: String,
},
ListFuzionChainConfig {
start_after: Option<(String, String)>,
limit: Option<u32>,
},
}Variants§
Admin
Return AdminResponse
Chain
Retrieve a chain
ListChains
Retrieve all chains
Asset
Retrieve an asset
AssetByDenom
Retrieve an asset
ListAssets
Retrieve all assets
ListAssetByBase
Retrieve an asset by base
ListAssetByDisplay
Retrieve an asset by Display
ListAssetBySymbol
Retrieve an asset by Display
ListAssetByIbcHash
Retrieve an asset by IBC Hash
ListAssetByIbcPathAndBaseDenom
Retrieve an asset by IBC Path and Base Denom
ListAssetByTotalSupply
Retrieve an asset by Total Supply
ListAssetByCuratedDenom
Retrieve Assets by Curated Denoms
IbcPath
Retrieve an ibc path
ListIbcPaths
Retrieve all ibc paths
ListIbcPathDenoms
Retrieve all ibc paths
ListTotalSupply
Retrieve total supply
ListCuratedDenoms
Retrieve Assets by Curated Denoms
CuratedDenomsLastChange
Retrieve Last Change of Curated Denoms
FuzionChainConfig
Retrieve Fuzion Chain Config
ListFuzionChainConfig
Retrieve Chain Config List
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
impl Eq for QueryMsg
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 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(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &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 moreimpl StructuralPartialEq for QueryMsg
Auto Trait Implementations§
impl Freeze for QueryMsg
impl RefUnwindSafe for QueryMsg
impl Send for QueryMsg
impl Sync for QueryMsg
impl Unpin for QueryMsg
impl UnsafeUnpin for QueryMsg
impl UnwindSafe for QueryMsg
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