You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to a confusion on the proper code for the RaiBlocks token, we have switched from using the old XRB symbol to using the newer NANO symbol across the entire library. This was XRB in CCXT 1.14, now it's NANO in CCXT 1.15+.
Please, note that starting from CCXT 1.15 all pairs are switched to the new unified code NANO:
This is a backward-incompatible change and it might affect many users. Please, make sure to update your code accordingly.
If you still wish to keep the old behaviour for the exchange in question, you can add your own commonCurrencies substitution map like so:
// pseudocode to revert to old behaviour with CCXT 1.15+
exchange = new ccxt.exchange ({
// use the old XRB code
'commonCurrencies': {
'XRB': 'XRB',
'NANO': 'XRB',
}
})
Thx for using this library!
The text was updated successfully, but these errors were encountered:
Hi!
Due to a confusion on the proper code for the RaiBlocks token, we have switched from using the old
XRB
symbol to using the newerNANO
symbol across the entire library. This wasXRB
in CCXT 1.14, now it'sNANO
in CCXT 1.15+.Please, note that starting from CCXT 1.15 all pairs are switched to the new unified code
NANO
:XRB/BTC
is nowNANO/BTC
XRB/ETH
is nowNANO/ETH
Related links:
The Manual has been updated accordingly.
This is a backward-incompatible change and it might affect many users. Please, make sure to update your code accordingly.
If you still wish to keep the old behaviour for the exchange in question, you can add your own
commonCurrencies
substitution map like so:Thx for using this library!
The text was updated successfully, but these errors were encountered: