Field | Type | Description |
---|---|---|
block_number | integer | The block number of the transaction of the swap. |
timestamp | integer | UNIX timestamp in seconds. The zero value corresponds to the 1st of January 1970 at UTC, called the Unix Epoch. |
transaction_hash | string | The transaction hash of the transaction of the swap. |
trader_address | string | The "from" address of the transaction of the swap. |
interacted_with_address | string | The "to" address of the transaction of the swap, usually the router address of the DEX used. |
token_address | string | The address of the base token of the swap. |
token_symbol | string | The symbol of the base token in the swap. |
token_name | string | The name of the base token in the swap. |
quote_address | string | The address of the quote token in the swap. |
pool_address | string | The address of the pool in which the swap happened. |
protocol_name | string | The name of the DEX protocol (e.g. Uniswap) used for the swap. |
price_token_usd_tick_1 | double | The dollar price at which the base token was traded. |
price_token_usd_robust_tick_1 | double | Equals to null if price is an outlier. If not an outlier it equals to price_token_usd_tick_1 . |
side | string | Whether the base token was bought or sold. If the base token leaves the pool after a swap we consider that a buy , otherwise it's a sell . |
amount_token | double | The amount of the base token that was swapped. |
amount_quote | double | The amount of the quote token that was swapped. |
amount_usd | double | The value in dollars that was swapped. |
gas_used | integer | The amount of gas used to process the transaction of the swap. |
gas_price_eth | double | The cost per unit of gas used when processing the transaction of the swap. |
gas_price_usd | double | The dollar value of gas_price_eth . |
transaction_fee_eth | double | The amount of Ether paid to process the transaction of the swap; equal to gas_price_eth multiplied by gas_used . |
transaction_fee_usd | double | The dollar value of transaction_fee_eth . |