@atomiqlabs/chain-starknet 4.0.0-dev.30 → 4.0.0-dev.31
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.
|
@@ -10,7 +10,7 @@ const StarknetFees_1 = require("../chain/modules/StarknetFees");
|
|
|
10
10
|
const transaction_1 = require("@scure/btc-signer/transaction");
|
|
11
11
|
const promise_queue_ts_1 = require("promise-queue-ts");
|
|
12
12
|
const WAIT_BEFORE_BUMP = 15 * 1000;
|
|
13
|
-
const MIN_FEE_INCREASE_ABSOLUTE = 1n *
|
|
13
|
+
const MIN_FEE_INCREASE_ABSOLUTE = 1n * 1000000n; //0.001GWei
|
|
14
14
|
const MIN_FEE_INCREASE_PPM = 110000n; // +11%
|
|
15
15
|
const MIN_TIP_INCREASE_ABSOLUTE = 1n * 1000000000n; //1GWei
|
|
16
16
|
const MIN_TIP_INCREASE_PPM = 110000n; // +11%
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ import {cloneDeep} from "@scure/btc-signer/transaction";
|
|
|
9
9
|
import { PromiseQueue } from "promise-queue-ts";
|
|
10
10
|
|
|
11
11
|
const WAIT_BEFORE_BUMP = 15*1000;
|
|
12
|
-
const MIN_FEE_INCREASE_ABSOLUTE = 1n*
|
|
12
|
+
const MIN_FEE_INCREASE_ABSOLUTE = 1n*1_000_000n; //0.001GWei
|
|
13
13
|
const MIN_FEE_INCREASE_PPM = 110_000n; // +11%
|
|
14
14
|
|
|
15
15
|
const MIN_TIP_INCREASE_ABSOLUTE = 1n*1_000_000_000n; //1GWei
|