Supported Import Formats

CSV Formats

Raccoin can import CSV files exported from the following sources:

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:

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_type to TrezorJson.

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!