@atomiqlabs/chain-evm 1.1.13 → 1.1.14

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.
@@ -81,7 +81,7 @@ function initializeGoat(options, bitcoinRpc, network) {
81
81
  ? new ethers_1.WebSocketProvider(options.rpcUrl, { name: "GOAT Network", chainId })
82
82
  : new ethers_1.JsonRpcProvider(options.rpcUrl, { name: "GOAT Network", chainId })) :
83
83
  options.rpcUrl;
84
- const Fees = options.fees ?? new EVMFees_1.EVMFees(provider, 2n * 1000000000n, 100000n);
84
+ const Fees = options.fees ?? new EVMFees_1.EVMFees(provider, 2n * 1000000000n, 5000000n);
85
85
  const chainInterface = new EVMChainInterface_1.EVMChainInterface("GOAT", chainId, provider, {
86
86
  safeBlockTag: "latest",
87
87
  finalizedBlockTag: "latest",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomiqlabs/chain-evm",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
4
4
  "description": "EVM specific base implementation",
5
5
  "main": "./dist/index.js",
6
6
  "types:": "./dist/index.d.ts",
@@ -117,7 +117,7 @@ export function initializeGoat(
117
117
  ):
118
118
  options.rpcUrl;
119
119
 
120
- const Fees = options.fees ?? new EVMFees(provider, 2n * 1_000_000_000n, 100_000n);
120
+ const Fees = options.fees ?? new EVMFees(provider, 2n * 1_000_000_000n, 5_000_000n);
121
121
 
122
122
  const chainInterface = new EVMChainInterface("GOAT", chainId, provider, {
123
123
  safeBlockTag: "latest",