diff --git a/cs/ccxt/exchanges/hollaex.cs b/cs/ccxt/exchanges/hollaex.cs index 98ff67e36ea8..e2eef5ff369d 100644 --- a/cs/ccxt/exchanges/hollaex.cs +++ b/cs/ccxt/exchanges/hollaex.cs @@ -343,7 +343,7 @@ public async override Task fetchCurrencies(object parameters = null) // "verified":true, // "allow_deposit":true, // "allow_withdrawal":true, - // "withdrawal_fee":0.0001, + // "withdrawal_fee":0.0002, // "min":0.001, // "max":100000, // "increment_unit":0.001, diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js index 510066683c2d..1c98fb5ee8aa 100644 --- a/dist/ccxt.browser.js +++ b/dist/ccxt.browser.js @@ -178155,7 +178155,7 @@ class hollaex extends _abstract_hollaex_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa // "verified":true, // "allow_deposit":true, // "allow_withdrawal":true, - // "withdrawal_fee":0.0001, + // "withdrawal_fee":0.0002, // "min":0.001, // "max":100000, // "increment_unit":0.001, diff --git a/dist/cjs/src/hollaex.js b/dist/cjs/src/hollaex.js index 42be5f74e14f..55f49a46b42a 100644 --- a/dist/cjs/src/hollaex.js +++ b/dist/cjs/src/hollaex.js @@ -346,7 +346,7 @@ class hollaex extends hollaex$1 { // "verified":true, // "allow_deposit":true, // "allow_withdrawal":true, - // "withdrawal_fee":0.0001, + // "withdrawal_fee":0.0002, // "min":0.001, // "max":100000, // "increment_unit":0.001, diff --git a/js/src/hollaex.js b/js/src/hollaex.js index 1ad9a318f9d9..ec8ef48d7190 100644 --- a/js/src/hollaex.js +++ b/js/src/hollaex.js @@ -349,7 +349,7 @@ export default class hollaex extends Exchange { // "verified":true, // "allow_deposit":true, // "allow_withdrawal":true, - // "withdrawal_fee":0.0001, + // "withdrawal_fee":0.0002, // "min":0.001, // "max":100000, // "increment_unit":0.001, diff --git a/php/async/hollaex.php b/php/async/hollaex.php index 6f1dda066e76..7b63f2fc76ee 100644 --- a/php/async/hollaex.php +++ b/php/async/hollaex.php @@ -353,7 +353,7 @@ public function fetch_currencies($params = array ()): PromiseInterface { // "verified":true, // "allow_deposit":true, // "allow_withdrawal":true, - // "withdrawal_fee":0.0001, + // "withdrawal_fee":0.0002, // "min":0.001, // "max":100000, // "increment_unit":0.001, diff --git a/php/hollaex.php b/php/hollaex.php index ebf9a938e9e4..0d2a495695ac 100644 --- a/php/hollaex.php +++ b/php/hollaex.php @@ -345,7 +345,7 @@ public function fetch_currencies($params = array ()): ?array { // "verified":true, // "allow_deposit":true, // "allow_withdrawal":true, - // "withdrawal_fee":0.0001, + // "withdrawal_fee":0.0002, // "min":0.001, // "max":100000, // "increment_unit":0.001, diff --git a/python/ccxt/async_support/hollaex.py b/python/ccxt/async_support/hollaex.py index 0ee1b30c08d5..868e253d82a8 100644 --- a/python/ccxt/async_support/hollaex.py +++ b/python/ccxt/async_support/hollaex.py @@ -353,7 +353,7 @@ async def fetch_currencies(self, params={}) -> Currencies: # "verified":true, # "allow_deposit":true, # "allow_withdrawal":true, - # "withdrawal_fee":0.0001, + # "withdrawal_fee":0.0002, # "min":0.001, # "max":100000, # "increment_unit":0.001, diff --git a/python/ccxt/hollaex.py b/python/ccxt/hollaex.py index bd633baabba4..34592146fa28 100644 --- a/python/ccxt/hollaex.py +++ b/python/ccxt/hollaex.py @@ -353,7 +353,7 @@ def fetch_currencies(self, params={}) -> Currencies: # "verified":true, # "allow_deposit":true, # "allow_withdrawal":true, - # "withdrawal_fee":0.0001, + # "withdrawal_fee":0.0002, # "min":0.001, # "max":100000, # "increment_unit":0.001, diff --git a/python/package.json b/python/package.json index b69caa98b444..fd375b6e50e0 100644 --- a/python/package.json +++ b/python/package.json @@ -44,8 +44,17 @@ "tsBuild": "tsc && npm run addJsHeaders || echo \"\"", "tsBuildExamples": "tsc -p ./examples/tsconfig.json", "emitAPI": "tsx build/generateImplicitAPI.ts", + "emitAPITs": "tsx build/generateImplicitAPI.ts -- --ts", + "emitAPIPy": "tsx build/generateImplicitAPI.ts -- --python", + "emitAPIPhp": "tsx build/generateImplicitAPI.ts -- --php", + "emitAPICs": "tsx build/generateImplicitAPI.ts -- --csharp", "build": "npm run pre-transpile && npm run transpile && npm run post-transpile && npm run update-badges && npm run build-docs", "force-build-slow": "npm run pre-transpile && npm run force-transpile && npm run post-transpile && npm run update-badges", + "pre-transpile-js": "npm run export-exchanges && npm run vss && npm run emitAPITs && npm run tsBuild && npm run validate-types && npm run tsBuildExamples && npm run check-js-syntax && npm run bundle", + "pre-transpile-js-simple": "npm run export-exchanges && npm run emitAPITs && tsc && npm run validate-types", + "pre-transpile-py": "npm run export-exchanges && npm run emitAPIPy", + "pre-transpile-php": "npm run export-exchanges && npm run emitAPIPhp", + "pre-transpile-cs": "npm run export-exchanges && npm run emitAPICs", "pre-transpile": "npm run export-exchanges && npm run vss && npm run tsBuild && npm run emitAPI && npm run validate-types && npm run tsBuildExamples && npm run copy-python-files && npm run check-js-syntax && npm run bundle", "pre-transpile-pr": "npm run export-exchanges && npm run tsBuild && npm run emitAPI && npm run check-js-syntax", "post-transpile": "npm run check-python-syntax && npm run check-php-syntax",