Assets
Fungible Transfers
Fungible Token Transfers on Aptos.
The aptos.assets.fungible_transfers
table contains transfers of coin / fungible transfers.
Column Name | Description |
---|---|
from_address | The source address of the fungible token transfer |
to_address | The destination address of the fungible token transfer |
token_type | Type of token - either ‘coin’ or ‘fungible_asset’ |
coin_address | Contract address of the coin (applicable when token_type is ‘coin’) |
coin_name | Name of the coin (applicable when token_type is ‘coin’) |
coin_symbol | Symbol of the coin (applicable when token_type is ‘coin’) |
coin_decimals | Decimal precision of the coin (applicable when token_type is ‘coin’) |
fa_address | Contract address of the fungible asset (applicable when token_type is ‘fungible_asset’) |
fa_name | Name of the fungible asset (applicable when token_type is ‘fungible_asset’) |
fa_symbol | Symbol of the fungible asset (applicable when token_type is ‘fungible_asset’) |
fa_decimals | Decimal precision of the fungible asset (applicable when token_type is ‘fungible_asset’) |
token_address | Coalesced address from either coin_address or fa_address |
token_name | Coalesced name from either coin_name or fa_name |
token_symbol | Coalesced symbol from either coin_symbol or fa_symbol |
token_decimals | Coalesced decimals from either coin_decimals or fa_decimals |
match_type | Classification of how the transfer was matched/identified |
transfer_type | Type of transfer operation |
withdraw_metadata | JSON metadata for the withdrawal event |
deposit_metadata | JSON metadata for the deposit event |
raw_amount_str | Raw transfer amount as a string |
raw_amount | Raw transfer amount as a float |
amount_str | Normalized transfer amount as a string (adjusted for token decimals) |
amount | Normalized transfer amount as a float |
usd_amount | USD value of the transfer at the time of transaction |
usd_exchange_rate | USD exchange rate of the token at the time of transaction |
tx_sender | Address that sent the transaction |
tx_payload | Full payload details of the transaction |
block_hash | Hash of the block containing the transfer |
block_height | Block number/height of the transfer |
block_timestamp | Timestamp when the block was created |
transaction_hash | Hash of the transaction containing the transfer |
transaction_index | Index of the transaction within the block |
transaction_version | Version number of the transaction |
event_index | Index of the event within the transaction |
unique_id | Unique identifier for the transfer event |
created_at | Timestamp when this record was created |
updated_at | Timestamp when this record was last updated |
tx_function | Function called in the transaction (currently null in the example) |