@nightlylabs/dex-sdk 0.2.20 → 0.2.21
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1839,7 +1839,7 @@ var Client = class _Client {
|
|
|
1839
1839
|
this._subscriptions = /* @__PURE__ */ new Map();
|
|
1840
1840
|
this._serverUrl = url || "https://api.dev.neony.exchange";
|
|
1841
1841
|
this._sequenceNumberManager = new AccountSequenceNumber(this._aptos, this._apiKey);
|
|
1842
|
-
this._maxGas = params?.maxGas ||
|
|
1842
|
+
this._maxGas = params?.maxGas || 2e4;
|
|
1843
1843
|
this._gasUnitPrice = params?.gasUnitPrice || 100;
|
|
1844
1844
|
this._expirationTimestampDelay = params?.expirationTimestampSecs || 20;
|
|
1845
1845
|
if (enableWs) {
|
package/dist/index.js
CHANGED
|
@@ -1789,7 +1789,7 @@ var Client = class _Client {
|
|
|
1789
1789
|
this._subscriptions = /* @__PURE__ */ new Map();
|
|
1790
1790
|
this._serverUrl = url || "https://api.dev.neony.exchange";
|
|
1791
1791
|
this._sequenceNumberManager = new AccountSequenceNumber(this._aptos, this._apiKey);
|
|
1792
|
-
this._maxGas = params?.maxGas ||
|
|
1792
|
+
this._maxGas = params?.maxGas || 2e4;
|
|
1793
1793
|
this._gasUnitPrice = params?.gasUnitPrice || 100;
|
|
1794
1794
|
this._expirationTimestampDelay = params?.expirationTimestampSecs || 20;
|
|
1795
1795
|
if (enableWs) {
|