viem 0.0.0-main.20240317T143715 → 0.0.0-main.20240317T201755
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.
- package/_cjs/chains/definitions/zkSyncInMemoryNode.js +17 -0
- package/_cjs/chains/definitions/zkSyncInMemoryNode.js.map +1 -0
- package/_cjs/chains/definitions/zkSyncLocalNode.js +17 -0
- package/_cjs/chains/definitions/zkSyncLocalNode.js.map +1 -0
- package/_cjs/chains/index.js +15 -11
- package/_cjs/chains/index.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_cjs/index.js.map +1 -1
- package/_esm/chains/definitions/zkSyncInMemoryNode.js +14 -0
- package/_esm/chains/definitions/zkSyncInMemoryNode.js.map +1 -0
- package/_esm/chains/definitions/zkSyncLocalNode.js +14 -0
- package/_esm/chains/definitions/zkSyncLocalNode.js.map +1 -0
- package/_esm/chains/index.js +7 -5
- package/_esm/chains/index.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_esm/index.js.map +1 -1
- package/_types/chains/celo/chainConfig.d.ts +9 -9
- package/_types/chains/celo/formatters.d.ts +9 -9
- package/_types/chains/definitions/ancient8.d.ts +2 -2
- package/_types/chains/definitions/ancient8Sepolia.d.ts +2 -2
- package/_types/chains/definitions/base.d.ts +2 -2
- package/_types/chains/definitions/baseGoerli.d.ts +2 -2
- package/_types/chains/definitions/baseSepolia.d.ts +2 -2
- package/_types/chains/definitions/celo.d.ts +9 -9
- package/_types/chains/definitions/celoAlfajores.d.ts +9 -9
- package/_types/chains/definitions/fraxtal.d.ts +2 -2
- package/_types/chains/definitions/fraxtalTestnet.d.ts +2 -2
- package/_types/chains/definitions/liskSepolia.d.ts +2 -2
- package/_types/chains/definitions/optimism.d.ts +2 -2
- package/_types/chains/definitions/optimismGoerli.d.ts +2 -2
- package/_types/chains/definitions/optimismSepolia.d.ts +2 -2
- package/_types/chains/definitions/pgn.d.ts +2 -2
- package/_types/chains/definitions/pgnTestnet.d.ts +2 -2
- package/_types/chains/definitions/rss3.d.ts +2 -2
- package/_types/chains/definitions/rss3Sepolia.d.ts +2 -2
- package/_types/chains/definitions/zkSync.d.ts +11 -11
- package/_types/chains/definitions/zkSyncInMemoryNode.d.ts +42 -0
- package/_types/chains/definitions/zkSyncInMemoryNode.d.ts.map +1 -0
- package/_types/chains/definitions/zkSyncLocalNode.d.ts +42 -0
- package/_types/chains/definitions/zkSyncLocalNode.d.ts.map +1 -0
- package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +11 -11
- package/_types/chains/definitions/zkSyncTestnet.d.ts +11 -11
- package/_types/chains/definitions/zora.d.ts +2 -2
- package/_types/chains/definitions/zoraSepolia.d.ts +2 -2
- package/_types/chains/definitions/zoraTestnet.d.ts +2 -2
- package/_types/chains/index.d.ts +7 -5
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/chains/opStack/chainConfig.d.ts +2 -2
- package/_types/chains/opStack/formatters.d.ts +2 -2
- package/_types/chains/zksync/chainConfig.d.ts +11 -11
- package/_types/chains/zksync/formatters.d.ts +11 -11
- package/_types/errors/version.d.ts +1 -1
- package/_types/index.d.ts +1 -1
- package/_types/index.d.ts.map +1 -1
- package/chains/definitions/zkSyncInMemoryNode.ts +14 -0
- package/chains/definitions/zkSyncLocalNode.ts +14 -0
- package/chains/index.ts +7 -5
- package/errors/version.ts +1 -1
- package/index.ts +2 -0
- package/package.json +1 -1
@@ -65,7 +65,7 @@ export declare const base: {
|
|
65
65
|
formatters: {
|
66
66
|
readonly block: {
|
67
67
|
exclude: [] | undefined;
|
68
|
-
format: (args: import("../index.js").Assign<import("../../
|
68
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
69
69
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
70
70
|
}>) => {
|
71
71
|
baseFeePerGas: bigint | null;
|
@@ -1047,7 +1047,7 @@ export declare const base: {
|
|
1047
1047
|
};
|
1048
1048
|
readonly transactionReceipt: {
|
1049
1049
|
exclude: [] | undefined;
|
1050
|
-
format: (args: import("../index.js").Assign<import("../../
|
1050
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1051
1051
|
blobGasPrice?: bigint | undefined;
|
1052
1052
|
blobGasUsed?: bigint | undefined;
|
1053
1053
|
blockHash: `0x${string}`;
|
@@ -63,7 +63,7 @@ export declare const baseGoerli: {
|
|
63
63
|
formatters: {
|
64
64
|
readonly block: {
|
65
65
|
exclude: [] | undefined;
|
66
|
-
format: (args: import("../index.js").Assign<import("../../
|
66
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
67
67
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
68
68
|
}>) => {
|
69
69
|
baseFeePerGas: bigint | null;
|
@@ -1045,7 +1045,7 @@ export declare const baseGoerli: {
|
|
1045
1045
|
};
|
1046
1046
|
readonly transactionReceipt: {
|
1047
1047
|
exclude: [] | undefined;
|
1048
|
-
format: (args: import("../index.js").Assign<import("../../
|
1048
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1049
1049
|
blobGasPrice?: bigint | undefined;
|
1050
1050
|
blobGasUsed?: bigint | undefined;
|
1051
1051
|
blockHash: `0x${string}`;
|
@@ -65,7 +65,7 @@ export declare const baseSepolia: {
|
|
65
65
|
formatters: {
|
66
66
|
readonly block: {
|
67
67
|
exclude: [] | undefined;
|
68
|
-
format: (args: import("../index.js").Assign<import("../../
|
68
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
69
69
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
70
70
|
}>) => {
|
71
71
|
baseFeePerGas: bigint | null;
|
@@ -1047,7 +1047,7 @@ export declare const baseSepolia: {
|
|
1047
1047
|
};
|
1048
1048
|
readonly transactionReceipt: {
|
1049
1049
|
exclude: [] | undefined;
|
1050
|
-
format: (args: import("../index.js").Assign<import("../../
|
1050
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1051
1051
|
blobGasPrice?: bigint | undefined;
|
1052
1052
|
blobGasUsed?: bigint | undefined;
|
1053
1053
|
blockHash: `0x${string}`;
|
@@ -30,7 +30,7 @@ export declare const celo: {
|
|
30
30
|
formatters: {
|
31
31
|
readonly block: {
|
32
32
|
exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
|
33
|
-
format: (args: import("../index.js").Assign<import("../../
|
33
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").CeloBlockOverrides & {
|
34
34
|
transactions: `0x${string}`[] | import("../index.js").CeloRpcTransaction[];
|
35
35
|
}>) => {
|
36
36
|
baseFeePerGas: bigint | null;
|
@@ -1352,7 +1352,7 @@ export declare const celo: {
|
|
1352
1352
|
accessList?: import("../../index.js").AccessList | undefined;
|
1353
1353
|
blobs?: undefined;
|
1354
1354
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1355
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1355
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1356
1356
|
accessList?: import("../../index.js").AccessList | undefined;
|
1357
1357
|
feeCurrency?: `0x${string}` | undefined;
|
1358
1358
|
gatewayFee?: bigint | undefined;
|
@@ -1372,7 +1372,7 @@ export declare const celo: {
|
|
1372
1372
|
accessList?: import("../../index.js").AccessList | undefined;
|
1373
1373
|
blobs?: undefined;
|
1374
1374
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1375
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1375
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1376
1376
|
accessList?: import("../../index.js").AccessList | undefined;
|
1377
1377
|
feeCurrency?: `0x${string}` | undefined;
|
1378
1378
|
gatewayFee?: undefined;
|
@@ -1488,7 +1488,7 @@ export declare const celo: {
|
|
1488
1488
|
accessList?: import("../../index.js").AccessList | undefined;
|
1489
1489
|
blobs?: undefined;
|
1490
1490
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1491
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1491
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1492
1492
|
accessList?: import("../../index.js").AccessList | undefined;
|
1493
1493
|
feeCurrency?: `0x${string}` | undefined;
|
1494
1494
|
gatewayFee?: bigint | undefined;
|
@@ -1508,7 +1508,7 @@ export declare const celo: {
|
|
1508
1508
|
accessList?: import("../../index.js").AccessList | undefined;
|
1509
1509
|
blobs?: undefined;
|
1510
1510
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1511
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1511
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1512
1512
|
accessList?: import("../../index.js").AccessList | undefined;
|
1513
1513
|
feeCurrency?: `0x${string}` | undefined;
|
1514
1514
|
gatewayFee?: undefined;
|
@@ -1624,7 +1624,7 @@ export declare const celo: {
|
|
1624
1624
|
accessList?: import("../../index.js").AccessList | undefined;
|
1625
1625
|
blobs?: undefined;
|
1626
1626
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1627
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1627
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1628
1628
|
accessList?: import("../../index.js").AccessList | undefined;
|
1629
1629
|
feeCurrency?: `0x${string}` | undefined;
|
1630
1630
|
gatewayFee?: bigint | undefined;
|
@@ -1644,7 +1644,7 @@ export declare const celo: {
|
|
1644
1644
|
accessList?: import("../../index.js").AccessList | undefined;
|
1645
1645
|
blobs?: undefined;
|
1646
1646
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1647
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1647
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1648
1648
|
accessList?: import("../../index.js").AccessList | undefined;
|
1649
1649
|
feeCurrency?: `0x${string}` | undefined;
|
1650
1650
|
gatewayFee?: undefined;
|
@@ -1792,7 +1792,7 @@ export declare const celo: {
|
|
1792
1792
|
accessList?: import("../../index.js").AccessList | undefined;
|
1793
1793
|
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1794
1794
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1795
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1795
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1796
1796
|
accessList?: import("../../index.js").AccessList | undefined;
|
1797
1797
|
feeCurrency?: `0x${string}` | undefined;
|
1798
1798
|
gatewayFee?: bigint | undefined;
|
@@ -1812,7 +1812,7 @@ export declare const celo: {
|
|
1812
1812
|
accessList?: import("../../index.js").AccessList | undefined;
|
1813
1813
|
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1814
1814
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1815
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1815
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1816
1816
|
accessList?: import("../../index.js").AccessList | undefined;
|
1817
1817
|
feeCurrency?: `0x${string}` | undefined;
|
1818
1818
|
gatewayFee?: undefined;
|
@@ -30,7 +30,7 @@ export declare const celoAlfajores: {
|
|
30
30
|
formatters: {
|
31
31
|
readonly block: {
|
32
32
|
exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
|
33
|
-
format: (args: import("../index.js").Assign<import("../../
|
33
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").CeloBlockOverrides & {
|
34
34
|
transactions: `0x${string}`[] | import("../index.js").CeloRpcTransaction[];
|
35
35
|
}>) => {
|
36
36
|
baseFeePerGas: bigint | null;
|
@@ -1352,7 +1352,7 @@ export declare const celoAlfajores: {
|
|
1352
1352
|
accessList?: import("../../index.js").AccessList | undefined;
|
1353
1353
|
blobs?: undefined;
|
1354
1354
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1355
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1355
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1356
1356
|
accessList?: import("../../index.js").AccessList | undefined;
|
1357
1357
|
feeCurrency?: `0x${string}` | undefined;
|
1358
1358
|
gatewayFee?: bigint | undefined;
|
@@ -1372,7 +1372,7 @@ export declare const celoAlfajores: {
|
|
1372
1372
|
accessList?: import("../../index.js").AccessList | undefined;
|
1373
1373
|
blobs?: undefined;
|
1374
1374
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1375
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1375
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1376
1376
|
accessList?: import("../../index.js").AccessList | undefined;
|
1377
1377
|
feeCurrency?: `0x${string}` | undefined;
|
1378
1378
|
gatewayFee?: undefined;
|
@@ -1488,7 +1488,7 @@ export declare const celoAlfajores: {
|
|
1488
1488
|
accessList?: import("../../index.js").AccessList | undefined;
|
1489
1489
|
blobs?: undefined;
|
1490
1490
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1491
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1491
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1492
1492
|
accessList?: import("../../index.js").AccessList | undefined;
|
1493
1493
|
feeCurrency?: `0x${string}` | undefined;
|
1494
1494
|
gatewayFee?: bigint | undefined;
|
@@ -1508,7 +1508,7 @@ export declare const celoAlfajores: {
|
|
1508
1508
|
accessList?: import("../../index.js").AccessList | undefined;
|
1509
1509
|
blobs?: undefined;
|
1510
1510
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1511
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1511
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1512
1512
|
accessList?: import("../../index.js").AccessList | undefined;
|
1513
1513
|
feeCurrency?: `0x${string}` | undefined;
|
1514
1514
|
gatewayFee?: undefined;
|
@@ -1624,7 +1624,7 @@ export declare const celoAlfajores: {
|
|
1624
1624
|
accessList?: import("../../index.js").AccessList | undefined;
|
1625
1625
|
blobs?: undefined;
|
1626
1626
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1627
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1627
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1628
1628
|
accessList?: import("../../index.js").AccessList | undefined;
|
1629
1629
|
feeCurrency?: `0x${string}` | undefined;
|
1630
1630
|
gatewayFee?: bigint | undefined;
|
@@ -1644,7 +1644,7 @@ export declare const celoAlfajores: {
|
|
1644
1644
|
accessList?: import("../../index.js").AccessList | undefined;
|
1645
1645
|
blobs?: undefined;
|
1646
1646
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1647
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1647
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1648
1648
|
accessList?: import("../../index.js").AccessList | undefined;
|
1649
1649
|
feeCurrency?: `0x${string}` | undefined;
|
1650
1650
|
gatewayFee?: undefined;
|
@@ -1792,7 +1792,7 @@ export declare const celoAlfajores: {
|
|
1792
1792
|
accessList?: import("../../index.js").AccessList | undefined;
|
1793
1793
|
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1794
1794
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1795
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1795
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1796
1796
|
accessList?: import("../../index.js").AccessList | undefined;
|
1797
1797
|
feeCurrency?: `0x${string}` | undefined;
|
1798
1798
|
gatewayFee?: bigint | undefined;
|
@@ -1812,7 +1812,7 @@ export declare const celoAlfajores: {
|
|
1812
1812
|
accessList?: import("../../index.js").AccessList | undefined;
|
1813
1813
|
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1814
1814
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
|
1815
|
-
} & import("../../index.js").TransactionRequestBase & import("../../
|
1815
|
+
} & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1816
1816
|
accessList?: import("../../index.js").AccessList | undefined;
|
1817
1817
|
feeCurrency?: `0x${string}` | undefined;
|
1818
1818
|
gatewayFee?: undefined;
|
@@ -64,7 +64,7 @@ export declare const fraxtal: {
|
|
64
64
|
formatters: {
|
65
65
|
readonly block: {
|
66
66
|
exclude: [] | undefined;
|
67
|
-
format: (args: import("../index.js").Assign<import("../../
|
67
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
68
68
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
69
69
|
}>) => {
|
70
70
|
baseFeePerGas: bigint | null;
|
@@ -1046,7 +1046,7 @@ export declare const fraxtal: {
|
|
1046
1046
|
};
|
1047
1047
|
readonly transactionReceipt: {
|
1048
1048
|
exclude: [] | undefined;
|
1049
|
-
format: (args: import("../index.js").Assign<import("../../
|
1049
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1050
1050
|
blobGasPrice?: bigint | undefined;
|
1051
1051
|
blobGasUsed?: bigint | undefined;
|
1052
1052
|
blockHash: `0x${string}`;
|
@@ -64,7 +64,7 @@ export declare const fraxtalTestnet: {
|
|
64
64
|
formatters: {
|
65
65
|
readonly block: {
|
66
66
|
exclude: [] | undefined;
|
67
|
-
format: (args: import("../index.js").Assign<import("../../
|
67
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
68
68
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
69
69
|
}>) => {
|
70
70
|
baseFeePerGas: bigint | null;
|
@@ -1046,7 +1046,7 @@ export declare const fraxtalTestnet: {
|
|
1046
1046
|
};
|
1047
1047
|
readonly transactionReceipt: {
|
1048
1048
|
exclude: [] | undefined;
|
1049
|
-
format: (args: import("../index.js").Assign<import("../../
|
1049
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1050
1050
|
blobGasPrice?: bigint | undefined;
|
1051
1051
|
blobGasUsed?: bigint | undefined;
|
1052
1052
|
blockHash: `0x${string}`;
|
@@ -62,7 +62,7 @@ export declare const liskSepolia: {
|
|
62
62
|
formatters: {
|
63
63
|
readonly block: {
|
64
64
|
exclude: [] | undefined;
|
65
|
-
format: (args: import("../index.js").Assign<import("../../
|
65
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
66
66
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
67
67
|
}>) => {
|
68
68
|
baseFeePerGas: bigint | null;
|
@@ -1044,7 +1044,7 @@ export declare const liskSepolia: {
|
|
1044
1044
|
};
|
1045
1045
|
readonly transactionReceipt: {
|
1046
1046
|
exclude: [] | undefined;
|
1047
|
-
format: (args: import("../index.js").Assign<import("../../
|
1047
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1048
1048
|
blobGasPrice?: bigint | undefined;
|
1049
1049
|
blobGasUsed?: bigint | undefined;
|
1050
1050
|
blockHash: `0x${string}`;
|
@@ -63,7 +63,7 @@ export declare const optimism: {
|
|
63
63
|
formatters: {
|
64
64
|
readonly block: {
|
65
65
|
exclude: [] | undefined;
|
66
|
-
format: (args: import("../index.js").Assign<import("../../
|
66
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
67
67
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
68
68
|
}>) => {
|
69
69
|
baseFeePerGas: bigint | null;
|
@@ -1045,7 +1045,7 @@ export declare const optimism: {
|
|
1045
1045
|
};
|
1046
1046
|
readonly transactionReceipt: {
|
1047
1047
|
exclude: [] | undefined;
|
1048
|
-
format: (args: import("../index.js").Assign<import("../../
|
1048
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1049
1049
|
blobGasPrice?: bigint | undefined;
|
1050
1050
|
blobGasUsed?: bigint | undefined;
|
1051
1051
|
blockHash: `0x${string}`;
|
@@ -63,7 +63,7 @@ export declare const optimismGoerli: {
|
|
63
63
|
formatters: {
|
64
64
|
readonly block: {
|
65
65
|
exclude: [] | undefined;
|
66
|
-
format: (args: import("../index.js").Assign<import("../../
|
66
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
67
67
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
68
68
|
}>) => {
|
69
69
|
baseFeePerGas: bigint | null;
|
@@ -1045,7 +1045,7 @@ export declare const optimismGoerli: {
|
|
1045
1045
|
};
|
1046
1046
|
readonly transactionReceipt: {
|
1047
1047
|
exclude: [] | undefined;
|
1048
|
-
format: (args: import("../index.js").Assign<import("../../
|
1048
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1049
1049
|
blobGasPrice?: bigint | undefined;
|
1050
1050
|
blobGasUsed?: bigint | undefined;
|
1051
1051
|
blockHash: `0x${string}`;
|
@@ -63,7 +63,7 @@ export declare const optimismSepolia: {
|
|
63
63
|
formatters: {
|
64
64
|
readonly block: {
|
65
65
|
exclude: [] | undefined;
|
66
|
-
format: (args: import("../index.js").Assign<import("../../
|
66
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
67
67
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
68
68
|
}>) => {
|
69
69
|
baseFeePerGas: bigint | null;
|
@@ -1045,7 +1045,7 @@ export declare const optimismSepolia: {
|
|
1045
1045
|
};
|
1046
1046
|
readonly transactionReceipt: {
|
1047
1047
|
exclude: [] | undefined;
|
1048
|
-
format: (args: import("../index.js").Assign<import("../../
|
1048
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1049
1049
|
blobGasPrice?: bigint | undefined;
|
1050
1050
|
blobGasUsed?: bigint | undefined;
|
1051
1051
|
blockHash: `0x${string}`;
|
@@ -50,7 +50,7 @@ export declare const pgn: {
|
|
50
50
|
formatters: {
|
51
51
|
readonly block: {
|
52
52
|
exclude: [] | undefined;
|
53
|
-
format: (args: import("../index.js").Assign<import("../../
|
53
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
54
54
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
55
55
|
}>) => {
|
56
56
|
baseFeePerGas: bigint | null;
|
@@ -1032,7 +1032,7 @@ export declare const pgn: {
|
|
1032
1032
|
};
|
1033
1033
|
readonly transactionReceipt: {
|
1034
1034
|
exclude: [] | undefined;
|
1035
|
-
format: (args: import("../index.js").Assign<import("../../
|
1035
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1036
1036
|
blobGasPrice?: bigint | undefined;
|
1037
1037
|
blobGasUsed?: bigint | undefined;
|
1038
1038
|
blockHash: `0x${string}`;
|
@@ -50,7 +50,7 @@ export declare const pgnTestnet: {
|
|
50
50
|
formatters: {
|
51
51
|
readonly block: {
|
52
52
|
exclude: [] | undefined;
|
53
|
-
format: (args: import("../index.js").Assign<import("../../
|
53
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
54
54
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
55
55
|
}>) => {
|
56
56
|
baseFeePerGas: bigint | null;
|
@@ -1032,7 +1032,7 @@ export declare const pgnTestnet: {
|
|
1032
1032
|
};
|
1033
1033
|
readonly transactionReceipt: {
|
1034
1034
|
exclude: [] | undefined;
|
1035
|
-
format: (args: import("../index.js").Assign<import("../../
|
1035
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1036
1036
|
blobGasPrice?: bigint | undefined;
|
1037
1037
|
blobGasUsed?: bigint | undefined;
|
1038
1038
|
blockHash: `0x${string}`;
|
@@ -64,7 +64,7 @@ export declare const rss3: {
|
|
64
64
|
formatters: {
|
65
65
|
readonly block: {
|
66
66
|
exclude: [] | undefined;
|
67
|
-
format: (args: import("../index.js").Assign<import("../../
|
67
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
68
68
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
69
69
|
}>) => {
|
70
70
|
baseFeePerGas: bigint | null;
|
@@ -1046,7 +1046,7 @@ export declare const rss3: {
|
|
1046
1046
|
};
|
1047
1047
|
readonly transactionReceipt: {
|
1048
1048
|
exclude: [] | undefined;
|
1049
|
-
format: (args: import("../index.js").Assign<import("../../
|
1049
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1050
1050
|
blobGasPrice?: bigint | undefined;
|
1051
1051
|
blobGasUsed?: bigint | undefined;
|
1052
1052
|
blockHash: `0x${string}`;
|
@@ -64,7 +64,7 @@ export declare const rss3Sepolia: {
|
|
64
64
|
formatters: {
|
65
65
|
readonly block: {
|
66
66
|
exclude: [] | undefined;
|
67
|
-
format: (args: import("../index.js").Assign<import("../../
|
67
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").OpStackRpcBlockOverrides & {
|
68
68
|
transactions: `0x${string}`[] | import("../index.js").OpStackRpcTransaction[];
|
69
69
|
}>) => {
|
70
70
|
baseFeePerGas: bigint | null;
|
@@ -1046,7 +1046,7 @@ export declare const rss3Sepolia: {
|
|
1046
1046
|
};
|
1047
1047
|
readonly transactionReceipt: {
|
1048
1048
|
exclude: [] | undefined;
|
1049
|
-
format: (args: import("../index.js").Assign<import("../../
|
1049
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
|
1050
1050
|
blobGasPrice?: bigint | undefined;
|
1051
1051
|
blobGasUsed?: bigint | undefined;
|
1052
1052
|
blockHash: `0x${string}`;
|
@@ -32,7 +32,7 @@ export declare const zkSync: {
|
|
32
32
|
formatters: {
|
33
33
|
readonly block: {
|
34
34
|
exclude: [] | undefined;
|
35
|
-
format: (args: import("../index.js").Assign<import("../../
|
35
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcBlock>, import("../index.js").ZkSyncRpcBlockOverrides & {
|
36
36
|
transactions: `0x${string}`[] | import("../index.js").ZkSyncRpcTransaction[];
|
37
37
|
}>) => {
|
38
38
|
baseFeePerGas: bigint | null;
|
@@ -68,7 +68,7 @@ export declare const zkSync: {
|
|
68
68
|
};
|
69
69
|
readonly transaction: {
|
70
70
|
exclude: [] | undefined;
|
71
|
-
format: (args: import("../index.js").Assign<import("../../
|
71
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransaction>, import("../index.js").ZkSyncRpcTransaction>) => ({
|
72
72
|
r: `0x${string}`;
|
73
73
|
s: `0x${string}`;
|
74
74
|
v: bigint;
|
@@ -437,7 +437,7 @@ export declare const zkSync: {
|
|
437
437
|
};
|
438
438
|
readonly transactionReceipt: {
|
439
439
|
exclude: [] | undefined;
|
440
|
-
format: (args: import("../index.js").Assign<import("../../
|
440
|
+
format: (args: import("../index.js").Assign<import("../../index.js").ExactPartial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").ZkSyncRpcTransactionReceiptOverrides>) => {
|
441
441
|
blobGasPrice?: bigint | undefined;
|
442
442
|
blobGasUsed?: bigint | undefined;
|
443
443
|
blockHash: `0x${string}`;
|
@@ -579,7 +579,7 @@ export declare const zkSync: {
|
|
579
579
|
accessList?: undefined;
|
580
580
|
blobs?: undefined;
|
581
581
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
582
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../
|
582
|
+
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
583
583
|
gasPerPubdata?: bigint | undefined;
|
584
584
|
customSignature?: `0x${string}` | undefined;
|
585
585
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -601,7 +601,7 @@ export declare const zkSync: {
|
|
601
601
|
accessList?: undefined;
|
602
602
|
blobs?: undefined;
|
603
603
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
604
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../
|
604
|
+
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
605
605
|
gasPerPubdata?: bigint | undefined;
|
606
606
|
customSignature?: `0x${string}` | undefined;
|
607
607
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -725,7 +725,7 @@ export declare const zkSync: {
|
|
725
725
|
accessList?: import("../../index.js").AccessList | undefined;
|
726
726
|
blobs?: undefined;
|
727
727
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
728
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../
|
728
|
+
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
729
729
|
gasPerPubdata?: bigint | undefined;
|
730
730
|
customSignature?: `0x${string}` | undefined;
|
731
731
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -747,7 +747,7 @@ export declare const zkSync: {
|
|
747
747
|
accessList?: import("../../index.js").AccessList | undefined;
|
748
748
|
blobs?: undefined;
|
749
749
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
750
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../
|
750
|
+
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
751
751
|
gasPerPubdata?: bigint | undefined;
|
752
752
|
customSignature?: `0x${string}` | undefined;
|
753
753
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -871,7 +871,7 @@ export declare const zkSync: {
|
|
871
871
|
accessList?: import("../../index.js").AccessList | undefined;
|
872
872
|
blobs?: undefined;
|
873
873
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
874
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../
|
874
|
+
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
875
875
|
gasPerPubdata?: bigint | undefined;
|
876
876
|
customSignature?: `0x${string}` | undefined;
|
877
877
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -893,7 +893,7 @@ export declare const zkSync: {
|
|
893
893
|
accessList?: import("../../index.js").AccessList | undefined;
|
894
894
|
blobs?: undefined;
|
895
895
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
896
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../
|
896
|
+
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
897
897
|
gasPerPubdata?: bigint | undefined;
|
898
898
|
customSignature?: `0x${string}` | undefined;
|
899
899
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1051,7 +1051,7 @@ export declare const zkSync: {
|
|
1051
1051
|
accessList?: import("../../index.js").AccessList | undefined;
|
1052
1052
|
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1053
1053
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1054
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../
|
1054
|
+
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1055
1055
|
gasPerPubdata?: bigint | undefined;
|
1056
1056
|
customSignature?: `0x${string}` | undefined;
|
1057
1057
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -1073,7 +1073,7 @@ export declare const zkSync: {
|
|
1073
1073
|
accessList?: import("../../index.js").AccessList | undefined;
|
1074
1074
|
blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
|
1075
1075
|
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
1076
|
-
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../
|
1076
|
+
} & Omit<import("../../index.js").TransactionRequestBase, "type"> & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
|
1077
1077
|
gasPerPubdata?: bigint | undefined;
|
1078
1078
|
customSignature?: `0x${string}` | undefined;
|
1079
1079
|
factoryDeps?: `0x${string}`[] | undefined;
|
@@ -0,0 +1,42 @@
|
|
1
|
+
export declare const zkSyncInMemoryNode: {
|
2
|
+
blockExplorers?: {
|
3
|
+
[key: string]: {
|
4
|
+
name: string;
|
5
|
+
url: string;
|
6
|
+
apiUrl?: string | undefined;
|
7
|
+
};
|
8
|
+
default: {
|
9
|
+
name: string;
|
10
|
+
url: string;
|
11
|
+
apiUrl?: string | undefined;
|
12
|
+
};
|
13
|
+
} | undefined;
|
14
|
+
contracts?: {
|
15
|
+
[x: string]: import("../../index.js").ChainContract | {
|
16
|
+
[sourceId: number]: import("../../index.js").ChainContract | undefined;
|
17
|
+
} | undefined;
|
18
|
+
ensRegistry?: import("../../index.js").ChainContract | undefined;
|
19
|
+
ensUniversalResolver?: import("../../index.js").ChainContract | undefined;
|
20
|
+
multicall3?: import("../../index.js").ChainContract | undefined;
|
21
|
+
} | undefined;
|
22
|
+
id: 260;
|
23
|
+
name: "zkSync InMemory Node";
|
24
|
+
nativeCurrency: {
|
25
|
+
readonly name: "Ether";
|
26
|
+
readonly symbol: "ETH";
|
27
|
+
readonly decimals: 18;
|
28
|
+
};
|
29
|
+
rpcUrls: {
|
30
|
+
readonly default: {
|
31
|
+
readonly http: readonly ["http://localhost:8011"];
|
32
|
+
};
|
33
|
+
};
|
34
|
+
sourceId?: number | undefined;
|
35
|
+
testnet: true;
|
36
|
+
custom?: Record<string, unknown> | undefined;
|
37
|
+
formatters?: undefined;
|
38
|
+
serializers?: import("../../index.js").ChainSerializers<undefined> | undefined;
|
39
|
+
fees?: import("../../index.js").ChainFees<undefined> | undefined;
|
40
|
+
readonly network: "zksync-in-memory-node";
|
41
|
+
};
|
42
|
+
//# sourceMappingURL=zkSyncInMemoryNode.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"zkSyncInMemoryNode.d.ts","sourceRoot":"","sources":["../../../chains/definitions/zkSyncInMemoryNode.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAW7B,CAAA"}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
export declare const zkSyncLocalNode: {
|
2
|
+
blockExplorers?: {
|
3
|
+
[key: string]: {
|
4
|
+
name: string;
|
5
|
+
url: string;
|
6
|
+
apiUrl?: string | undefined;
|
7
|
+
};
|
8
|
+
default: {
|
9
|
+
name: string;
|
10
|
+
url: string;
|
11
|
+
apiUrl?: string | undefined;
|
12
|
+
};
|
13
|
+
} | undefined;
|
14
|
+
contracts?: {
|
15
|
+
[x: string]: import("../../index.js").ChainContract | {
|
16
|
+
[sourceId: number]: import("../../index.js").ChainContract | undefined;
|
17
|
+
} | undefined;
|
18
|
+
ensRegistry?: import("../../index.js").ChainContract | undefined;
|
19
|
+
ensUniversalResolver?: import("../../index.js").ChainContract | undefined;
|
20
|
+
multicall3?: import("../../index.js").ChainContract | undefined;
|
21
|
+
} | undefined;
|
22
|
+
id: 270;
|
23
|
+
name: "zkSync CLI Local Node";
|
24
|
+
nativeCurrency: {
|
25
|
+
readonly name: "Ether";
|
26
|
+
readonly symbol: "ETH";
|
27
|
+
readonly decimals: 18;
|
28
|
+
};
|
29
|
+
rpcUrls: {
|
30
|
+
readonly default: {
|
31
|
+
readonly http: readonly ["http://localhost:3050"];
|
32
|
+
};
|
33
|
+
};
|
34
|
+
sourceId?: number | undefined;
|
35
|
+
testnet: true;
|
36
|
+
custom?: Record<string, unknown> | undefined;
|
37
|
+
formatters?: undefined;
|
38
|
+
serializers?: import("../../index.js").ChainSerializers<undefined> | undefined;
|
39
|
+
fees?: import("../../index.js").ChainFees<undefined> | undefined;
|
40
|
+
readonly network: "zksync-cli-local-node";
|
41
|
+
};
|
42
|
+
//# sourceMappingURL=zkSyncLocalNode.d.ts.map
|