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 contracttoken_ids- list of tokens to verify approval foraddress- address that has transfer approvalviewing_key- String holding the address’ viewing keyblock_size- pad the message to blocks of this sizecallback_code_hash- String holding the code hash of the contract being queriedcontract_addr- address of the contract being queried