pub fn verify_transfer_approval_query<C: CustomQuery>(
    querier: QuerierWrapper<'_, C>,
    token_ids: Vec<String>,
    address: String,
    viewing_key: String,
    block_size: usize,
    code_hash: String,
    contract_addr: String
) -> StdResult<VerifyTransferApproval>
Expand description

Returns a StdResult<VerifyTransferApproval> from performing VerifyTransferApproval query

Arguments

  • querier - a reference to the Querier dependency of the querying contract
  • token_ids - list of tokens to verify approval for
  • address - address that has transfer approval
  • viewing_key - String holding the address’ viewing key
  • 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