ETH Credit Debit
Credit and debit entries of all addresses for all ether transfers.
The ETH credit debit table allows you to easily track the inflows and outflows of ether belonging to all addresses.
ETH can be transferred across wallets in different ways:
Direct transfers like in this transaction
Indirect transfers through a router, like the routing of ETH from Tornado.Cash pool in this transaction
How is ethereum.assets.credit_debit
different from ethereum.raw.transactions
?
ethereum.assets.credit_debit
different from ethereum.raw.transactions
?While
transactions
table includes thevalue
of ETH in direct transfers, ETH transferred via the smart contract router will not be reflected in thevalue
field
In contrast,
credit_debit
table will show all ETH transferred.value_transfer
from the Tornado.Cash pool to the recipientgas_payment_to_miner
from the transaction initiator to the miners and;gas_burn
from the transaction
Table Columns
Using the ETH transfer from Tornado.Cash as an example.
Column Name | Description | Example |
---|---|---|
address | Address of the account that was credited or debited value amount of ETH |
|
counterparty_address | The address of counter party of this credit or debit transfer. |
|
raw_amount |
| |
raw_amount_str | Amount of ETH in wei in string. |
|
amount | Amount of ether. |
|
amount_str | Amount of ether in string. |
|
usd_amount | The amount of ether moved, in $USD. |
|
usd_exchange_rate | The exchange rate used to calculate the usd_value. |
|
transfer_type | Type of transfers. Includes |
|
transaction_hash | Transaction hash that this transfer belongs to. |
|
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 trace call, transaction_hash, credit and debit transaction type. |
|
Last updated