viem 1.17.0 → 1.17.2
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/CHANGELOG.md +16 -0
- package/_cjs/chains/definitions/astarZkatana.js +42 -0
- package/_cjs/chains/definitions/astarZkatana.js.map +1 -0
- package/_cjs/chains/definitions/manta.js +35 -0
- package/_cjs/chains/definitions/manta.js.map +1 -0
- package/_cjs/chains/definitions/mantaTestnet.js +36 -0
- package/_cjs/chains/definitions/mantaTestnet.js.map +1 -0
- package/_cjs/chains/definitions/zoraSepolia.js +41 -0
- package/_cjs/chains/definitions/zoraSepolia.js.map +1 -0
- package/_cjs/chains/index.js +12 -3
- package/_cjs/chains/index.js.map +1 -1
- package/_cjs/errors/node.js +11 -11
- package/_cjs/errors/node.js.map +1 -1
- package/_cjs/errors/rpc.js +18 -18
- package/_cjs/errors/rpc.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_esm/chains/definitions/astarZkatana.js +39 -0
- package/_esm/chains/definitions/astarZkatana.js.map +1 -0
- package/_esm/chains/definitions/manta.js +32 -0
- package/_esm/chains/definitions/manta.js.map +1 -0
- package/_esm/chains/definitions/mantaTestnet.js +33 -0
- package/_esm/chains/definitions/mantaTestnet.js.map +1 -0
- package/_esm/chains/definitions/zoraSepolia.js +38 -0
- package/_esm/chains/definitions/zoraSepolia.js.map +1 -0
- package/_esm/chains/index.js +4 -0
- package/_esm/chains/index.js.map +1 -1
- package/_esm/errors/node.js +22 -11
- package/_esm/errors/node.js.map +1 -1
- package/_esm/errors/rpc.js +36 -18
- package/_esm/errors/rpc.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/chains/definitions/astarZkatana.d.ts +36 -0
- package/_types/chains/definitions/astarZkatana.d.ts.map +1 -0
- package/_types/chains/definitions/manta.d.ts +35 -0
- package/_types/chains/definitions/manta.d.ts.map +1 -0
- package/_types/chains/definitions/mantaTestnet.d.ts +36 -0
- package/_types/chains/definitions/mantaTestnet.d.ts.map +1 -0
- package/_types/chains/definitions/zoraSepolia.d.ts +331 -0
- package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -0
- package/_types/chains/index.d.ts +4 -0
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/chains/definitions/astarZkatana.ts +39 -0
- package/chains/definitions/manta.ts +32 -0
- package/chains/definitions/mantaTestnet.ts +33 -0
- package/chains/definitions/zoraSepolia.ts +41 -0
- package/chains/index.ts +4 -0
- package/errors/version.ts +1 -1
- package/package.json +1 -1
package/_esm/errors/rpc.js
CHANGED
@@ -42,7 +42,7 @@ export class ProviderRpcError extends RpcError {
|
|
42
42
|
this.data = options.data;
|
43
43
|
}
|
44
44
|
}
|
45
|
-
|
45
|
+
class ParseRpcError extends RpcError {
|
46
46
|
constructor(cause) {
|
47
47
|
super(cause, {
|
48
48
|
code: ParseRpcError.code,
|
@@ -62,7 +62,8 @@ Object.defineProperty(ParseRpcError, "code", {
|
|
62
62
|
writable: true,
|
63
63
|
value: -32700
|
64
64
|
});
|
65
|
-
export
|
65
|
+
export { ParseRpcError };
|
66
|
+
class InvalidRequestRpcError extends RpcError {
|
66
67
|
constructor(cause) {
|
67
68
|
super(cause, {
|
68
69
|
code: InvalidRequestRpcError.code,
|
@@ -82,7 +83,8 @@ Object.defineProperty(InvalidRequestRpcError, "code", {
|
|
82
83
|
writable: true,
|
83
84
|
value: -32600
|
84
85
|
});
|
85
|
-
export
|
86
|
+
export { InvalidRequestRpcError };
|
87
|
+
class MethodNotFoundRpcError extends RpcError {
|
86
88
|
constructor(cause) {
|
87
89
|
super(cause, {
|
88
90
|
code: MethodNotFoundRpcError.code,
|
@@ -102,7 +104,8 @@ Object.defineProperty(MethodNotFoundRpcError, "code", {
|
|
102
104
|
writable: true,
|
103
105
|
value: -32601
|
104
106
|
});
|
105
|
-
export
|
107
|
+
export { MethodNotFoundRpcError };
|
108
|
+
class InvalidParamsRpcError extends RpcError {
|
106
109
|
constructor(cause) {
|
107
110
|
super(cause, {
|
108
111
|
code: InvalidParamsRpcError.code,
|
@@ -125,7 +128,8 @@ Object.defineProperty(InvalidParamsRpcError, "code", {
|
|
125
128
|
writable: true,
|
126
129
|
value: -32602
|
127
130
|
});
|
128
|
-
export
|
131
|
+
export { InvalidParamsRpcError };
|
132
|
+
class InternalRpcError extends RpcError {
|
129
133
|
constructor(cause) {
|
130
134
|
super(cause, {
|
131
135
|
code: InternalRpcError.code,
|
@@ -145,7 +149,8 @@ Object.defineProperty(InternalRpcError, "code", {
|
|
145
149
|
writable: true,
|
146
150
|
value: -32603
|
147
151
|
});
|
148
|
-
export
|
152
|
+
export { InternalRpcError };
|
153
|
+
class InvalidInputRpcError extends RpcError {
|
149
154
|
constructor(cause) {
|
150
155
|
super(cause, {
|
151
156
|
code: InvalidInputRpcError.code,
|
@@ -168,7 +173,8 @@ Object.defineProperty(InvalidInputRpcError, "code", {
|
|
168
173
|
writable: true,
|
169
174
|
value: -32000
|
170
175
|
});
|
171
|
-
export
|
176
|
+
export { InvalidInputRpcError };
|
177
|
+
class ResourceNotFoundRpcError extends RpcError {
|
172
178
|
constructor(cause) {
|
173
179
|
super(cause, {
|
174
180
|
code: ResourceNotFoundRpcError.code,
|
@@ -188,7 +194,8 @@ Object.defineProperty(ResourceNotFoundRpcError, "code", {
|
|
188
194
|
writable: true,
|
189
195
|
value: -32001
|
190
196
|
});
|
191
|
-
export
|
197
|
+
export { ResourceNotFoundRpcError };
|
198
|
+
class ResourceUnavailableRpcError extends RpcError {
|
192
199
|
constructor(cause) {
|
193
200
|
super(cause, {
|
194
201
|
code: ResourceUnavailableRpcError.code,
|
@@ -208,7 +215,8 @@ Object.defineProperty(ResourceUnavailableRpcError, "code", {
|
|
208
215
|
writable: true,
|
209
216
|
value: -32002
|
210
217
|
});
|
211
|
-
export
|
218
|
+
export { ResourceUnavailableRpcError };
|
219
|
+
class TransactionRejectedRpcError extends RpcError {
|
212
220
|
constructor(cause) {
|
213
221
|
super(cause, {
|
214
222
|
code: TransactionRejectedRpcError.code,
|
@@ -228,7 +236,8 @@ Object.defineProperty(TransactionRejectedRpcError, "code", {
|
|
228
236
|
writable: true,
|
229
237
|
value: -32003
|
230
238
|
});
|
231
|
-
export
|
239
|
+
export { TransactionRejectedRpcError };
|
240
|
+
class MethodNotSupportedRpcError extends RpcError {
|
232
241
|
constructor(cause) {
|
233
242
|
super(cause, {
|
234
243
|
code: MethodNotSupportedRpcError.code,
|
@@ -248,7 +257,8 @@ Object.defineProperty(MethodNotSupportedRpcError, "code", {
|
|
248
257
|
writable: true,
|
249
258
|
value: -32004
|
250
259
|
});
|
251
|
-
export
|
260
|
+
export { MethodNotSupportedRpcError };
|
261
|
+
class LimitExceededRpcError extends RpcError {
|
252
262
|
constructor(cause) {
|
253
263
|
super(cause, {
|
254
264
|
code: LimitExceededRpcError.code,
|
@@ -268,7 +278,8 @@ Object.defineProperty(LimitExceededRpcError, "code", {
|
|
268
278
|
writable: true,
|
269
279
|
value: -32005
|
270
280
|
});
|
271
|
-
export
|
281
|
+
export { LimitExceededRpcError };
|
282
|
+
class JsonRpcVersionUnsupportedError extends RpcError {
|
272
283
|
constructor(cause) {
|
273
284
|
super(cause, {
|
274
285
|
code: JsonRpcVersionUnsupportedError.code,
|
@@ -288,7 +299,8 @@ Object.defineProperty(JsonRpcVersionUnsupportedError, "code", {
|
|
288
299
|
writable: true,
|
289
300
|
value: -32006
|
290
301
|
});
|
291
|
-
export
|
302
|
+
export { JsonRpcVersionUnsupportedError };
|
303
|
+
class UserRejectedRequestError extends ProviderRpcError {
|
292
304
|
constructor(cause) {
|
293
305
|
super(cause, {
|
294
306
|
code: UserRejectedRequestError.code,
|
@@ -308,7 +320,8 @@ Object.defineProperty(UserRejectedRequestError, "code", {
|
|
308
320
|
writable: true,
|
309
321
|
value: 4001
|
310
322
|
});
|
311
|
-
export
|
323
|
+
export { UserRejectedRequestError };
|
324
|
+
class UnauthorizedProviderError extends ProviderRpcError {
|
312
325
|
constructor(cause) {
|
313
326
|
super(cause, {
|
314
327
|
code: UnauthorizedProviderError.code,
|
@@ -328,7 +341,8 @@ Object.defineProperty(UnauthorizedProviderError, "code", {
|
|
328
341
|
writable: true,
|
329
342
|
value: 4100
|
330
343
|
});
|
331
|
-
export
|
344
|
+
export { UnauthorizedProviderError };
|
345
|
+
class UnsupportedProviderMethodError extends ProviderRpcError {
|
332
346
|
constructor(cause) {
|
333
347
|
super(cause, {
|
334
348
|
code: UnsupportedProviderMethodError.code,
|
@@ -348,7 +362,8 @@ Object.defineProperty(UnsupportedProviderMethodError, "code", {
|
|
348
362
|
writable: true,
|
349
363
|
value: 4200
|
350
364
|
});
|
351
|
-
export
|
365
|
+
export { UnsupportedProviderMethodError };
|
366
|
+
class ProviderDisconnectedError extends ProviderRpcError {
|
352
367
|
constructor(cause) {
|
353
368
|
super(cause, {
|
354
369
|
code: ProviderDisconnectedError.code,
|
@@ -368,7 +383,8 @@ Object.defineProperty(ProviderDisconnectedError, "code", {
|
|
368
383
|
writable: true,
|
369
384
|
value: 4900
|
370
385
|
});
|
371
|
-
export
|
386
|
+
export { ProviderDisconnectedError };
|
387
|
+
class ChainDisconnectedError extends ProviderRpcError {
|
372
388
|
constructor(cause) {
|
373
389
|
super(cause, {
|
374
390
|
code: ChainDisconnectedError.code,
|
@@ -388,7 +404,8 @@ Object.defineProperty(ChainDisconnectedError, "code", {
|
|
388
404
|
writable: true,
|
389
405
|
value: 4901
|
390
406
|
});
|
391
|
-
export
|
407
|
+
export { ChainDisconnectedError };
|
408
|
+
class SwitchChainError extends ProviderRpcError {
|
392
409
|
constructor(cause) {
|
393
410
|
super(cause, {
|
394
411
|
code: SwitchChainError.code,
|
@@ -408,6 +425,7 @@ Object.defineProperty(SwitchChainError, "code", {
|
|
408
425
|
writable: true,
|
409
426
|
value: 4902
|
410
427
|
});
|
428
|
+
export { SwitchChainError };
|
411
429
|
export class UnknownRpcError extends RpcError {
|
412
430
|
constructor(cause) {
|
413
431
|
super(cause, {
|
package/_esm/errors/rpc.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"rpc.js","sourceRoot":"","sources":["../../errors/rpc.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAE9C,MAAM,gBAAgB,GAAG,CAAC,CAAC,CAAA;AA+B3B,MAAM,OAAO,QAA8C,SAAQ,SAAS;IAK1E,YACE,KAAY,EACZ,EAAE,IAAI,EAAE,QAAQ,EAAE,YAAY,EAAE,YAAY,EAA0B;QAEtE,KAAK,CAAC,YAAY,EAAE;YAClB,KAAK;YACL,QAAQ;YACR,YAAY,EACV,YAAY,IAAK,KAAqC,EAAE,YAAY;SACvE,CAAC,CAAA;QAbK;;;;mBAAO,UAAU;WAAA;QAE1B;;;;;WAA2B;QAYzB,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAA;QACtB,IAAI,CAAC,IAAI,GAAG,CACV,KAAK,YAAY,eAAe,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,gBAAgB,CAChE,CAAA;IACZ,CAAC;CACF;AAkBD,MAAM,OAAO,gBAEX,SAAQ,QAA8B;IAKtC,YACE,KAAY,EACZ,OAIC;QAED,KAAK,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;QAZd;;;;mBAAO,kBAAkB;WAAA;QAElC;;;;;WAAQ;QAYN,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAA;IAC1B,CAAC;CACF;AAWD,
|
1
|
+
{"version":3,"file":"rpc.js","sourceRoot":"","sources":["../../errors/rpc.ts"],"names":[],"mappings":"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"}
|
package/_esm/errors/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const version = '1.
|
1
|
+
export const version = '1.17.1';
|
2
2
|
//# sourceMappingURL=version.js.map
|
@@ -0,0 +1,36 @@
|
|
1
|
+
export declare const astarZkatana: import("../../types/utils.js").Assign<{
|
2
|
+
readonly id: 1261120;
|
3
|
+
readonly name: "Astar zkEVM Testnet zKatana";
|
4
|
+
readonly network: "zKatana";
|
5
|
+
readonly nativeCurrency: {
|
6
|
+
readonly name: "Ether";
|
7
|
+
readonly symbol: "ETH";
|
8
|
+
readonly decimals: 18;
|
9
|
+
};
|
10
|
+
readonly rpcUrls: {
|
11
|
+
readonly default: {
|
12
|
+
readonly http: readonly ["https://rpc.zkatana.gelato.digital", "https://rpc.startale.com/zkatana"];
|
13
|
+
};
|
14
|
+
readonly public: {
|
15
|
+
readonly http: readonly ["https://rpc.zkatana.gelato.digital", "https://rpc.startale.com/zkatana"];
|
16
|
+
};
|
17
|
+
};
|
18
|
+
readonly blockExplorers: {
|
19
|
+
readonly blockscout: {
|
20
|
+
readonly name: "Blockscout zKatana chain explorer";
|
21
|
+
readonly url: "https://zkatana.blockscout.com";
|
22
|
+
};
|
23
|
+
readonly default: {
|
24
|
+
readonly name: "zKatana Explorer";
|
25
|
+
readonly url: "https://zkatana.explorer.startale.com";
|
26
|
+
};
|
27
|
+
};
|
28
|
+
readonly contracts: {
|
29
|
+
readonly multicall3: {
|
30
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
31
|
+
readonly blockCreated: 31317;
|
32
|
+
};
|
33
|
+
};
|
34
|
+
readonly testnet: true;
|
35
|
+
}, import("../../types/chain.js").ChainConfig<import("../../index.js").ChainFormatters>>;
|
36
|
+
//# sourceMappingURL=astarZkatana.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"astarZkatana.d.ts","sourceRoot":"","sources":["../../../chains/definitions/astarZkatana.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wFAoCvB,CAAA"}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
export declare const manta: import("../../types/utils.js").Assign<{
|
2
|
+
readonly id: 169;
|
3
|
+
readonly name: "Manta Pacific Mainnet";
|
4
|
+
readonly network: "manta";
|
5
|
+
readonly nativeCurrency: {
|
6
|
+
readonly decimals: 18;
|
7
|
+
readonly name: "ETH";
|
8
|
+
readonly symbol: "ETH";
|
9
|
+
};
|
10
|
+
readonly rpcUrls: {
|
11
|
+
readonly default: {
|
12
|
+
readonly http: readonly ["https://pacific-rpc.manta.network/http"];
|
13
|
+
};
|
14
|
+
readonly public: {
|
15
|
+
readonly http: readonly ["https://pacific-rpc.manta.network/http"];
|
16
|
+
};
|
17
|
+
};
|
18
|
+
readonly blockExplorers: {
|
19
|
+
readonly etherscan: {
|
20
|
+
readonly name: "Manta Explorer";
|
21
|
+
readonly url: "https://pacific-explorer.manta.network";
|
22
|
+
};
|
23
|
+
readonly default: {
|
24
|
+
readonly name: "Manta Explorer";
|
25
|
+
readonly url: "https://pacific-explorer.manta.network";
|
26
|
+
};
|
27
|
+
};
|
28
|
+
readonly contracts: {
|
29
|
+
readonly multicall3: {
|
30
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
31
|
+
readonly blockCreated: 332890;
|
32
|
+
};
|
33
|
+
};
|
34
|
+
}, import("../../types/chain.js").ChainConfig<import("../../index.js").ChainFormatters>>;
|
35
|
+
//# sourceMappingURL=manta.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"manta.d.ts","sourceRoot":"","sources":["../../../chains/definitions/manta.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wFA6BhB,CAAA"}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
export declare const mantaTestnet: import("../../types/utils.js").Assign<{
|
2
|
+
readonly id: 3441005;
|
3
|
+
readonly name: "Manta Pacific Testnet";
|
4
|
+
readonly network: "manta-testnet";
|
5
|
+
readonly nativeCurrency: {
|
6
|
+
readonly decimals: 18;
|
7
|
+
readonly name: "ETH";
|
8
|
+
readonly symbol: "ETH";
|
9
|
+
};
|
10
|
+
readonly rpcUrls: {
|
11
|
+
readonly default: {
|
12
|
+
readonly http: readonly ["https://manta-testnet.calderachain.xyz/http"];
|
13
|
+
};
|
14
|
+
readonly public: {
|
15
|
+
readonly http: readonly ["https://manta-testnet.calderachain.xyz/http"];
|
16
|
+
};
|
17
|
+
};
|
18
|
+
readonly blockExplorers: {
|
19
|
+
readonly etherscan: {
|
20
|
+
readonly name: "Manta Testnet Explorer";
|
21
|
+
readonly url: "https://pacific-explorer.testnet.manta.network";
|
22
|
+
};
|
23
|
+
readonly default: {
|
24
|
+
readonly name: "Manta Testnet Explorer";
|
25
|
+
readonly url: "https://pacific-explorer.testnet.manta.network";
|
26
|
+
};
|
27
|
+
};
|
28
|
+
readonly contracts: {
|
29
|
+
readonly multicall3: {
|
30
|
+
readonly address: "0x211B1643b95Fe76f11eD8880EE810ABD9A4cf56C";
|
31
|
+
readonly blockCreated: 419915;
|
32
|
+
};
|
33
|
+
};
|
34
|
+
readonly testnet: true;
|
35
|
+
}, import("../../types/chain.js").ChainConfig<import("../../index.js").ChainFormatters>>;
|
36
|
+
//# sourceMappingURL=mantaTestnet.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"mantaTestnet.d.ts","sourceRoot":"","sources":["../../../chains/definitions/mantaTestnet.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wFA8BvB,CAAA"}
|
@@ -0,0 +1,331 @@
|
|
1
|
+
export declare const zoraSepolia: import("../../types/utils.js").Assign<{
|
2
|
+
readonly id: 999999999;
|
3
|
+
readonly name: "Zora Sepolia";
|
4
|
+
readonly network: "zora-sepolia";
|
5
|
+
readonly nativeCurrency: {
|
6
|
+
readonly decimals: 18;
|
7
|
+
readonly name: "Zora Sepolia";
|
8
|
+
readonly symbol: "ETH";
|
9
|
+
};
|
10
|
+
readonly rpcUrls: {
|
11
|
+
readonly default: {
|
12
|
+
readonly http: readonly ["https://sepolia.rpc.zora.energy"];
|
13
|
+
readonly webSocket: readonly ["wss://sepolia.rpc.zora.energy"];
|
14
|
+
};
|
15
|
+
readonly public: {
|
16
|
+
readonly http: readonly ["https://sepolia.rpc.zora.energy"];
|
17
|
+
readonly webSocket: readonly ["wss://sepolia.rpc.zora.energy"];
|
18
|
+
};
|
19
|
+
};
|
20
|
+
readonly blockExplorers: {
|
21
|
+
readonly default: {
|
22
|
+
readonly name: "Zora Sepolia Explorer";
|
23
|
+
readonly url: "https://sepolia.explorer.zora.energy/";
|
24
|
+
};
|
25
|
+
};
|
26
|
+
readonly contracts: {
|
27
|
+
readonly multicall3: {
|
28
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
29
|
+
readonly blockCreated: 83160;
|
30
|
+
};
|
31
|
+
};
|
32
|
+
readonly testnet: true;
|
33
|
+
}, import("../../types/chain.js").ChainConfig<{
|
34
|
+
readonly block: {
|
35
|
+
exclude: [] | undefined;
|
36
|
+
format: (args: import("../../types/utils.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../optimism/types.js").OptimismRpcBlockOverrides & {
|
37
|
+
transactions: `0x${string}`[] | import("../optimism/types.js").OptimismRpcTransaction[];
|
38
|
+
}>) => {
|
39
|
+
baseFeePerGas: bigint | null;
|
40
|
+
difficulty: bigint;
|
41
|
+
extraData: `0x${string}`;
|
42
|
+
gasLimit: bigint;
|
43
|
+
gasUsed: bigint;
|
44
|
+
hash: `0x${string}` | null;
|
45
|
+
logsBloom: `0x${string}` | null;
|
46
|
+
miner: `0x${string}`;
|
47
|
+
mixHash: `0x${string}`;
|
48
|
+
nonce: `0x${string}` | null;
|
49
|
+
number: bigint | null;
|
50
|
+
parentHash: `0x${string}`;
|
51
|
+
receiptsRoot: `0x${string}`;
|
52
|
+
sealFields: `0x${string}`[];
|
53
|
+
sha3Uncles: `0x${string}`;
|
54
|
+
size: bigint;
|
55
|
+
stateRoot: `0x${string}`;
|
56
|
+
timestamp: bigint;
|
57
|
+
totalDifficulty: bigint | null;
|
58
|
+
transactions: `0x${string}`[] | import("../optimism/types.js").OptimismTransaction[];
|
59
|
+
transactionsRoot: `0x${string}`;
|
60
|
+
uncles: `0x${string}`[];
|
61
|
+
withdrawals?: import("../../index.js").Withdrawal[] | undefined;
|
62
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
63
|
+
} & {};
|
64
|
+
type: "block";
|
65
|
+
};
|
66
|
+
readonly transaction: {
|
67
|
+
exclude: [] | undefined;
|
68
|
+
format: (args: (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
69
|
+
isSystemTx?: undefined;
|
70
|
+
mint?: undefined;
|
71
|
+
sourceHash?: undefined;
|
72
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
73
|
+
isSystemTx?: boolean | undefined;
|
74
|
+
mint?: `0x${string}` | undefined;
|
75
|
+
sourceHash: `0x${string}`;
|
76
|
+
type: "0x7e";
|
77
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
78
|
+
isSystemTx?: undefined;
|
79
|
+
mint?: undefined;
|
80
|
+
sourceHash?: undefined;
|
81
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
82
|
+
isSystemTx?: undefined;
|
83
|
+
mint?: undefined;
|
84
|
+
sourceHash?: undefined;
|
85
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
86
|
+
isSystemTx?: undefined;
|
87
|
+
mint?: undefined;
|
88
|
+
sourceHash?: undefined;
|
89
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
90
|
+
isSystemTx?: boolean | undefined;
|
91
|
+
mint?: `0x${string}` | undefined;
|
92
|
+
sourceHash: `0x${string}`;
|
93
|
+
type: "0x7e";
|
94
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
95
|
+
isSystemTx?: undefined;
|
96
|
+
mint?: undefined;
|
97
|
+
sourceHash?: undefined;
|
98
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
99
|
+
isSystemTx?: undefined;
|
100
|
+
mint?: undefined;
|
101
|
+
sourceHash?: undefined;
|
102
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
103
|
+
isSystemTx?: undefined;
|
104
|
+
mint?: undefined;
|
105
|
+
sourceHash?: undefined;
|
106
|
+
}) | (import("../../types/utils.js").Assign_<Partial<Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex">>, import("../optimism/types.js").OptimismRpcTransaction> & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
107
|
+
isSystemTx?: boolean | undefined;
|
108
|
+
mint?: `0x${string}` | undefined;
|
109
|
+
sourceHash: `0x${string}`;
|
110
|
+
type: "0x7e";
|
111
|
+
})) => ({
|
112
|
+
blockHash: `0x${string}` | null;
|
113
|
+
blockNumber: bigint | null;
|
114
|
+
from: `0x${string}`;
|
115
|
+
gas: bigint;
|
116
|
+
hash: `0x${string}`;
|
117
|
+
input: `0x${string}`;
|
118
|
+
nonce: number;
|
119
|
+
r: `0x${string}`;
|
120
|
+
s: `0x${string}`;
|
121
|
+
to: `0x${string}` | null;
|
122
|
+
transactionIndex: number | null;
|
123
|
+
typeHex: `0x${string}` | null;
|
124
|
+
v: bigint;
|
125
|
+
value: bigint;
|
126
|
+
gasPrice: bigint;
|
127
|
+
maxFeePerGas?: undefined;
|
128
|
+
maxPriorityFeePerGas?: undefined;
|
129
|
+
accessList?: undefined;
|
130
|
+
chainId?: number | undefined;
|
131
|
+
type: "legacy";
|
132
|
+
isSystemTx?: undefined;
|
133
|
+
mint?: undefined;
|
134
|
+
sourceHash?: undefined;
|
135
|
+
} | {
|
136
|
+
blockHash: `0x${string}` | null;
|
137
|
+
blockNumber: bigint | null;
|
138
|
+
from: `0x${string}`;
|
139
|
+
gas: bigint;
|
140
|
+
hash: `0x${string}`;
|
141
|
+
input: `0x${string}`;
|
142
|
+
nonce: number;
|
143
|
+
r: `0x${string}`;
|
144
|
+
s: `0x${string}`;
|
145
|
+
to: `0x${string}` | null;
|
146
|
+
transactionIndex: number | null;
|
147
|
+
typeHex: `0x${string}` | null;
|
148
|
+
v: bigint;
|
149
|
+
value: bigint;
|
150
|
+
gasPrice: undefined;
|
151
|
+
maxFeePerGas: bigint;
|
152
|
+
maxPriorityFeePerGas: bigint;
|
153
|
+
accessList?: undefined;
|
154
|
+
chainId?: number | undefined;
|
155
|
+
type: "deposit";
|
156
|
+
isSystemTx?: boolean | undefined;
|
157
|
+
mint?: bigint | undefined;
|
158
|
+
sourceHash: `0x${string}`;
|
159
|
+
} | {
|
160
|
+
blockHash: `0x${string}` | null;
|
161
|
+
blockNumber: bigint | null;
|
162
|
+
from: `0x${string}`;
|
163
|
+
gas: bigint;
|
164
|
+
hash: `0x${string}`;
|
165
|
+
input: `0x${string}`;
|
166
|
+
nonce: number;
|
167
|
+
r: `0x${string}`;
|
168
|
+
s: `0x${string}`;
|
169
|
+
to: `0x${string}` | null;
|
170
|
+
transactionIndex: number | null;
|
171
|
+
typeHex: `0x${string}` | null;
|
172
|
+
v: bigint;
|
173
|
+
value: bigint;
|
174
|
+
gasPrice: bigint;
|
175
|
+
maxFeePerGas?: undefined;
|
176
|
+
maxPriorityFeePerGas?: undefined;
|
177
|
+
accessList: import("../../index.js").AccessList;
|
178
|
+
chainId: number;
|
179
|
+
type: "eip2930";
|
180
|
+
isSystemTx?: undefined;
|
181
|
+
mint?: undefined;
|
182
|
+
sourceHash?: undefined;
|
183
|
+
} | {
|
184
|
+
blockHash: `0x${string}` | null;
|
185
|
+
blockNumber: bigint | null;
|
186
|
+
from: `0x${string}`;
|
187
|
+
gas: bigint;
|
188
|
+
hash: `0x${string}`;
|
189
|
+
input: `0x${string}`;
|
190
|
+
nonce: number;
|
191
|
+
r: `0x${string}`;
|
192
|
+
s: `0x${string}`;
|
193
|
+
to: `0x${string}` | null;
|
194
|
+
transactionIndex: number | null;
|
195
|
+
typeHex: `0x${string}` | null;
|
196
|
+
v: bigint;
|
197
|
+
value: bigint;
|
198
|
+
gasPrice: undefined;
|
199
|
+
maxFeePerGas: bigint;
|
200
|
+
maxPriorityFeePerGas: bigint;
|
201
|
+
accessList: import("../../index.js").AccessList;
|
202
|
+
chainId: number;
|
203
|
+
type: "eip1559";
|
204
|
+
isSystemTx?: undefined;
|
205
|
+
mint?: undefined;
|
206
|
+
sourceHash?: undefined;
|
207
|
+
} | {
|
208
|
+
blockHash: `0x${string}` | null;
|
209
|
+
blockNumber: bigint | null;
|
210
|
+
from: `0x${string}`;
|
211
|
+
gas: bigint;
|
212
|
+
hash: `0x${string}`;
|
213
|
+
input: `0x${string}`;
|
214
|
+
nonce: number;
|
215
|
+
r: `0x${string}`;
|
216
|
+
s: `0x${string}`;
|
217
|
+
to: `0x${string}` | null;
|
218
|
+
transactionIndex: number | null;
|
219
|
+
typeHex: `0x${string}` | null;
|
220
|
+
v: bigint;
|
221
|
+
value: bigint;
|
222
|
+
gasPrice: undefined;
|
223
|
+
maxFeePerGas: bigint;
|
224
|
+
maxPriorityFeePerGas: bigint;
|
225
|
+
accessList: import("../../index.js").AccessList;
|
226
|
+
chainId: number;
|
227
|
+
type: "deposit";
|
228
|
+
isSystemTx?: boolean | undefined;
|
229
|
+
mint?: bigint | undefined;
|
230
|
+
sourceHash: `0x${string}`;
|
231
|
+
} | {
|
232
|
+
blockHash: `0x${string}` | null;
|
233
|
+
blockNumber: bigint | null;
|
234
|
+
from: `0x${string}`;
|
235
|
+
gas: bigint;
|
236
|
+
hash: `0x${string}`;
|
237
|
+
input: `0x${string}`;
|
238
|
+
nonce: number;
|
239
|
+
r: `0x${string}`;
|
240
|
+
s: `0x${string}`;
|
241
|
+
to: `0x${string}` | null;
|
242
|
+
transactionIndex: number | null;
|
243
|
+
typeHex: `0x${string}` | null;
|
244
|
+
v: bigint;
|
245
|
+
value: bigint;
|
246
|
+
gasPrice: bigint;
|
247
|
+
maxFeePerGas: undefined;
|
248
|
+
maxPriorityFeePerGas: undefined;
|
249
|
+
accessList: import("../../index.js").AccessList;
|
250
|
+
chainId: number;
|
251
|
+
type: "eip2930";
|
252
|
+
isSystemTx?: undefined;
|
253
|
+
mint?: undefined;
|
254
|
+
sourceHash?: undefined;
|
255
|
+
} | {
|
256
|
+
blockHash: `0x${string}` | null;
|
257
|
+
blockNumber: bigint | null;
|
258
|
+
from: `0x${string}`;
|
259
|
+
gas: bigint;
|
260
|
+
hash: `0x${string}`;
|
261
|
+
input: `0x${string}`;
|
262
|
+
nonce: number;
|
263
|
+
r: `0x${string}`;
|
264
|
+
s: `0x${string}`;
|
265
|
+
to: `0x${string}` | null;
|
266
|
+
transactionIndex: number | null;
|
267
|
+
typeHex: `0x${string}` | null;
|
268
|
+
v: bigint;
|
269
|
+
value: bigint;
|
270
|
+
gasPrice?: undefined;
|
271
|
+
maxFeePerGas: bigint;
|
272
|
+
maxPriorityFeePerGas: bigint;
|
273
|
+
accessList: import("../../index.js").AccessList;
|
274
|
+
chainId: number;
|
275
|
+
type: "eip1559";
|
276
|
+
isSystemTx?: undefined;
|
277
|
+
mint?: undefined;
|
278
|
+
sourceHash?: undefined;
|
279
|
+
} | {
|
280
|
+
blockHash: `0x${string}` | null;
|
281
|
+
blockNumber: bigint | null;
|
282
|
+
from: `0x${string}`;
|
283
|
+
gas: bigint;
|
284
|
+
hash: `0x${string}`;
|
285
|
+
input: `0x${string}`;
|
286
|
+
nonce: number;
|
287
|
+
r: `0x${string}`;
|
288
|
+
s: `0x${string}`;
|
289
|
+
to: `0x${string}` | null;
|
290
|
+
transactionIndex: number | null;
|
291
|
+
typeHex: `0x${string}` | null;
|
292
|
+
v: bigint;
|
293
|
+
value: bigint;
|
294
|
+
gasPrice?: undefined;
|
295
|
+
maxFeePerGas: bigint;
|
296
|
+
maxPriorityFeePerGas: bigint;
|
297
|
+
accessList: import("../../index.js").AccessList;
|
298
|
+
chainId: number;
|
299
|
+
type: "deposit";
|
300
|
+
isSystemTx?: boolean | undefined;
|
301
|
+
mint?: bigint | undefined;
|
302
|
+
sourceHash: `0x${string}`;
|
303
|
+
}) & {};
|
304
|
+
type: "transaction";
|
305
|
+
};
|
306
|
+
readonly transactionReceipt: {
|
307
|
+
exclude: [] | undefined;
|
308
|
+
format: (args: import("../../types/utils.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../optimism/types.js").OptimismRpcTransactionReceiptOverrides>) => {
|
309
|
+
blockHash: `0x${string}`;
|
310
|
+
blockNumber: bigint;
|
311
|
+
contractAddress: `0x${string}` | null;
|
312
|
+
cumulativeGasUsed: bigint;
|
313
|
+
effectiveGasPrice: bigint;
|
314
|
+
from: `0x${string}`;
|
315
|
+
gasUsed: bigint;
|
316
|
+
logs: import("../../index.js").Log<bigint, number, false>[];
|
317
|
+
logsBloom: `0x${string}`;
|
318
|
+
status: "success" | "reverted";
|
319
|
+
to: `0x${string}` | null;
|
320
|
+
transactionHash: `0x${string}`;
|
321
|
+
transactionIndex: number;
|
322
|
+
type: import("../../index.js").TransactionType;
|
323
|
+
l1GasPrice: bigint | null;
|
324
|
+
l1GasUsed: bigint | null;
|
325
|
+
l1Fee: bigint | null;
|
326
|
+
l1FeeScalar: number | null;
|
327
|
+
} & {};
|
328
|
+
type: "transactionReceipt";
|
329
|
+
};
|
330
|
+
}>>;
|
331
|
+
//# sourceMappingURL=zoraSepolia.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"zoraSepolia.d.ts","sourceRoot":"","sources":["../../../chains/definitions/zoraSepolia.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCvB,CAAA"}
|