For a given wallet (EOA), this endpoint returns all events associated with the EOA's liquidity events across pools (mint, burn and swap).
Events can be filtered by pair and time, and are ordered in time ascending order.
Protocols SupportedThis endpoint only supports Uniswap v2.
Blockchains SupportedThis endpoint only supports data from
ethereum-mainnet
.
Not specifying startDate and endDateIf the startDate and endDate query parameters are not provided, the API will return the data from the previous 24 hours.
Time Range LimitThe maximum time range (difference between endDate and startDate) is 60 days.
200 - OK and empty payload when startDate and endDate are not specifiedThere were no events for the given address in the past 24 hours.
Response Data
Field | Type | Description |
---|---|---|
payload[index].timestamp |
| The timestamp of the liquidity event. |
payload[index].blockNumber |
| The block number of the liquidity event. |
payload[index].transactionHash |
| The transaction hash. |
payload[index].liquidityProviderAddress |
| The address of the liquidity provider that the event is associated with. |
payload[index].event |
| The liquidity event type ( |
payload[index].poolAddress |
| The address of the pair or liquidity pool, i.e. the address of the lp token. |
payload[index].poolName |
| Name of the pair or liquidity pool.
|
payload[index].poolTokenBalance |
| The number of lp tokens the provider holds in this pool. |
payload[index].poolTokenDelta |
| The delta/change of lp tokens as a result of this event. |
payload[index].token0Address |
| The address of
|
payload[index].token0Name |
| The name of
|
payload[index].token0Balance |
| The balance of
|
payload[index].token0Delta |
| The delta/change of
|
payload[index].token1Address |
| The address of
|
payload[index].token1Name |
| The name of
|
payload[index].token1Balance |
| The balance of
|
payload[index].token1Delta |
| The delta/change of
|
payload[index].priceNative |
| Ratio between tokens in pool. |