sei.core_evm Table: ez_native_transfers Type: Base Table
This table contains all native SEI transfers, including equivalent USD amounts. The origin addresses
correspond to the to and from addresses from the fact_transactions table. The identifier and
tx_hash columns relate this table back to fact_traces, which contains more details on the
transfers.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_NUMBER | NUMBER | Also known as block height. The block number, which indicates the length of the blockchain, increases after the addition of each new block. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block was produced. |
| TX_HASH | TEXT | Transaction hash is a unique 66-character identifier that is generated when a transaction is executed. This will not be unique in this table as a transaction could include multiple transfer events. |
| TX_POSITION | NUMBER | The position of the transaction within the block. |
| TRACE_INDEX | NUMBER | The index of the trace within the transaction. |
| TRACE_ADDRESS | TEXT | |
| TYPE | TEXT | |
| FROM_ADDRESS | TEXT | The sending address of this transfer. |
| TO_ADDRESS | TEXT | The receiving address of this transfer. This can be a contract address. |
| AMOUNT | FLOAT | sei value transferred. |
| AMOUNT_PRECISE_RAW | TEXT | The precise, unadjusted amount of the transaction. This is returned as a string to avoid precision loss. |
| AMOUNT_PRECISE | TEXT | The precise, adjusted amount of the transaction. This is returned as a string to avoid precision loss. |
| AMOUNT_USD | FLOAT | sei value transferred, in USD. |
| ORIGIN_FROM_ADDRESS | TEXT | The from address of this transaction. |
| ORIGIN_TO_ADDRESS | TEXT | The to address of this transaction. |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | The function signature of this transaction. |
| EZ_NATIVE_TRANSFERS_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was last modified. |