@folks-finance/xchain-sdk 0.0.18 → 0.0.19
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { EventParams } from "../types/contract.js";
|
|
2
2
|
export declare const defaultEventParams: EventParams;
|
|
3
|
-
export declare const GAS_LIMIT_ESTIMATE_INCREASE =
|
|
3
|
+
export declare const GAS_LIMIT_ESTIMATE_INCREASE = 100000n;
|
|
4
4
|
export declare const SEND_TOKEN_ACTION_RETURN_GAS_LIMIT = 500000n;
|
|
@@ -3,6 +3,6 @@ export const defaultEventParams = {
|
|
|
3
3
|
toBlock: "latest",
|
|
4
4
|
strict: true,
|
|
5
5
|
};
|
|
6
|
-
export const GAS_LIMIT_ESTIMATE_INCREASE =
|
|
6
|
+
export const GAS_LIMIT_ESTIMATE_INCREASE = 100000n; // TODO: investigate and reduce
|
|
7
7
|
export const SEND_TOKEN_ACTION_RETURN_GAS_LIMIT = 500000n;
|
|
8
8
|
//# sourceMappingURL=contract.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.js","sourceRoot":"","sources":["../../../../../src/chains/evm/common/constants/contract.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAgB;IAC7C,SAAS,EAAE,UAAU;IACrB,OAAO,EAAE,QAAQ;IACjB,MAAM,EAAE,IAAI;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,2BAA2B,GAAG,
|
|
1
|
+
{"version":3,"file":"contract.js","sourceRoot":"","sources":["../../../../../src/chains/evm/common/constants/contract.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAgB;IAC7C,SAAS,EAAE,UAAU;IACrB,OAAO,EAAE,QAAQ;IACjB,MAAM,EAAE,IAAI;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,2BAA2B,GAAG,OAAQ,CAAC,CAAC,+BAA+B;AACpF,MAAM,CAAC,MAAM,kCAAkC,GAAG,OAAQ,CAAC"}
|
package/package.json
CHANGED
|
@@ -6,5 +6,5 @@ export const defaultEventParams: EventParams = {
|
|
|
6
6
|
strict: true,
|
|
7
7
|
};
|
|
8
8
|
|
|
9
|
-
export const GAS_LIMIT_ESTIMATE_INCREASE =
|
|
9
|
+
export const GAS_LIMIT_ESTIMATE_INCREASE = 100_000n; // TODO: investigate and reduce
|
|
10
10
|
export const SEND_TOKEN_ACTION_RETURN_GAS_LIMIT = 500_000n;
|