pub fn owner_of_query<C: CustomQuery>(
    querier: QuerierWrapper<'_, C>,
    token_id: String,
    viewer: Option<ViewerInfo>,
    include_expired: Option<bool>,
    block_size: usize,
    code_hash: String,
    contract_addr: String
) -> StdResult<OwnerOf>
Expand description

Returns a StdResult<OwnerOf> from performing OwnerOf query

Arguments

  • querier - a reference to the Querier dependency of the querying contract
  • token_id - ID of the token whose info is being requested
  • viewer - Optional ViewerInfo holding the address and viewing key of the querier
  • include_expired - Optionally include expired Approvals in the response list. If ommitted or false, expired Approvals will be filtered out of the response
  • block_size - pad the message to blocks of this size
  • code_hash - String holding the code hash of the contract being queried
  • contract_addr - address of the contract being queried