Reference
Supported Import Formats
CSV Formats
Raccoin can import CSV files exported from the following sources:
- Alby (web wallet)
- Alby Hub (web wallet)
- Binance (exchange)
- Bitcoin Core (desktop wallet)
- Bitcoin.de (exchange)
- Bitstamp (exchange)
- Bittrex (exchange) (order and transaction history for disabled accounts)
- Blink (mobile wallet)
- CryptoTaxCalculator custom CSV import format
- Electrum (desktop wallet)
- FTX (exchange)
- Kraken (exchange)
- Liquid (exchange)
- Mycelium (mobile wallet)
- Peercoin (desktop wallet)
- Phoenix (mobile wallet)
- Poloniex (exchange)
- Reddcoin (desktop wallet)
- Trezor Suite (desktop and web wallet)
- Wallet of Satoshi (mobile wallet)
- wave.space (Bitcoin crypto card)
Is your wallet or exchange missing? Feel free to open an issue describing the contents of that file and its origins. It is usually very easy to add support for additional formats!
Blockchains
Raccoin can also synchronize wallets from certain blockchains directly. Supported are:
- Bitcoin wallets (either plain addresses or x/y/zpub addresses, using https://blockstream.info/)
- Ethereum wallets (using https://etherscan.io/)
- Stellar accounts (using https://horizon.stellar.org/)
As of Raccoin 0.2, adding these wallets required manually editing the portfolio JSON file since the UI for adding them still needed to be written. Also, Stellar and Ethereum wallets can no longer be synchronized since the APIs and protocols needed an update. To use these features, please install a development snapshot of Raccoin.
JSON Format
There is currently no way to import transactions exported to JSON from the UI, but you can add them by manually adding a snippet to the portfolio JSON file, similar to above:
"sources": [ { "source_type": "Json", "path": "relative/path/to/transactions.json", "enabled": true } ]Raccoin also supports the JSON format which can be exported from Trezor Suite. In this case, set
source_typetoTrezorJson.
Supported Export Formats
To export transactions, click either the “Export (JSON)” or “Export (CSV)” button on the Transactions page. This will currently export all transactions from enabled wallets / sources, regardless of any active filter.
Export as JSON
The JSON format is a custom format used by Raccoin, which can also serve as an input format (see above).
Export as CSV
Currently when exporting transactions as CSV, they are exported in the custom CSV import format used by CryptoTaxCalculator.
Feel free to open an issue when you have the need to export to any other format!