@folks-finance/xchain-sdk 0.0.80 → 0.0.81
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,6 +1,6 @@
|
|
|
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 = 50000n;
|
|
4
4
|
export declare const SEND_TOKEN_ACTION_RETURN_GAS_LIMIT = 500000n;
|
|
5
5
|
export declare const RECEIVER_VALUE_SLIPPAGE = 0.01;
|
|
6
6
|
export declare const RETRY_REVERSE_GAS_LIMIT_SLIPPAGE = 0.05;
|
|
@@ -3,7 +3,7 @@ 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 = 50000n;
|
|
7
7
|
export const SEND_TOKEN_ACTION_RETURN_GAS_LIMIT = 500000n;
|
|
8
8
|
export const RECEIVER_VALUE_SLIPPAGE = 0.01;
|
|
9
9
|
export const RETRY_REVERSE_GAS_LIMIT_SLIPPAGE = 0.05;
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ 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 = 50_000n;
|
|
10
10
|
export const SEND_TOKEN_ACTION_RETURN_GAS_LIMIT = 500_000n;
|
|
11
11
|
export const RECEIVER_VALUE_SLIPPAGE = 0.01;
|
|
12
12
|
export const RETRY_REVERSE_GAS_LIMIT_SLIPPAGE = 0.05;
|