input-output-hk / daedalus

The open source cryptocurrency wallet for ada, built to grow with the community
https://daedaluswallet.io/
Apache License 2.0
1.23k stars 295 forks source link

Register export format with cointracking.info #643

Open davelab6 opened 6 years ago

davelab6 commented 6 years ago

Related to #642 I'd like to suggest that IOHK register the Daedalus wallet export format with www.cointracking.info which does tax analysis for cryptocurrencies.

kylebehse commented 4 years ago

Oh, Can I second that! Thanks!!

thedanheller commented 3 years ago

@davelab6 @kylebehse thank you for the suggestion. We have requested Cointracking to include Daedalus in their import list:

Cointracking

nikolaglumac commented 3 years ago

Thanks @daniloprates - please keep this GH issue updated in case you get an answer from Cointracking 🙏

LukeL99 commented 3 years ago

In case anyone else needs this functionality until it's fixed by Cointracking, here's a script I wrote to convert from Daedalus CSV to Cointracking CSV. Let me know if you find any issues with it.

https://colab.research.google.com/gist/LukeL99/6d918fa0a51bf0e42280e79191f5ce39/daedalus-cointracking.ipynb

thedanheller commented 3 years ago

Thank you, @LukeL99

LukeL99 commented 3 years ago

No problem!

davelab6 commented 3 years ago

@LukeL99 THANK YOU

This imported correctly for me, I didn't double check it worked as expected within cointracking. I ran it unmodified in Google CoLab and wondered how to download the CSV file from there; I appended these 2 lines to the end and got a link to download, apparently this requires Chrome/Chromium.

from google.colab import files
files.download('output.csv')
LukeL99 commented 2 years ago

@davelab6 - I realize this is an old comment, but I'm just seeing it. Your solution works, but the file is also accessible from the files tab on the left side of the screen after you run the script. Glad this helped!

image

I'm getting some reports of some float conversion errors on Reddit where I also posted this, I'm looking for a file that fails that I can troubleshoot with. If anyone has one that they can share, let me know and I'll try to get it sorted out.

LukeL99 commented 2 years ago

I got a file that was having float conversion errors so it should be fixed and tested in the notebook if anyone was having those issues before.

x-limitless-x commented 2 years ago

I wrote this Powershell Script to do the parsing of the csv file: https://gist.github.com/x-limitless-x/e885d030c4215e88761a55983fb3d707#file-convert-csv-cointracking-info-ps1

Let me know if this works for you, or if it needs modification.