@atomiqlabs/chain-evm 1.0.0-dev.103 → 1.0.0-dev.104

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.
@@ -23,7 +23,7 @@ export type BotanixOptions = {
23
23
  };
24
24
  };
25
25
  fees?: EVMFees;
26
- evmConfig?: Omit<EVMConfiguration, "safeBlockTag">;
26
+ evmConfig?: Omit<EVMConfiguration, "safeBlockTag" | "finalizedBlockTag">;
27
27
  };
28
28
  export declare function initializeBotanix(options: BotanixOptions, bitcoinRpc: BitcoinRpc<any>, network: BitcoinNetwork): ChainData<BotanixChainType>;
29
29
  export type BotanixInitializerType = ChainInitializer<BotanixOptions, BotanixChainType, BotanixAssetsType>;
@@ -23,7 +23,7 @@ export type CitreaOptions = {
23
23
  };
24
24
  };
25
25
  fees?: CitreaFees;
26
- evmConfig?: Omit<EVMConfiguration, "safeBlockTag">;
26
+ evmConfig?: Omit<EVMConfiguration, "safeBlockTag" | "finalizedBlockTag">;
27
27
  };
28
28
  export declare function initializeCitrea(options: CitreaOptions, bitcoinRpc: BitcoinRpc<any>, network: BitcoinNetwork): ChainData<CitreaChainType>;
29
29
  export type CitreaInitializerType = ChainInitializer<CitreaOptions, CitreaChainType, CitreaAssetsType>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomiqlabs/chain-evm",
3
- "version": "1.0.0-dev.103",
3
+ "version": "1.0.0-dev.104",
4
4
  "description": "EVM specific base implementation",
5
5
  "main": "./dist/index.js",
6
6
  "types:": "./dist/index.d.ts",
@@ -87,7 +87,7 @@ export type BotanixOptions = {
87
87
 
88
88
  fees?: EVMFees,
89
89
 
90
- evmConfig?: Omit<EVMConfiguration, "safeBlockTag">
90
+ evmConfig?: Omit<EVMConfiguration, "safeBlockTag" | "finalizedBlockTag">
91
91
  }
92
92
 
93
93
  export function initializeBotanix(
@@ -93,7 +93,7 @@ export type CitreaOptions = {
93
93
 
94
94
  fees?: CitreaFees,
95
95
 
96
- evmConfig?: Omit<EVMConfiguration, "safeBlockTag">
96
+ evmConfig?: Omit<EVMConfiguration, "safeBlockTag" | "finalizedBlockTag">
97
97
  }
98
98
 
99
99
  export function initializeCitrea(