Transfer
A Transfer is created when Parcel registers a sale. A Transfer represents the on-chain exchange action between the two wallets involved in the transaction. One Transfer is created per asset exchanged per transaction.
type Transfer {
id: Int!
to_address_id: Int!
to_wallet: Wallet!
from_address_id: Int!
from_wallet: Wallet!
asset_id: Int!
asset: Asset!
transferred_at: Date!
txn_hash: String!
log_index: Int
}
Fields
Transfer.asset
Asset!
Transfer.asset
Asset!The Asset object of the asset exchanged in the transfer.
Transfer.asset_id
Int!
Transfer.asset_id
Int!The asset identifier of the asset exchanged in the transfer.
Transfer.from_wallet
Wallet!
Transfer.from_wallet
Wallet!The Wallet object of the wallet sending the assets in the transfer.
Transfer.from_address_id
Int!
Transfer.from_address_id
Int!The wallet identifier of the wallet sending the assets in the transfer.
Transfer.id
Int!
Transfer.id
Int!A unique indentifier.
Transfer.log_index
Int
Transfer.log_index
IntThe on-chain transaction's log index from which the transfer was created.
Transfer.to_wallet
Wallet!
Transfer.to_wallet
Wallet!The Wallet object of the wallet receiving the assets in the transfer.
Transfer.to_address_id
Int!
Transfer.to_address_id
Int!The wallet identifier of the wallet receiving the assets in the transfer.
Transfer.transferred_at
Date!
Transfer.transferred_at
Date!The date at which the transferred occurred.
Transfer.txn_hash
String!
Transfer.txn_hash
String!The on-chain transaction hash from which the transfer was created.