pub enum QueryMsg {
Show 20 variants
Params {},
Name {
address: String,
},
NameMarketplace {},
AssociatedAddress {
name: String,
},
ImageNFT {
name: String,
},
TextRecords {
name: String,
},
IsTwitterVerified {
name: String,
},
Verifier {},
OwnerOf {
token_id: String,
include_expired: Option<bool>,
},
Approval {
token_id: String,
spender: String,
include_expired: Option<bool>,
},
Approvals {
token_id: String,
include_expired: Option<bool>,
},
AllOperators {
owner: String,
include_expired: Option<bool>,
start_after: Option<String>,
limit: Option<u32>,
},
NumTokens {},
ContractInfo {},
NftInfo {
token_id: String,
},
AllNftInfo {
token_id: String,
include_expired: Option<bool>,
},
Tokens {
owner: String,
start_after: Option<String>,
limit: Option<u32>,
},
AllTokens {
start_after: Option<String>,
limit: Option<u32>,
},
Minter {},
CollectionInfo {},
}Variants§
Params
Returns sudo params
Name
Reverse lookup of name for address
NameMarketplace
Returns the marketplace contract address
AssociatedAddress
Returns the associated address for a name
ImageNFT
Returns the image NFT for a name
TextRecords
Returns the text records for a name
IsTwitterVerified
Returns if Twitter is verified for a name
Verifier
Returns the verification oracle address
OwnerOf
Everything below is inherited from sg721
Approval
Approvals
AllOperators
NumTokens
ContractInfo
NftInfo
AllNftInfo
Tokens
AllTokens
Minter
CollectionInfo
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 From<QueryMsg> for QueryMsg
impl From<QueryMsg> for QueryMsg
Source§fn from(msg: QueryMsg) -> Sg721QueryMsg
fn from(msg: QueryMsg) -> Sg721QueryMsg
Converts to this type from the input type.
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 moreSource§impl QueryResponses for QueryMsg
Available on non-WebAssembly only.
impl QueryResponses for QueryMsg
Available on non-WebAssembly only.
fn response_schemas_impl() -> BTreeMap<String, RootSchema>
fn response_schemas() -> Result<BTreeMap<String, RootSchema>, IntegrityError>
impl 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 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