Skip to content

Commit 99df6a7

Browse files
author
Travis CI
committed
1.63.71
[ci skip]
1 parent 6ab2a22 commit 99df6a7

21 files changed

+42
-54
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -219,13 +219,13 @@ console.log (ccxt.exchanges) // print all available exchanges
219219

220220
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
221221

222-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].70/dist/ccxt.browser.js
223-
* unpkg: https://unpkg.com/[email protected].70/dist/ccxt.browser.js
222+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].71/dist/ccxt.browser.js
223+
* unpkg: https://unpkg.com/[email protected].71/dist/ccxt.browser.js
224224

225225
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
226226

227227
```HTML
228-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].70/dist/ccxt.browser.js"></script>
228+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].71/dist/ccxt.browser.js"></script>
229229
```
230230

231231
Creates a global `ccxt` object:

ccxt.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Exchange = require ('./js/base/Exchange')
3636
//-----------------------------------------------------------------------------
3737
// this is updated by vss.js when building
3838

39-
const version = '1.63.70'
39+
const version = '1.63.71'
4040

4141
Exchange.ccxtVersion = version
4242

dist/ccxt.browser.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const Exchange = require ('./js/base/Exchange')
4444
//-----------------------------------------------------------------------------
4545
// this is updated by vss.js when building
4646

47-
const version = '1.63.70'
47+
const version = '1.63.71'
4848

4949
Exchange.ccxtVersion = version
5050

@@ -69092,7 +69092,7 @@ module.exports = class exmo extends Exchange {
6909269092
return this.deepExtend (super.describe (), {
6909369093
'id': 'exmo',
6909469094
'name': 'EXMO',
69095-
'countries': [ 'ES', 'RU' ], // Spain, Russia
69095+
'countries': [ 'LT' ], // Lithuania
6909669096
'rateLimit': 350, // once every 350 ms ≈ 180 requests per minute ≈ 3 requests per second
6909769097
'version': 'v1.1',
6909869098
'has': {

doc/exchange-markets-by-country.rst

+11-22
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,17 @@ The ccxt library currently supports the following cryptocurrency exchange market
727727
:target: https://techbureau-api-document.readthedocs.io/ja/latest/index.html
728728
:alt: API Version 1
729729

730+
* - Lithuania
731+
- .. image:: https://user-images.githubusercontent.com/1294454/27766491-1b0ea956-5eda-11e7-9225-40d67b481b8d.jpg
732+
:target: https://exmo.me/?ref=131685
733+
:alt: exmo
734+
735+
- exmo
736+
- `EXMO <https://exmo.me/?ref=131685>`__
737+
- .. image:: https://img.shields.io/badge/1.1-lightgray
738+
:target: https://exmo.me/en/api_doc?ref=131685
739+
:alt: API Version 1.1
740+
730741
* - Luxembourg
731742
- .. image:: https://user-images.githubusercontent.com/1294454/58385970-794e2d80-8001-11e9-889c-0567cd79b78e.jpg
732743
:target: https://oceanex.pro/signup?referral=VE24QX
@@ -903,17 +914,6 @@ The ccxt library currently supports the following cryptocurrency exchange market
903914
:target: https://cex.io/cex-api
904915
:alt: API Version *
905916
906-
* - Russia
907-
- .. image:: https://user-images.githubusercontent.com/1294454/27766491-1b0ea956-5eda-11e7-9225-40d67b481b8d.jpg
908-
:target: https://exmo.me/?ref=131685
909-
:alt: exmo
910-
911-
- exmo
912-
- `EXMO <https://exmo.me/?ref=131685>`__
913-
- .. image:: https://img.shields.io/badge/1.1-lightgray
914-
:target: https://exmo.me/en/api_doc?ref=131685
915-
:alt: API Version 1.1
916-
917917
* - Russia
918918
- .. image:: https://user-images.githubusercontent.com/1294454/27766910-cdcbfdae-5eea-11e7-9859-03fea873272d.jpg
919919
:target: https://www.yobit.net
@@ -1167,17 +1167,6 @@ The ccxt library currently supports the following cryptocurrency exchange market
11671167
:target: https://docs.upbit.com/docs/%EC%9A%94%EC%B2%AD-%EC%88%98-%EC%A0%9C%ED%95%9C
11681168
:alt: API Version 1
11691169

1170-
* - Spain
1171-
- .. image:: https://user-images.githubusercontent.com/1294454/27766491-1b0ea956-5eda-11e7-9225-40d67b481b8d.jpg
1172-
:target: https://exmo.me/?ref=131685
1173-
:alt: exmo
1174-
1175-
- exmo
1176-
- `EXMO <https://exmo.me/?ref=131685>`__
1177-
- .. image:: https://img.shields.io/badge/1.1-lightgray
1178-
:target: https://exmo.me/en/api_doc?ref=131685
1179-
:alt: API Version 1.1
1180-
11811170
* - St. Vincent & Grenadines
11821171
- .. image:: https://user-images.githubusercontent.com/1294454/99450025-3be60a00-2931-11eb-9302-f4fd8d8589aa.jpg
11831172
:target: https://www.delta.exchange/app/signup/?code=IULYNB

doc/readme.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1924,14 +1924,14 @@ JavaScript (for use with the ``<script>`` tag):
19241924
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
19251925

19261926

1927-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].70/dist/ccxt.browser.js
1928-
* unpkg: https://unpkg.com/[email protected].70/dist/ccxt.browser.js
1927+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].71/dist/ccxt.browser.js
1928+
* unpkg: https://unpkg.com/[email protected].71/dist/ccxt.browser.js
19291929

19301930
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
19311931

19321932
.. code-block:: HTML
19331933

1934-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].70/dist/ccxt.browser.js"></script>
1934+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].71/dist/ccxt.browser.js"></script>
19351935

