pub fn verify_transfer_approval_query<Q: Querier>(
    querier: &Q,
    token_ids: Vec<String>,
    address: HumanAddr,
    viewing_key: String,
    block_size: usize,
    callback_code_hash: String,
    contract_addr: HumanAddr
) -> 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
  • callback_code_hash - String holding the code hash of the contract being queried
  • contract_addr - address of the contract being queried