viem 2.0.0-beta.14 → 2.0.0-beta.16

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.
Files changed (144) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/README.md +9 -3
  3. package/_cjs/actions/ens/getEnsName.js +4 -2
  4. package/_cjs/actions/ens/getEnsName.js.map +1 -1
  5. package/_cjs/actions/index.js +16 -2
  6. package/_cjs/actions/index.js.map +1 -1
  7. package/_cjs/chains/definitions/arbitrumSepolia.js +4 -0
  8. package/_cjs/chains/definitions/arbitrumSepolia.js.map +1 -1
  9. package/_cjs/chains/definitions/fantomSonicTestnet.js +26 -0
  10. package/_cjs/chains/definitions/fantomSonicTestnet.js.map +1 -0
  11. package/_cjs/chains/definitions/zilliqa.js +26 -0
  12. package/_cjs/chains/definitions/zilliqa.js.map +1 -0
  13. package/_cjs/chains/definitions/zilliqaTestnet.js +26 -0
  14. package/_cjs/chains/definitions/zilliqaTestnet.js.map +1 -0
  15. package/_cjs/chains/definitions/zkSyncSepoliaTestnet.js +35 -0
  16. package/_cjs/chains/definitions/zkSyncSepoliaTestnet.js.map +1 -0
  17. package/_cjs/chains/definitions/zkSyncTestnet.js +4 -0
  18. package/_cjs/chains/definitions/zkSyncTestnet.js.map +1 -1
  19. package/_cjs/chains/index.js +12 -4
  20. package/_cjs/chains/index.js.map +1 -1
  21. package/_cjs/chains/opStack/index.js +3 -3
  22. package/_cjs/chains/opStack/index.js.map +1 -1
  23. package/_cjs/chains/opStack/utils/getL2TransactionHash.js +2 -2
  24. package/_cjs/chains/opStack/utils/getL2TransactionHash.js.map +1 -1
  25. package/_cjs/chains/opStack/utils/{fromOpaqueData.js → opaqueDataToDepositData.js} +4 -4
  26. package/_cjs/chains/opStack/utils/opaqueDataToDepositData.js.map +1 -0
  27. package/_cjs/clients/transports/custom.js +8 -14
  28. package/_cjs/clients/transports/custom.js.map +1 -1
  29. package/_cjs/errors/abi.js +21 -1
  30. package/_cjs/errors/abi.js.map +1 -1
  31. package/_cjs/errors/version.js +1 -1
  32. package/_cjs/index.js +6 -2
  33. package/_cjs/index.js.map +1 -1
  34. package/_cjs/utils/abi/getAbiItem.js +46 -3
  35. package/_cjs/utils/abi/getAbiItem.js.map +1 -1
  36. package/_cjs/utils/hash/ripemd160.js +16 -0
  37. package/_cjs/utils/hash/ripemd160.js.map +1 -0
  38. package/_cjs/utils/hash/sha256.js +16 -0
  39. package/_cjs/utils/hash/sha256.js.map +1 -0
  40. package/_cjs/utils/index.js +5 -1
  41. package/_cjs/utils/index.js.map +1 -1
  42. package/_esm/actions/ens/getEnsName.js +4 -2
  43. package/_esm/actions/ens/getEnsName.js.map +1 -1
  44. package/_esm/actions/index.js +7 -0
  45. package/_esm/actions/index.js.map +1 -1
  46. package/_esm/chains/definitions/arbitrumSepolia.js +4 -0
  47. package/_esm/chains/definitions/arbitrumSepolia.js.map +1 -1
  48. package/_esm/chains/definitions/fantomSonicTestnet.js +23 -0
  49. package/_esm/chains/definitions/fantomSonicTestnet.js.map +1 -0
  50. package/_esm/chains/definitions/zilliqa.js +23 -0
  51. package/_esm/chains/definitions/zilliqa.js.map +1 -0
  52. package/_esm/chains/definitions/zilliqaTestnet.js +23 -0
  53. package/_esm/chains/definitions/zilliqaTestnet.js.map +1 -0
  54. package/_esm/chains/definitions/zkSyncSepoliaTestnet.js +32 -0
  55. package/_esm/chains/definitions/zkSyncSepoliaTestnet.js.map +1 -0
  56. package/_esm/chains/definitions/zkSyncTestnet.js +5 -0
  57. package/_esm/chains/definitions/zkSyncTestnet.js.map +1 -1
  58. package/_esm/chains/index.js +4 -0
  59. package/_esm/chains/index.js.map +1 -1
  60. package/_esm/chains/opStack/index.js +1 -1
  61. package/_esm/chains/opStack/index.js.map +1 -1
  62. package/_esm/chains/opStack/utils/getL2TransactionHash.js +2 -2
  63. package/_esm/chains/opStack/utils/getL2TransactionHash.js.map +1 -1
  64. package/_esm/chains/opStack/utils/{fromOpaqueData.js → opaqueDataToDepositData.js} +2 -2
  65. package/_esm/chains/opStack/utils/opaqueDataToDepositData.js.map +1 -0
  66. package/_esm/clients/transports/custom.js +8 -14
  67. package/_esm/clients/transports/custom.js.map +1 -1
  68. package/_esm/errors/abi.js +19 -0
  69. package/_esm/errors/abi.js.map +1 -1
  70. package/_esm/errors/version.js +1 -1
  71. package/_esm/index.js +2 -0
  72. package/_esm/index.js.map +1 -1
  73. package/_esm/utils/abi/getAbiItem.js +46 -2
  74. package/_esm/utils/abi/getAbiItem.js.map +1 -1
  75. package/_esm/utils/hash/ripemd160.js +12 -0
  76. package/_esm/utils/hash/ripemd160.js.map +1 -0
  77. package/_esm/utils/hash/sha256.js +12 -0
  78. package/_esm/utils/hash/sha256.js.map +1 -0
  79. package/_esm/utils/index.js +2 -0
  80. package/_esm/utils/index.js.map +1 -1
  81. package/_types/actions/ens/getEnsName.d.ts.map +1 -1
  82. package/_types/actions/index.d.ts +7 -0
  83. package/_types/actions/index.d.ts.map +1 -1
  84. package/_types/chains/definitions/arbitrumSepolia.d.ts +4 -0
  85. package/_types/chains/definitions/arbitrumSepolia.d.ts.map +1 -1
  86. package/_types/chains/definitions/fantomSonicTestnet.d.ts +38 -0
  87. package/_types/chains/definitions/fantomSonicTestnet.d.ts.map +1 -0
  88. package/_types/chains/definitions/zilliqa.d.ts +38 -0
  89. package/_types/chains/definitions/zilliqa.d.ts.map +1 -0
  90. package/_types/chains/definitions/zilliqaTestnet.d.ts +38 -0
  91. package/_types/chains/definitions/zilliqaTestnet.d.ts.map +1 -0
  92. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +533 -0
  93. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts.map +1 -0
  94. package/_types/chains/definitions/zkSyncTestnet.d.ts +5 -0
  95. package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
  96. package/_types/chains/index.d.ts +4 -0
  97. package/_types/chains/index.d.ts.map +1 -1
  98. package/_types/chains/opStack/index.d.ts +1 -1
  99. package/_types/chains/opStack/index.d.ts.map +1 -1
  100. package/_types/chains/opStack/utils/opaqueDataToDepositData.d.ts +15 -0
  101. package/_types/chains/opStack/utils/opaqueDataToDepositData.d.ts.map +1 -0
  102. package/_types/clients/transports/custom.d.ts +0 -2
  103. package/_types/clients/transports/custom.d.ts.map +1 -1
  104. package/_types/errors/abi.d.ts +14 -1
  105. package/_types/errors/abi.d.ts.map +1 -1
  106. package/_types/errors/version.d.ts +1 -1
  107. package/_types/index.d.ts +12 -0
  108. package/_types/index.d.ts.map +1 -1
  109. package/_types/types/eip1193.d.ts +12 -0
  110. package/_types/types/eip1193.d.ts.map +1 -1
  111. package/_types/utils/abi/getAbiItem.d.ts +2 -1
  112. package/_types/utils/abi/getAbiItem.d.ts.map +1 -1
  113. package/_types/utils/hash/ripemd160.d.ts +11 -0
  114. package/_types/utils/hash/ripemd160.d.ts.map +1 -0
  115. package/_types/utils/hash/sha256.d.ts +11 -0
  116. package/_types/utils/hash/sha256.d.ts.map +1 -0
  117. package/_types/utils/index.d.ts +2 -0
  118. package/_types/utils/index.d.ts.map +1 -1
  119. package/actions/ens/getEnsName.ts +3 -2
  120. package/actions/index.ts +31 -0
  121. package/chains/definitions/arbitrumSepolia.ts +4 -0
  122. package/chains/definitions/fantomSonicTestnet.ts +23 -0
  123. package/chains/definitions/zilliqa.ts +23 -0
  124. package/chains/definitions/zilliqaTestnet.ts +23 -0
  125. package/chains/definitions/zkSyncSepoliaTestnet.ts +32 -0
  126. package/chains/definitions/zkSyncTestnet.ts +5 -0
  127. package/chains/index.ts +4 -0
  128. package/chains/opStack/index.ts +5 -5
  129. package/chains/opStack/utils/getL2TransactionHash.ts +2 -2
  130. package/chains/opStack/utils/{fromOpaqueData.ts → opaqueDataToDepositData.ts} +9 -4
  131. package/clients/transports/custom.ts +3 -11
  132. package/errors/abi.ts +22 -1
  133. package/errors/version.ts +1 -1
  134. package/index.ts +31 -0
  135. package/package.json +1 -1
  136. package/types/eip1193.ts +12 -0
  137. package/utils/abi/getAbiItem.ts +71 -2
  138. package/utils/hash/ripemd160.ts +31 -0
  139. package/utils/hash/sha256.ts +31 -0
  140. package/utils/index.ts +2 -0
  141. package/_cjs/chains/opStack/utils/fromOpaqueData.js.map +0 -1
  142. package/_esm/chains/opStack/utils/fromOpaqueData.js.map +0 -1
  143. package/_types/chains/opStack/utils/fromOpaqueData.d.ts +0 -15
  144. package/_types/chains/opStack/utils/fromOpaqueData.d.ts.map +0 -1