19361936
Creates a global ``ccxt`` object:
19371937

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "1.63.70",
3+
"version": "1.63.71",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges",
55
"main": "./ccxt.js",
66
"unpkg": "dist/ccxt.browser.js",

php/Exchange.php

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

php/async/Exchange.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828

2929
include 'Throttle.php';
3030

31-
$version = '1.63.70';
31+
$version = '1.63.71';
3232

3333
class Exchange extends \ccxt\Exchange {
3434

35-
const VERSION = '1.63.70';
35+
const VERSION = '1.63.71';
3636

3737
public static $loop;
3838
public static $kernel;

php/async/exmo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function describe() {
1818
return $this->deep_extend(parent::describe (), array(
1919
'id' => 'exmo',
2020
'name' => 'EXMO',
21-
'countries' => array( 'ES', 'RU' ), // Spain, Russia
21+
'countries' => array( 'LT' ), // Lithuania
2222
'rateLimit' => 350, // once every 350 ms ≈ 180 requests per minute ≈ 3 requests per second
2323
'version' => 'v1.1',
2424
'has' => array(

php/exmo.php

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -219,13 +219,13 @@ console.log (ccxt.exchanges) // print all available exchanges
219219

220220
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
221221

222-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].70/dist/ccxt.browser.js
223-
* unpkg: https://unpkg.com/[email protected].70/dist/ccxt.browser.js
222+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].71/dist/ccxt.browser.js
223+
* unpkg: https://unpkg.com/[email protected].71/dist/ccxt.browser.js
224224

225225
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
226226

227227
```HTML
228-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].70/dist/ccxt.browser.js"></script>
228+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].71/dist/ccxt.browser.js"></script>
229229
```
230230

231231
Creates a global `ccxt` object:

python/ccxt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# ----------------------------------------------------------------------------
2424

25-
__version__ = '1.63.70'
25+
__version__ = '1.63.71'
2626

2727
# ----------------------------------------------------------------------------
2828

python/ccxt/async_support/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.63.70'
7+
__version__ = '1.63.71'
88

99
# -----------------------------------------------------------------------------
1010

python/ccxt/async_support/base/exchange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# -----------------------------------------------------------------------------
44

5-
__version__ = '1.63.70'
5+
__version__ = '1.63.71'
66

77
# -----------------------------------------------------------------------------
88

python/ccxt/async_support/exmo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def describe(self):
3232
return self.deep_extend(super(exmo, self).describe(), {
3333
'id': 'exmo',
3434
'name': 'EXMO',
35-
'countries': ['ES', 'RU'], # Spain, Russia
35+
'countries': ['LT'], # Lithuania
3636
'rateLimit': 350, # once every 350 ms ≈ 180 requests per minute ≈ 3 requests per second
3737
'version': 'v1.1',
3838
'has': {

python/ccxt/base/exchange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.63.70'
7+
__version__ = '1.63.71'
88

99
# -----------------------------------------------------------------------------
1010

python/ccxt/exmo.py

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "1.63.70",
3+
"version": "1.63.71",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges",
55
"main": "./ccxt.js",
66
"unpkg": "dist/ccxt.browser.js",

0 commit comments

Comments
 (0)