ccxt-ir 4.13.0 → 4.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/package.json +1 -1
- package/dist/cjs/src/changefa.js +1 -1
- package/dist/cjs/src/hamtapay.js +48 -59
- package/dist/cjs/src/kifpoolme.js +2 -2
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/abstract/hamtapay.d.ts +0 -1
- package/js/src/base/Exchange.d.ts +2 -2
- package/js/src/changefa.js +1 -1
- package/js/src/coinbaseexchange.d.ts +1 -1
- package/js/src/hamtapay.js +48 -59
- package/js/src/kifpoolme.js +2 -2
- package/js/src/protobuf/mexc/compiled.d.cts +6 -0
- package/js/src/static_dependencies/fflake/browser.d.ts +5 -5
- package/js/src/static_dependencies/jsencrypt/lib/jsbn/jsbn.d.ts +1 -1
- package/js/src/static_dependencies/qs/formats.d.cts +6 -0
- package/js/src/static_dependencies/qs/index.d.cts +6 -0
- package/js/src/static_dependencies/qs/parse.d.cts +6 -0
- package/js/src/static_dependencies/qs/stringify.d.cts +6 -0
- package/js/src/static_dependencies/qs/utils.d.cts +6 -0
- package/js/src/static_dependencies/starknet/utils/calldata/parser/index.d.ts +1 -1
- package/js/test.js +4 -4
- package/package.json +1 -1
package/js/test.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
// EDIT THE CORRESPONDENT .ts FILE INSTEAD
|
|
6
6
|
|
|
7
7
|
import ccxt from './ccxt';
|
|
8
|
-
async function
|
|
9
|
-
const exchange = new ccxt.
|
|
8
|
+
async function testhamtapay() {
|
|
9
|
+
const exchange = new ccxt.hamtapay({
|
|
10
10
|
enableRateLimit: true,
|
|
11
11
|
timeout: 20000,
|
|
12
12
|
});
|
|
@@ -82,7 +82,7 @@ async function testBitwana() {
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
catch (error) {
|
|
85
|
-
console.error('Error during testing
|
|
85
|
+
console.error('Error during testing hamtapay:', error);
|
|
86
86
|
}
|
|
87
87
|
finally {
|
|
88
88
|
if (exchange.close) {
|
|
@@ -90,4 +90,4 @@ async function testBitwana() {
|
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
|
-
|
|
93
|
+
testhamtapay();
|
package/package.json
CHANGED