getTokenTransferHistory

This query loads the history of token transfers within an organization.

General Pattern

query{
	getTokenTransferHistory(orgId: "UUID1"){
  	field_1
    field_2 {
       nested_field_1
       ...
    }
  }
}

Sample Query

query{
  getTokenTransfersHistory(orgId:"a1dc174d-abf4-47d3-be3c-9281c6eba456"){
    id
    organizationId
    walletId
    wallet{
      id
      name
      address
      parentType
      parentID
      network{
        id
        name
        chainID
        rpcURL
        openSeaProxyAddress
        wethAddress
        safeMasterContractAddress
        safeFactoryAddress
        safeFallbackHandler
      }
      networkId
      deploymentTxHash
      gnosisSafeURL
      tokens{
        contractAddress
        id
        title
        tokenType
        balance
        description
        tokenURI
        timeLastUpdated
      }
    }
  }
}

Sample Response

{
  "data": {
    "getTokenTransfersHistory": []
  }
}

Argument

NameTypeDescriptionRequired
orgIDUUIDThe organization ID.Yes

Fields

NameTypeDescription
TokenTransferObjectAn object that contains the information about the TokenTransfer object, such as the organization ID, wallet information, transaction status, transaction address, etc.

Example

Load the token transfer history using the organization ID: