ERC1155 Credit Debit
Credit and debit entries of all addresses for every ERC1155 token transfer.
ERC1155 credit debit table allows you to easily track the inflows and outflows of every ERC1155 token belonging to all addresses.
Sample Query
Getting the ERC1155 Credit Debit history of an address.
Table Columns
Column Name | Description | Example |
---|---|---|
event_type | Transfer event type specific to ERC1155 tokens. Either |
|
address | Address of the account that was credited or debited |
|
counterparty_address | The address of counter party of this credit or debit transfer. |
|
token_address | Token address of the ERC1155 token. |
|
token_name | Name of the ERC1155 token. |
|
token_symbol | Token symbol of this token. |
|
token_id | Unique ID of the ERC1155 token. |
|
amount_raw | Balance of tokens (unnormalized). For ERC1155 tokens, there are no decimals division involved. |
|
amount_raw_str | Balance of tokens (unnormalized) in string. |
|
amount | Amount of tokens moved. |
|
amount_str | Amount of tokens moved in string. |
|
usd_value | The amount of tokens moved, in $USD. | |
usd_exchange_rate | This is the price of a single token, in $USD. Refer to Hourly Token Prices for more information. | |
operator | The operator is defined as the addresses authorized (or approved) by a NFT owner to spend all of his token Ids. |
|
transaction_hash | Transaction hash that this transfer belongs to. |
|
log_index | The log index that corresponds to this transfer. |
|
block_timestamp | The timestamp of the block that the corresponding transaction of this transfer belongs to. This is also the timestamp when this transfer occurred. |
|
block_number | The block number that the corresponding transaction of this transfer belongs to. |
|
block_hash | The block hash that the corresponding transaction of this transfer belongs to. |
|
unique_id | Unique id generated to each transfer. Includes transaction hash, log index and credit and debit transaction type. |
|
Last updated