@clonegod/ttd-base-common 1.0.3 → 1.0.5

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.
@@ -7,7 +7,5 @@ export declare class BaseEnvArgs extends EnvArgs {
7
7
  tx_status_check_interval_mills: number;
8
8
  tx_cancel_timeout_ms: number;
9
9
  tx_cancel_gas_boost_factor: number;
10
- evm_max_gas_price_gwei: string;
11
- evm_max_priority_fee_per_gas_gwei: string;
12
10
  constructor();
13
11
  }
@@ -10,8 +10,6 @@ class BaseEnvArgs extends dist_1.EnvArgs {
10
10
  this.gas_price_gwei = new decimal_js_1.Decimal(process.env.GAS_PRICE_GWEI || '1').toNumber();
11
11
  this.gas_limit = parseInt(process.env.GAS_LIMIT || '300000');
12
12
  this.tip_amount_gwei = parseInt(process.env.EOA_TIP_AMOUNT_GWEI || '10000');
13
- this.evm_max_gas_price_gwei = process.env.EVM_MAX_GAS_PRICE_GWEI || '0.01';
14
- this.evm_max_priority_fee_per_gas_gwei = process.env.EVM_MAX_PRIORITY_FEE_PER_GAS_GWEI || '0.005';
15
13
  this.tx_status_check_interval_mills = parseInt(process.env.TX_STATUS_CHECK_INTERVAL_MILLS || '3000');
16
14
  this.tx_cancel_timeout_ms = parseInt(process.env.TX_CANCEL_TIMEOUT_MS || '15000');
17
15
  this.tx_cancel_gas_boost_factor = new decimal_js_1.Decimal(process.env.TX_CANCEL_GAS_PRICE_BOOST_FACTOR || '1.5').toNumber();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-base-common",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Base common library",
5
5
  "license": "UNLICENSED",
6
6
  "main": "dist/index.js",
@@ -14,7 +14,7 @@
14
14
  "push": "npm run build && npm publish"
15
15
  },
16
16
  "dependencies": {
17
- "@clonegod/ttd-core": "2.0.44",
17
+ "@clonegod/ttd-core": "2.0.45",
18
18
  "axios": "^1.11.00",
19
19
  "dotenv": "^16.4.7",
20
20
  "ethers": "^5.8.0"