@@ -0,0 +1,38 @@
1
+ export declare const fantomSonicTestnet: {
2
+ blockExplorers: {
3
+ readonly default: {
4
+ readonly name: "Fantom Sonic Open Testnet Explorer";
5
+ readonly url: "https://public-sonic.fantom.network";
6
+ };
7
+ };
8
+ contracts?: {
9
+ [x: string]: import("../../index.js").ChainContract | {
10
+ [sourceId: number]: import("../../index.js").ChainContract | undefined;
11
+ } | undefined;
12
+ ensRegistry?: import("../../index.js").ChainContract | undefined;
13
+ ensUniversalResolver?: import("../../index.js").ChainContract | undefined;
14
+ multicall3?: import("../../index.js").ChainContract | undefined;
15
+ } | undefined;
16
+ id: 64240;
17
+ name: "Fantom Sonic Open Testnet";
18
+ nativeCurrency: {
19
+ readonly decimals: 18;
20
+ readonly name: "Fantom";
21
+ readonly symbol: "FTM";
22
+ };
23
+ rpcUrls: {
24
+ readonly default: {
25
+ readonly http: readonly ["https://rpcapi.sonic.fantom.network"];
26
+ };
27
+ readonly public: {
28
+ readonly http: readonly ["https://rpcapi.sonic.fantom.network"];
29
+ };
30
+ };
31
+ sourceId?: number | undefined;
32
+ testnet: true;
33
+ formatters?: undefined;
34
+ serializers?: import("../../index.js").ChainSerializers<undefined> | undefined;
35
+ fees?: import("../../index.js").ChainFees<undefined> | undefined;
36
+ readonly network: "fantom-sonic-testnet";
37
+ };
38
+ //# sourceMappingURL=fantomSonicTestnet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fantomSonicTestnet.d.ts","sourceRoot":"","sources":["../../../chains/definitions/fantomSonicTestnet.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoB7B,CAAA"}
@@ -0,0 +1,38 @@
1
+ export declare const zilliqa: {
2
+ blockExplorers: {
3
+ readonly default: {
4
+ readonly name: "Ethernal";
5
+ readonly url: "https://evmx.zilliqa.com";
6
+ };
7
+ };
8
+ contracts?: {
9
+ [x: string]: import("../../index.js").ChainContract | {
10
+ [sourceId: number]: import("../../index.js").ChainContract | undefined;
11
+ } | undefined;
12
+ ensRegistry?: import("../../index.js").ChainContract | undefined;
13
+ ensUniversalResolver?: import("../../index.js").ChainContract | undefined;
14
+ multicall3?: import("../../index.js").ChainContract | undefined;
15
+ } | undefined;
16
+ id: 32769;
17
+ name: "Zilliqa";
18
+ nativeCurrency: {
19
+ readonly name: "Zilliqa";
20
+ readonly symbol: "ZIL";
21
+ readonly decimals: 18;
22
+ };
23
+ rpcUrls: {
24
+ readonly default: {
25
+ readonly http: readonly ["https://api.zilliqa.com"];
26
+ };
27
+ readonly public: {
28
+ readonly http: readonly ["https://api.zilliqa.com"];
29
+ };
30
+ };
31
+ sourceId?: number | undefined;
32
+ testnet: false;
33
+ formatters?: undefined;
34
+ serializers?: import("../../index.js").ChainSerializers<undefined> | undefined;
35
+ fees?: import("../../index.js").ChainFees<undefined> | undefined;
36
+ readonly network: "zilliqa";
37
+ };
38
+ //# sourceMappingURL=zilliqa.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zilliqa.d.ts","sourceRoot":"","sources":["../../../chains/definitions/zilliqa.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoBlB,CAAA"}
@@ -0,0 +1,38 @@
1
+ export declare const zilliqaTestnet: {
2
+ blockExplorers: {
3
+ readonly default: {
4
+ readonly name: "Ethernal";
5
+ readonly url: "https://evmx.testnet.zilliqa.com";
6
+ };
7
+ };
8
+ contracts?: {
9
+ [x: string]: import("../../index.js").ChainContract | {
10
+ [sourceId: number]: import("../../index.js").ChainContract | undefined;
11
+ } | undefined;
12
+ ensRegistry?: import("../../index.js").ChainContract | undefined;
13
+ ensUniversalResolver?: import("../../index.js").ChainContract | undefined;
14
+ multicall3?: import("../../index.js").ChainContract | undefined;
15
+ } | undefined;
16
+ id: 33101;
17
+ name: "Zilliqa Testnet";
18
+ nativeCurrency: {
19
+ readonly name: "Zilliqa";
20
+ readonly symbol: "ZIL";
21
+ readonly decimals: 18;
22
+ };
23
+ rpcUrls: {
24
+ readonly default: {
25
+ readonly http: readonly ["https://dev-api.zilliqa.com"];
26
+ };
27
+ readonly public: {
28
+ readonly http: readonly ["https://dev-api.zilliqa.com"];
29
+ };
30
+ };
31
+ sourceId?: number | undefined;
32
+ testnet: true;
33
+ formatters?: undefined;
34
+ serializers?: import("../../index.js").ChainSerializers<undefined> | undefined;
35
+ fees?: import("../../index.js").ChainFees<undefined> | undefined;
36
+ readonly network: "zilliqa-testnet";
37
+ };
38
+ //# sourceMappingURL=zilliqaTestnet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zilliqaTestnet.d.ts","sourceRoot":"","sources":["../../../chains/definitions/zilliqaTestnet.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoBzB,CAAA"}
@@ -0,0 +1,533 @@
1
+ export declare const zkSyncSepoliaTestnet: {
2
+ blockExplorers: {
3
+ readonly default: {
4
+ readonly name: "zkExplorer";
5
+ readonly url: "https://sepolia.explorer.zksync.io/";
6
+ };
7
+ };
8
+ contracts: {
9
+ readonly multicall3: {
10
+ readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
11
+ };
12
+ };
13
+ id: 300;
14
+ name: "zkSync Sepolia Testnet";
15
+ nativeCurrency: {
16
+ readonly name: "Ether";
17
+ readonly symbol: "ETH";
18
+ readonly decimals: 18;
19
+ };
20
+ rpcUrls: {
21
+ readonly default: {
22
+ readonly http: readonly ["https://sepolia.era.zksync.dev"];
23
+ readonly webSocket: readonly ["wss://sepolia.era.zksync.dev/ws"];
24
+ };
25
+ readonly public: {
26
+ readonly http: readonly ["https://sepolia.era.zksync.dev"];
27
+ readonly webSocket: readonly ["wss://sepolia.era.zksync.dev/ws"];
28
+ };
29
+ };
30
+ sourceId?: number | undefined;
31
+ testnet: true;
32
+ formatters: {
33
+ readonly block: {
34
+ exclude: [] | undefined;
35
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../zksync/types.js").ZkSyncRpcBlockOverrides & {
36
+ transactions: `0x${string}`[] | import("../zksync/types.js").ZkSyncRpcTransaction[];
37
+ }>) => {
38
+ baseFeePerGas: bigint | null;
39
+ difficulty: bigint;
40
+ extraData: `0x${string}`;
41
+ gasLimit: bigint;
42
+ gasUsed: bigint;
43
+ hash: `0x${string}` | null;
44
+ logsBloom: `0x${string}` | null;
45
+ miner: `0x${string}`;
46
+ mixHash: `0x${string}`;
47
+ nonce: `0x${string}` | null;
48
+ number: bigint | null;
49
+ parentHash: `0x${string}`;
50
+ receiptsRoot: `0x${string}`;
51
+ sealFields: `0x${string}`[];
52
+ sha3Uncles: `0x${string}`;
53
+ size: bigint;
54
+ stateRoot: `0x${string}`;
55
+ timestamp: bigint;
56
+ totalDifficulty: bigint | null;
57
+ transactions: `0x${string}`[] | import("../zksync/types.js").ZkSyncTransaction[];
58
+ transactionsRoot: `0x${string}`;
59
+ uncles: `0x${string}`[];
60
+ withdrawals?: import("../../index.js").Withdrawal[] | undefined;
61
+ withdrawalsRoot?: `0x${string}` | undefined;
62
+ l1BatchNumber: bigint | null;
63
+ l1BatchTimestamp: bigint | null;
64
+ } & {};
65
+ type: "block";
66
+ };
67
+ readonly transaction: {
68
+ exclude: [] | undefined;
69
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransaction>, import("../zksync/types.js").ZkSyncRpcTransaction>) => ({
70
+ blockHash: `0x${string}` | null;
71
+ blockNumber: bigint | null;
72
+ from: `0x${string}`;
73
+ gas: bigint;
74
+ hash: `0x${string}`;
75
+ input: `0x${string}`;
76
+ nonce: number;
77
+ r: `0x${string}`;
78
+ s: `0x${string}`;
79
+ to: `0x${string}` | null;
80
+ transactionIndex: number | null;
81
+ typeHex: `0x${string}` | null;
82
+ v: bigint;
83
+ value: bigint;
84
+ gasPrice: bigint;
85
+ maxFeePerGas?: undefined;
86
+ maxPriorityFeePerGas?: undefined;
87
+ accessList?: undefined;
88
+ chainId?: number | undefined;
89
+ yParity?: undefined;
90
+ type: "legacy";
91
+ l1BatchNumber: bigint | null;
92
+ l1BatchTxIndex: bigint | null;
93
+ } | {
94
+ blockHash: `0x${string}` | null;
95
+ blockNumber: bigint | null;
96
+ from: `0x${string}`;
97
+ gas: bigint;
98
+ hash: `0x${string}`;
99
+ input: `0x${string}`;
100
+ nonce: number;
101
+ r: `0x${string}`;
102
+ s: `0x${string}`;
103
+ to: `0x${string}` | null;
104
+ transactionIndex: number | null;
105
+ typeHex: `0x${string}` | null;
106
+ v: bigint;
107
+ value: bigint;
108
+ gasPrice: undefined;
109
+ maxFeePerGas: bigint;
110
+ maxPriorityFeePerGas: bigint;
111
+ accessList?: undefined;
112
+ chainId?: number | undefined;
113
+ yParity: number;
114
+ type: "priority";
115
+ l1BatchNumber: bigint | null;
116
+ l1BatchTxIndex: bigint | null;
117
+ } | {
118
+ blockHash: `0x${string}` | null;
119
+ blockNumber: bigint | null;
120
+ from: `0x${string}`;
121
+ gas: bigint;
122
+ hash: `0x${string}`;
123
+ input: `0x${string}`;
124
+ nonce: number;
125
+ r: `0x${string}`;
126
+ s: `0x${string}`;
127
+ to: `0x${string}` | null;
128
+ transactionIndex: number | null;
129
+ typeHex: `0x${string}` | null;
130
+ v: bigint;
131
+ value: bigint;
132
+ gasPrice: undefined;
133
+ maxFeePerGas: bigint;
134
+ maxPriorityFeePerGas: bigint;
135
+ accessList?: undefined;
136
+ chainId?: number | undefined;
137
+ yParity: number;
138
+ type: "priority" | "eip712";
139
+ l1BatchNumber: bigint | null;
140
+ l1BatchTxIndex: bigint | null;
141
+ } | {
142
+ blockHash: `0x${string}` | null;
143
+ blockNumber: bigint | null;
144
+ from: `0x${string}`;
145
+ gas: bigint;
146
+ hash: `0x${string}`;
147
+ input: `0x${string}`;
148
+ nonce: number;
149
+ r: `0x${string}`;
150
+ s: `0x${string}`;
151
+ to: `0x${string}` | null;
152
+ transactionIndex: number | null;
153
+ typeHex: `0x${string}` | null;
154
+ v: bigint;
155
+ value: bigint;
156
+ yParity: number;
157
+ gasPrice: bigint;
158
+ maxFeePerGas?: undefined;
159
+ maxPriorityFeePerGas?: undefined;
160
+ accessList: import("../../index.js").AccessList;
161
+ chainId: number;
162
+ type: "eip2930";
163
+ l1BatchNumber: bigint | null;
164
+ l1BatchTxIndex: bigint | null;
165
+ } | {
166
+ blockHash: `0x${string}` | null;
167
+ blockNumber: bigint | null;
168
+ from: `0x${string}`;
169
+ gas: bigint;
170
+ hash: `0x${string}`;
171
+ input: `0x${string}`;
172
+ nonce: number;
173
+ r: `0x${string}`;
174
+ s: `0x${string}`;
175
+ to: `0x${string}` | null;
176
+ transactionIndex: number | null;
177
+ typeHex: `0x${string}` | null;
178
+ v: bigint;
179
+ value: bigint;
180
+ yParity: number;
181
+ gasPrice: undefined;
182
+ maxFeePerGas: bigint;
183
+ maxPriorityFeePerGas: bigint;
184
+ accessList: import("../../index.js").AccessList;
185
+ chainId: number;
186
+ type: "eip1559";
187
+ l1BatchNumber: bigint | null;
188
+ l1BatchTxIndex: bigint | null;
189
+ } | {
190
+ blockHash: `0x${string}` | null;
191
+ blockNumber: bigint | null;
192
+ from: `0x${string}`;
193
+ gas: bigint;
194
+ hash: `0x${string}`;
195
+ input: `0x${string}`;
196
+ nonce: number;
197
+ r: `0x${string}`;
198
+ s: `0x${string}`;
199
+ to: `0x${string}` | null;
200
+ transactionIndex: number | null;
201
+ typeHex: `0x${string}` | null;
202
+ v: bigint;
203
+ value: bigint;
204
+ yParity: number;
205
+ gasPrice: undefined;
206
+ maxFeePerGas: bigint;
207
+ maxPriorityFeePerGas: bigint;
208
+ accessList: import("../../index.js").AccessList;
209
+ chainId: number;
210
+ type: "priority";
211
+ l1BatchNumber: bigint | null;
212
+ l1BatchTxIndex: bigint | null;
213
+ } | {
214
+ blockHash: `0x${string}` | null;
215
+ blockNumber: bigint | null;
216
+ from: `0x${string}`;
217
+ gas: bigint;
218
+ hash: `0x${string}`;
219
+ input: `0x${string}`;
220
+ nonce: number;
221
+ r: `0x${string}`;
222
+ s: `0x${string}`;
223
+ to: `0x${string}` | null;
224
+ transactionIndex: number | null;
225
+ typeHex: `0x${string}` | null;
226
+ v: bigint;
227
+ value: bigint;
228
+ yParity: number;
229
+ gasPrice: undefined;
230
+ maxFeePerGas: bigint;
231
+ maxPriorityFeePerGas: bigint;
232
+ accessList: import("../../index.js").AccessList;
233
+ chainId: number;
234
+ type: "priority" | "eip712";
235
+ l1BatchNumber: bigint | null;
236
+ l1BatchTxIndex: bigint | null;
237
+ } | {
238
+ blockHash: `0x${string}` | null;
239
+ blockNumber: bigint | null;
240
+ from: `0x${string}`;
241
+ gas: bigint;
242
+ hash: `0x${string}`;
243
+ input: `0x${string}`;
244
+ nonce: number;
245
+ r: `0x${string}`;
246
+ s: `0x${string}`;
247
+ to: `0x${string}` | null;
248
+ transactionIndex: number | null;
249
+ typeHex: `0x${string}` | null;
250
+ v: bigint;
251
+ value: bigint;
252
+ yParity: number;
253
+ gasPrice: bigint;
254
+ maxFeePerGas: undefined;
255
+ maxPriorityFeePerGas: undefined;
256
+ accessList: import("../../index.js").AccessList;
257
+ chainId: number;
258
+ type: "eip2930";
259
+ l1BatchNumber: bigint | null;
260
+ l1BatchTxIndex: bigint | null;
261
+ } | {
262
+ blockHash: `0x${string}` | null;
263
+ blockNumber: bigint | null;
264
+ from: `0x${string}`;
265
+ gas: bigint;
266
+ hash: `0x${string}`;
267
+ input: `0x${string}`;
268
+ nonce: number;
269
+ r: `0x${string}`;
270
+ s: `0x${string}`;
271
+ to: `0x${string}` | null;
272
+ transactionIndex: number | null;
273
+ typeHex: `0x${string}` | null;
274
+ v: bigint;
275
+ value: bigint;
276
+ yParity: number;
277
+ gasPrice?: undefined;
278
+ maxFeePerGas: bigint;
279
+ maxPriorityFeePerGas: bigint;
280
+ accessList: import("../../index.js").AccessList;
281
+ chainId: number;
282
+ type: "eip1559";
283
+ l1BatchNumber: bigint | null;
284
+ l1BatchTxIndex: bigint | null;
285
+ } | {
286
+ blockHash: `0x${string}` | null;
287
+ blockNumber: bigint | null;
288
+ from: `0x${string}`;
289
+ gas: bigint;
290
+ hash: `0x${string}`;
291
+ input: `0x${string}`;
292
+ nonce: number;
293
+ r: `0x${string}`;
294
+ s: `0x${string}`;
295
+ to: `0x${string}` | null;
296
+ transactionIndex: number | null;
297
+ typeHex: `0x${string}` | null;
298
+ v: bigint;
299
+ value: bigint;
300
+ yParity: number;
301
+ gasPrice?: undefined;
302
+ maxFeePerGas: bigint;
303
+ maxPriorityFeePerGas: bigint;
304
+ accessList: import("../../index.js").AccessList;
305
+ chainId: number;
306
+ type: "priority";
307
+ l1BatchNumber: bigint | null;
308
+ l1BatchTxIndex: bigint | null;
309
+ } | {
310
+ blockHash: `0x${string}` | null;
311
+ blockNumber: bigint | null;
312
+ from: `0x${string}`;
313
+ gas: bigint;
314
+ hash: `0x${string}`;
315
+ input: `0x${string}`;
316
+ nonce: number;
317
+ r: `0x${string}`;
318
+ s: `0x${string}`;
319
+ to: `0x${string}` | null;
320
+ transactionIndex: number | null;
321
+ typeHex: `0x${string}` | null;
322
+ v: bigint;
323
+ value: bigint;
324
+ yParity: number;
325
+ gasPrice?: undefined;
326
+ maxFeePerGas: bigint;
327
+ maxPriorityFeePerGas: bigint;
328
+ accessList: import("../../index.js").AccessList;
329
+ chainId: number;
330
+ type: "priority" | "eip712";
331
+ l1BatchNumber: bigint | null;
332
+ l1BatchTxIndex: bigint | null;
333
+ }) & {};
334
+ type: "transaction";
335
+ };
336
+ readonly transactionReceipt: {
337
+ exclude: [] | undefined;
338
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../zksync/types.js").ZkSyncRpcTransactionReceiptOverrides>) => {
339
+ blockHash: `0x${string}`;
340
+ blockNumber: bigint;
341
+ contractAddress: `0x${string}` | null;
342
+ cumulativeGasUsed: bigint;
343
+ effectiveGasPrice: bigint;
344
+ from: `0x${string}`;
345
+ gasUsed: bigint;
346
+ logs: import("../zksync/types.js").ZkSyncLog<bigint, number, boolean, undefined, undefined, undefined, undefined>[];
347
+ logsBloom: `0x${string}`;
348
+ status: "success" | "reverted";
349
+ to: `0x${string}` | null;
350
+ transactionHash: `0x${string}`;
351
+ transactionIndex: number;
352
+ type: import("../zksync/types.js").ZkSyncTransactionType;
353
+ l1BatchNumber: bigint | null;
354
+ l1BatchTxIndex: bigint | null;
355
+ l2ToL1Logs: import("../zksync/types.js").ZkSyncL2ToL1Log[];
356
+ } & {};
357
+ type: "transactionReceipt";
358
+ };
359
+ readonly transactionRequest: {
360
+ exclude: ("customSignature" | "factoryDeps" | "gasPerPubdata" | "paymaster" | "paymasterInput")[] | undefined;
361
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../zksync/types.js").ZkSyncTransactionRequest>) => ({
362
+ data?: `0x${string}` | undefined;
363
+ from: `0x${string}`;
364
+ gas?: `0x${string}` | undefined;
365
+ nonce?: `0x${string}` | undefined;
366
+ to?: `0x${string}` | null | undefined;
367
+ value?: `0x${string}` | undefined;
368
+ gasPrice?: `0x${string}` | undefined;
369
+ maxFeePerGas?: undefined;
370
+ maxPriorityFeePerGas?: undefined;
371
+ accessList?: undefined;
372
+ type?: "0x0" | undefined;
373
+ eip712Meta?: undefined;
374
+ } | {
375
+ data?: `0x${string}` | undefined;
376
+ from: `0x${string}`;
377
+ gas?: `0x${string}` | undefined;
378
+ nonce?: `0x${string}` | undefined;
379
+ to?: `0x${string}` | null | undefined;
380
+ value?: `0x${string}` | undefined;
381
+ gasPrice?: `0x${string}` | undefined;
382
+ maxFeePerGas?: undefined;
383
+ maxPriorityFeePerGas?: undefined;
384
+ accessList?: undefined;
385
+ type?: "0x1" | undefined;
386
+ eip712Meta?: undefined;
387
+ } | {
388
+ data?: `0x${string}` | undefined;
389
+ from: `0x${string}`;
390
+ gas?: `0x${string}` | undefined;
391
+ nonce?: `0x${string}` | undefined;
392
+ to?: `0x${string}` | null | undefined;
393
+ value?: `0x${string}` | undefined;
394
+ gasPrice?: undefined;
395
+ maxFeePerGas?: `0x${string}` | undefined;
396
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
397
+ accessList?: undefined;
398
+ type?: "0x2" | undefined;
399
+ eip712Meta?: undefined;
400
+ } | {
401
+ data?: `0x${string}` | undefined;
402
+ from: `0x${string}`;
403
+ gas?: `0x${string}` | undefined;
404
+ nonce?: `0x${string}` | undefined;
405
+ to?: `0x${string}` | null | undefined;
406
+ value?: `0x${string}` | undefined;
407
+ gasPrice?: undefined;
408
+ maxFeePerGas?: `0x${string}` | undefined;
409
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
410
+ accessList?: undefined;
411
+ type: "0xff" | "0x71";
412
+ eip712Meta: import("../zksync/types.js").ZkSyncEip712Meta;
413
+ } | {
414
+ data?: `0x${string}` | undefined;
415
+ from: `0x${string}`;
416
+ gas?: `0x${string}` | undefined;
417
+ nonce?: `0x${string}` | undefined;
418
+ to?: `0x${string}` | null | undefined;
419
+ value?: `0x${string}` | undefined;
420
+ gasPrice?: `0x${string}` | undefined;
421
+ maxFeePerGas?: undefined;
422
+ maxPriorityFeePerGas?: undefined;
423
+ accessList?: undefined;
424
+ type?: "0x0" | undefined;
425
+ eip712Meta?: undefined;
426
+ } | {
427
+ data?: `0x${string}` | undefined;
428
+ from: `0x${string}`;
429
+ gas?: `0x${string}` | undefined;
430
+ nonce?: `0x${string}` | undefined;
431
+ to?: `0x${string}` | null | undefined;
432
+ value?: `0x${string}` | undefined;
433
+ gasPrice?: `0x${string}` | undefined;
434
+ maxFeePerGas?: undefined;
435
+ maxPriorityFeePerGas?: undefined;
436
+ accessList?: import("../../index.js").AccessList | undefined;
437
+ type?: "0x1" | undefined;
438
+ eip712Meta?: undefined;
439
+ } | {
440
+ data?: `0x${string}` | undefined;
441
+ from: `0x${string}`;
442
+ gas?: `0x${string}` | undefined;
443
+ nonce?: `0x${string}` | undefined;
444
+ to?: `0x${string}` | null | undefined;
445
+ value?: `0x${string}` | undefined;
446
+ gasPrice?: undefined;
447
+ maxFeePerGas?: `0x${string}` | undefined;
448
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
449
+ accessList?: import("../../index.js").AccessList | undefined;
450
+ type?: "0x2" | undefined;
451
+ eip712Meta?: undefined;
452
+ } | {
453
+ data?: `0x${string}` | undefined;
454
+ from: `0x${string}`;
455
+ gas?: `0x${string}` | undefined;
456
+ nonce?: `0x${string}` | undefined;
457
+ to?: `0x${string}` | null | undefined;
458
+ value?: `0x${string}` | undefined;
459
+ gasPrice?: undefined;
460
+ maxFeePerGas?: `0x${string}` | undefined;
461
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
462
+ accessList?: import("../../index.js").AccessList | undefined;
463
+ type: "0xff" | "0x71";
464
+ eip712Meta: import("../zksync/types.js").ZkSyncEip712Meta;
465
+ } | {
466
+ data?: `0x${string}` | undefined;
467
+ from: `0x${string}`;
468
+ gas?: `0x${string}` | undefined;
469
+ nonce?: `0x${string}` | undefined;
470
+ to?: `0x${string}` | null | undefined;
471
+ value?: `0x${string}` | undefined;
472
+ gasPrice?: `0x${string}` | undefined;
473
+ maxFeePerGas?: undefined;
474
+ maxPriorityFeePerGas?: undefined;
475
+ accessList?: undefined;
476
+ type?: "0x0" | undefined;
477
+ eip712Meta?: undefined;
478
+ } | {
479
+ data?: `0x${string}` | undefined;
480
+ from: `0x${string}`;
481
+ gas?: `0x${string}` | undefined;
482
+ nonce?: `0x${string}` | undefined;
483
+ to?: `0x${string}` | null | undefined;
484
+ value?: `0x${string}` | undefined;
485
+ gasPrice?: `0x${string}` | undefined;
486
+ maxFeePerGas?: undefined;
487
+ maxPriorityFeePerGas?: undefined;
488
+ accessList?: import("../../index.js").AccessList | undefined;
489
+ type?: "0x1" | undefined;
490
+ eip712Meta?: undefined;
491
+ } | {
492
+ data?: `0x${string}` | undefined;
493
+ from: `0x${string}`;
494
+ gas?: `0x${string}` | undefined;
495
+ nonce?: `0x${string}` | undefined;
496
+ to?: `0x${string}` | null | undefined;
497
+ value?: `0x${string}` | undefined;
498
+ gasPrice?: undefined;
499
+ maxFeePerGas?: `0x${string}` | undefined;
500
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
501
+ accessList?: import("../../index.js").AccessList | undefined;
502
+ type?: "0x2" | undefined;
503
+ eip712Meta?: undefined;
504
+ } | {
505
+ data?: `0x${string}` | undefined;
506
+ from: `0x${string}`;
507
+ gas?: `0x${string}` | undefined;
508
+ nonce?: `0x${string}` | undefined;
509
+ to?: `0x${string}` | null | undefined;
510
+ value?: `0x${string}` | undefined;
511
+ gasPrice?: undefined;
512
+ maxFeePerGas?: `0x${string}` | undefined;
513
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
514
+ accessList?: import("../../index.js").AccessList | undefined;
515
+ type: "0xff" | "0x71";
516
+ eip712Meta: import("../zksync/types.js").ZkSyncEip712Meta;
517
+ }) & {
518
+ customSignature: never;
519
+ factoryDeps: never;
520
+ gasPerPubdata: never;
521
+ paymaster: never;
522
+ paymasterInput: never;
523
+ };
524
+ type: "transactionRequest";
525
+ };
526
+ };
527
+ serializers: {
528
+ readonly transaction: import("../../index.js").SerializeTransactionFn<import("../zksync/types.js").ZkSyncTransactionSerializable>;
529
+ };
530
+ fees?: import("../../index.js").ChainFees<undefined> | undefined;
531
+ readonly network: "zksync-sepolia-testnet";
532
+ };
533
+ //# sourceMappingURL=zkSyncSepoliaTestnet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zkSyncSepoliaTestnet.d.ts","sourceRoot":"","sources":["../../../chains/definitions/zkSyncSepoliaTestnet.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4B/B,CAAA"}
@@ -1,3 +1,4 @@
1
+ /** @deprecated Use `zkSyncSepoliaTestnet` */
1
2
  export declare const zkSyncTestnet: {
2
3
  blockExplorers: {
3
4
  readonly default: {
@@ -22,6 +23,10 @@ export declare const zkSyncTestnet: {
22
23
  readonly http: readonly ["https://testnet.era.zksync.dev"];
23
24
  readonly webSocket: readonly ["wss://testnet.era.zksync.dev/ws"];
24
25
  };
26
+ readonly public: {
27
+ readonly http: readonly ["https://testnet.era.zksync.dev"];
28
+ readonly webSocket: readonly ["wss://testnet.era.zksync.dev/ws"];
29
+ };
25
30
  };
26
31
  sourceId?: number | undefined;
27
32
  testnet: true;