info
info copied to clipboard
Export data from charts and transaction lists
We should add the ability to export data as csv in both of these areas. The export should reflect the selected view. We also need to figure out how to have the user input some parameters to edit the date range.
- [ ] Design for export button / modal(?)
- [ ] Data investigation - how to query and format correctly
Still not implemented? It seems so.
Would be awesome to have this on https://info.uniswap.org/account/{ACCOUNT}
I think most important are the trades for tax reporting etc.
The CSV Columns should be kind of [ timestamp, baseSymbol, quoteSymbol, baseAmount, quoteAmount, txId, ... ]
Seems the current transaction list contains only the last 90 Days. For an export It would be for sure important to have the full transaction history of an account.
I built a 3rd party exporter to download your uniswap v2 + v3 transactions in csv.
The current list already contains the standard:
[
timestamp,
baseSymbol,
quoteSymbol,
baseAmount,
quoteAmount,
txId,
usdAmount0,
usdAmount1,
]
Not a native integration, but a solution if you need the export.
P.S. I'm working on a dex analytics solution for traders on uniswap, and figured it would be useful to expose certain functions e.g. to export transactions to anyone who needs them.