diff --git a/README.md b/README.md index ceeb1d1..0fcf7e4 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,8 @@ Use one of the following following referral links to signup to a new exchange to ### Donate Make a one time donation in a crypto currency of your choice. If you prefer to donate a currency not listed here please contact me. -**Btc**: 12KwZk3r2Y3JZ2uMULcjqqBvXmpDwjhhQS -**Eth**: 0x069176ca1a4b1d6e0b7901a6bc0dbf3bb0bf5cc2 -**Nano**: xrb_1ocs3hbp561ef76eoctjwg85w5ugr8wgimkj8mfhoyqbx4s1pbc74zggw7gs +**Btc**: bc1qz0jv0my7fc60rxeupr23e75x95qmlq6489n8gh +**Eth**: 0x8E21C4d955975cB645589745ac0c46ECA8FAE504 ### Sponsor Alternatively, sponsor me on Github using [Github Sponsors](https://github.com/sponsors/JKorf). diff --git a/docs/Options.md b/docs/Options.md index eb67426..eb45c7a 100644 --- a/docs/Options.md +++ b/docs/Options.md @@ -14,6 +14,8 @@ BinanceClient.SetDefaultOptions(options => { options.OutputOriginalData = true; options.ApiCredentials = new ApiCredentials("KEY", "SECRET"); + // Override the api credentials for the Spot API + options.SpotOptions.ApiCredentials = new ApiCredentials("SPOT-KEY", "SPOT-SECRET"); }); ``` @@ -25,6 +27,8 @@ var client = new BinanceClient(options => { options.OutputOriginalData = true; options.ApiCredentials = new ApiCredentials("KEY", "SECRET"); + // Override the api credentials for the Spot API + options.SpotOptions.ApiCredentials = new ApiCredentials("SPOT-KEY", "SPOT-SECRET"); }); ```