mehtadone / CryptoGramBot

A simple telegram bot that sends your balance updates from coinigy, send trade notifications from Poloniex and Bittrex and creates you a trade export for your own spreadsheet magicary.
MIT License
105 stars 41 forks source link

Bittrex returned an error 6000 : INVALID_SIGNATURE #91

Open emotionlesstrader opened 5 years ago

emotionlesstrader commented 5 years ago

Due to Bittrex change of API .. I now get Bittrex returned an error 6000 : INVALID_SIGNATURE.

photo_2018-11-02_16-38-39 Can anyone fix this?

ghost commented 5 years ago

@emotionlesstrader +++ Facing same issue

uberzeke commented 5 years ago

Seems like it should only need an update to the new URL -- api.bittrex.com instead of www.bittrex.com.

emotionlesstrader commented 5 years ago

Are there any programmers that know how to update the program with the new URL..?

uberzeke commented 5 years ago

Dug through the code a little and actually looks like the version of Bittrex.Net is what needs to be updated, so in the file CryptoGramBot.csproj need to change from this: PackageReference Include="Bittrex.Net" Version="1.3.3" to this: PackageReference Include="Bittrex.Net" Version="2.1.20"

for reference: https://www.nuget.org/packages/Bittrex.Net/

I don't have a way to make the change and commit to github, so hopefully one of the usual dev's on this project can make the change.

mehtadone commented 5 years ago

@uberzeke unfortunately it's not that easy. Upgrading the package version breaks other parts of the code so you would need to upgrade and fix the breaking changes