https://github.com/crystoll/export-erg-transactions
Little ERG explorer tool to export crypto transactions to csv file for tax calculations
https://github.com/crystoll/export-erg-transactions
Last synced: about 2 months ago
JSON representation
Little ERG explorer tool to export crypto transactions to csv file for tax calculations
- Host: GitHub
- URL: https://github.com/crystoll/export-erg-transactions
- Owner: crystoll
- Created: 2022-04-05T12:45:20.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-02T13:47:24.000Z (over 1 year ago)
- Last Synced: 2023-11-02T14:40:36.612Z (over 1 year ago)
- Language: Python
- Size: 18.6 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ergo - Export Ergo Transactions - Script to export transaction history. [`Python`] *(Community Tool)* (💼 Wallets <a id="wallets"></a> / 🛟 Wallet Utilities & Recovery <a id="utilities--recovery"></a>)
README
# ERG Transactions Exporter
Free yourself from the tyranny and limitations of ERG wallets!
This little tool will fetch your ERG address details from explorer API, and export them to Koinly CSV format.
Can be easily modified for any other format as well.## How to use?
1) Copy sample_dotenv by name .env
2) Edit it and set nice environment variable names, and comma-separated list of your wallet addresses. For best results, include all addresses your wallet is using (otherwise it cannot track internal transfers correctly). Currently the code uses two env variables, adjust .env file to add any number of wallets.
3) Run the tool:
python3 export_all.py
4) Observe transaction .csv files getting created## Prerequisites
Python 3
The `requirements.txt` file lists all Python libraries the script depends on. They can be installed using:```
pip install -r requirements.txt
```