viem 2.9.22 → 2.9.24
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 +20 -0
- package/_cjs/accounts/privateKeyToAccount.js +4 -0
- package/_cjs/accounts/privateKeyToAccount.js.map +1 -1
- package/_cjs/accounts/toAccount.js +1 -0
- package/_cjs/accounts/toAccount.js.map +1 -1
- package/_cjs/actions/public/watchBlockNumber.js +20 -2
- package/_cjs/actions/public/watchBlockNumber.js.map +1 -1
- package/_cjs/actions/public/watchBlocks.js +20 -2
- package/_cjs/actions/public/watchBlocks.js.map +1 -1
- package/_cjs/actions/public/watchContractEvent.js +22 -4
- package/_cjs/actions/public/watchContractEvent.js.map +1 -1
- package/_cjs/actions/public/watchEvent.js +22 -4
- package/_cjs/actions/public/watchEvent.js.map +1 -1
- package/_cjs/chains/definitions/cyberTestnet.js +29 -0
- package/_cjs/chains/definitions/cyberTestnet.js.map +1 -0
- package/_cjs/chains/definitions/dreyerxMainnet.js +25 -0
- package/_cjs/chains/definitions/dreyerxMainnet.js.map +1 -0
- package/_cjs/chains/index.js +9 -5
- package/_cjs/chains/index.js.map +1 -1
- package/_cjs/clients/transports/fallback.js +2 -2
- package/_cjs/clients/transports/fallback.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_cjs/experimental/eip3074/actions/signAuthMessage.js +18 -0
- package/_cjs/experimental/eip3074/actions/signAuthMessage.js.map +1 -0
- package/_cjs/experimental/eip3074/decorators/eip3074.js +13 -0
- package/_cjs/experimental/eip3074/decorators/eip3074.js.map +1 -0
- package/_cjs/experimental/eip3074/utils/recoverAuthMessageAddress.js +12 -0
- package/_cjs/experimental/eip3074/utils/recoverAuthMessageAddress.js.map +1 -0
- package/_cjs/experimental/eip3074/utils/signAuthMessage.js +17 -0
- package/_cjs/experimental/eip3074/utils/signAuthMessage.js.map +1 -0
- package/_cjs/experimental/eip3074/utils/toAuthMessage.js +17 -0
- package/_cjs/experimental/eip3074/utils/toAuthMessage.js.map +1 -0
- package/_cjs/experimental/eip3074/utils/verifyAuthMessage.js +11 -0
- package/_cjs/experimental/eip3074/utils/verifyAuthMessage.js.map +1 -0
- package/_cjs/experimental/{actions → eip5792/actions}/getCallsStatus.js +2 -2
- package/_cjs/experimental/eip5792/actions/getCallsStatus.js.map +1 -0
- package/_cjs/experimental/{actions → eip5792/actions}/getCapabilities.js +2 -2
- package/_cjs/experimental/eip5792/actions/getCapabilities.js.map +1 -0
- package/_cjs/experimental/{actions → eip5792/actions}/sendCalls.js +6 -6
- package/_cjs/experimental/eip5792/actions/sendCalls.js.map +1 -0
- package/_cjs/experimental/eip5792/actions/showCallsStatus.js.map +1 -0
- package/_cjs/experimental/{actions → eip5792/actions}/writeContracts.js +1 -1
- package/_cjs/experimental/eip5792/actions/writeContracts.js.map +1 -0
- package/_cjs/experimental/eip5792/decorators/eip5792.js.map +1 -0
- package/_cjs/experimental/index.js +15 -7
- package/_cjs/experimental/index.js.map +1 -1
- package/_cjs/utils/signature/hexToSignature.js.map +1 -1
- package/_esm/accounts/privateKeyToAccount.js +4 -0
- package/_esm/accounts/privateKeyToAccount.js.map +1 -1
- package/_esm/accounts/toAccount.js +1 -0
- package/_esm/accounts/toAccount.js.map +1 -1
- package/_esm/actions/public/verifyHash.js +1 -1
- package/_esm/actions/public/waitForTransactionReceipt.js +1 -1
- package/_esm/actions/public/watchBlockNumber.js +20 -2
- package/_esm/actions/public/watchBlockNumber.js.map +1 -1
- package/_esm/actions/public/watchBlocks.js +20 -2
- package/_esm/actions/public/watchBlocks.js.map +1 -1
- package/_esm/actions/public/watchContractEvent.js +22 -4
- package/_esm/actions/public/watchContractEvent.js.map +1 -1
- package/_esm/actions/public/watchEvent.js +22 -4
- package/_esm/actions/public/watchEvent.js.map +1 -1
- package/_esm/chains/definitions/cyberTestnet.js +26 -0
- package/_esm/chains/definitions/cyberTestnet.js.map +1 -0
- package/_esm/chains/definitions/dreyerxMainnet.js +22 -0
- package/_esm/chains/definitions/dreyerxMainnet.js.map +1 -0
- package/_esm/chains/index.js +2 -0
- package/_esm/chains/index.js.map +1 -1
- package/_esm/clients/transports/fallback.js +2 -2
- package/_esm/clients/transports/fallback.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_esm/experimental/eip3074/actions/signAuthMessage.js +69 -0
- package/_esm/experimental/eip3074/actions/signAuthMessage.js.map +1 -0
- package/_esm/experimental/eip3074/decorators/eip3074.js +26 -0
- package/_esm/experimental/eip3074/decorators/eip3074.js.map +1 -0
- package/_esm/experimental/eip3074/utils/recoverAuthMessageAddress.js +8 -0
- package/_esm/experimental/eip3074/utils/recoverAuthMessageAddress.js.map +1 -0
- package/_esm/experimental/eip3074/utils/signAuthMessage.js +16 -0
- package/_esm/experimental/eip3074/utils/signAuthMessage.js.map +1 -0
- package/_esm/experimental/eip3074/utils/toAuthMessage.js +17 -0
- package/_esm/experimental/eip3074/utils/toAuthMessage.js.map +1 -0
- package/_esm/experimental/eip3074/utils/verifyAuthMessage.js +13 -0
- package/_esm/experimental/eip3074/utils/verifyAuthMessage.js.map +1 -0
- package/_esm/experimental/{actions → eip5792/actions}/getCallsStatus.js +3 -3
- package/_esm/experimental/eip5792/actions/getCallsStatus.js.map +1 -0
- package/_esm/experimental/{actions → eip5792/actions}/getCapabilities.js +3 -3
- package/_esm/experimental/eip5792/actions/getCapabilities.js.map +1 -0
- package/_esm/experimental/{actions → eip5792/actions}/sendCalls.js +7 -7
- package/_esm/experimental/eip5792/actions/sendCalls.js.map +1 -0
- package/_esm/experimental/{actions → eip5792/actions}/showCallsStatus.js +1 -1
- package/_esm/experimental/eip5792/actions/showCallsStatus.js.map +1 -0
- package/_esm/experimental/{actions → eip5792/actions}/writeContracts.js +2 -2
- package/_esm/experimental/eip5792/actions/writeContracts.js.map +1 -0
- package/_esm/experimental/eip5792/decorators/eip5792.js.map +1 -0
- package/_esm/experimental/index.js +10 -6
- package/_esm/experimental/index.js.map +1 -1
- package/_esm/utils/signature/hexToSignature.js.map +1 -1
- package/_types/accounts/privateKeyToAccount.d.ts.map +1 -1
- package/_types/accounts/toAccount.d.ts.map +1 -1
- package/_types/accounts/types.d.ts +5 -3
- package/_types/accounts/types.d.ts.map +1 -1
- package/_types/actions/public/verifyHash.d.ts +1 -1
- package/_types/actions/public/waitForTransactionReceipt.d.ts +1 -1
- package/_types/actions/public/watchBlockNumber.d.ts +2 -2
- package/_types/actions/public/watchBlockNumber.d.ts.map +1 -1
- package/_types/actions/public/watchBlocks.d.ts +2 -2
- package/_types/actions/public/watchBlocks.d.ts.map +1 -1
- package/_types/actions/public/watchContractEvent.d.ts.map +1 -1
- package/_types/actions/public/watchEvent.d.ts.map +1 -1
- package/_types/celo/chainConfig.d.ts +114 -114
- package/_types/celo/formatters.d.ts +57 -57
- package/_types/chains/definitions/ancient8.d.ts +45 -45
- package/_types/chains/definitions/ancient8Sepolia.d.ts +45 -45
- package/_types/chains/definitions/base.d.ts +45 -45
- package/_types/chains/definitions/baseGoerli.d.ts +45 -45
- package/_types/chains/definitions/baseSepolia.d.ts +45 -45
- package/_types/chains/definitions/celo.d.ts +114 -114
- package/_types/chains/definitions/celoAlfajores.d.ts +114 -114
- package/_types/chains/definitions/cyberTestnet.d.ts +34 -0
- package/_types/chains/definitions/cyberTestnet.d.ts.map +1 -0
- package/_types/chains/definitions/dreyerxMainnet.d.ts +35 -0
- package/_types/chains/definitions/dreyerxMainnet.d.ts.map +1 -0
- package/_types/chains/definitions/fraxtal.d.ts +45 -45
- package/_types/chains/definitions/fraxtalTestnet.d.ts +45 -45
- package/_types/chains/definitions/liskSepolia.d.ts +45 -45
- package/_types/chains/definitions/optimism.d.ts +45 -45
- package/_types/chains/definitions/optimismGoerli.d.ts +45 -45
- package/_types/chains/definitions/optimismSepolia.d.ts +45 -45
- package/_types/chains/definitions/pgn.d.ts +45 -45
- package/_types/chains/definitions/pgnTestnet.d.ts +45 -45
- package/_types/chains/definitions/rss3.d.ts +45 -45
- package/_types/chains/definitions/rss3Sepolia.d.ts +45 -45
- package/_types/chains/definitions/zora.d.ts +45 -45
- package/_types/chains/definitions/zoraSepolia.d.ts +45 -45
- package/_types/chains/definitions/zoraTestnet.d.ts +45 -45
- package/_types/chains/index.d.ts +2 -0
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/clients/transports/fallback.d.ts +5 -3
- package/_types/clients/transports/fallback.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/experimental/eip3074/actions/signAuthMessage.d.ts +72 -0
- package/_types/experimental/eip3074/actions/signAuthMessage.d.ts.map +1 -0
- package/_types/experimental/eip3074/decorators/eip3074.d.ts +27 -0
- package/_types/experimental/eip3074/decorators/eip3074.d.ts.map +1 -0
- package/_types/experimental/eip3074/utils/recoverAuthMessageAddress.d.ts +12 -0
- package/_types/experimental/eip3074/utils/recoverAuthMessageAddress.d.ts.map +1 -0
- package/_types/experimental/eip3074/utils/signAuthMessage.d.ts +16 -0
- package/_types/experimental/eip3074/utils/signAuthMessage.d.ts.map +1 -0
- package/_types/experimental/eip3074/utils/toAuthMessage.d.ts +20 -0
- package/_types/experimental/eip3074/utils/toAuthMessage.d.ts.map +1 -0
- package/_types/experimental/eip3074/utils/verifyAuthMessage.d.ts +19 -0
- package/_types/experimental/eip3074/utils/verifyAuthMessage.d.ts.map +1 -0
- package/_types/experimental/{actions → eip5792/actions}/getCallsStatus.d.ts +9 -9
- package/_types/experimental/eip5792/actions/getCallsStatus.d.ts.map +1 -0
- package/_types/experimental/{actions → eip5792/actions}/getCapabilities.d.ts +9 -9
- package/_types/experimental/eip5792/actions/getCapabilities.d.ts.map +1 -0
- package/_types/experimental/{actions → eip5792/actions}/sendCalls.d.ts +10 -10
- package/_types/experimental/eip5792/actions/sendCalls.d.ts.map +1 -0
- package/_types/experimental/{actions → eip5792/actions}/showCallsStatus.d.ts +7 -7
- package/_types/experimental/eip5792/actions/showCallsStatus.d.ts.map +1 -0
- package/_types/experimental/{actions → eip5792/actions}/writeContracts.d.ts +9 -9
- package/_types/experimental/eip5792/actions/writeContracts.d.ts.map +1 -0
- package/_types/experimental/{decorators → eip5792/decorators}/eip5792.d.ts +9 -9
- package/_types/experimental/eip5792/decorators/eip5792.d.ts.map +1 -0
- package/_types/experimental/index.d.ts +10 -6
- package/_types/experimental/index.d.ts.map +1 -1
- package/_types/op-stack/chainConfig.d.ts +45 -45
- package/_types/op-stack/formatters.d.ts +45 -45
- package/_types/types/transport.d.ts +6 -1
- package/_types/types/transport.d.ts.map +1 -1
- package/_types/types/utils.d.ts +11 -0
- package/_types/types/utils.d.ts.map +1 -1
- package/_types/utils/formatters/transaction.d.ts +1 -1
- package/_types/utils/formatters/transactionRequest.d.ts +1 -1
- package/_types/utils/signature/hexToSignature.d.ts +7 -2
- package/_types/utils/signature/hexToSignature.d.ts.map +1 -1
- package/accounts/privateKeyToAccount.ts +5 -1
- package/accounts/toAccount.ts +1 -0
- package/accounts/types.ts +12 -5
- package/actions/public/verifyHash.ts +1 -1
- package/actions/public/waitForTransactionReceipt.ts +1 -1
- package/actions/public/watchBlockNumber.ts +36 -17
- package/actions/public/watchBlocks.ts +25 -5
- package/actions/public/watchContractEvent.ts +66 -48
- package/actions/public/watchEvent.ts +24 -5
- package/chains/definitions/cyberTestnet.ts +26 -0
- package/chains/definitions/dreyerxMainnet.ts +22 -0
- package/chains/index.ts +2 -0
- package/clients/transports/fallback.ts +16 -13
- package/errors/version.ts +1 -1
- package/experimental/eip3074/actions/signAuthMessage.ts +103 -0
- package/experimental/eip3074/decorators/eip3074.ts +51 -0
- package/experimental/eip3074/utils/recoverAuthMessageAddress.ts +29 -0
- package/experimental/eip3074/utils/signAuthMessage.ts +40 -0
- package/experimental/eip3074/utils/toAuthMessage.ts +50 -0
- package/experimental/eip3074/utils/verifyAuthMessage.ts +46 -0
- package/experimental/{actions → eip5792/actions}/getCallsStatus.ts +11 -11
- package/experimental/{actions → eip5792/actions}/getCapabilities.ts +11 -11
- package/experimental/{actions → eip5792/actions}/sendCalls.ts +17 -17
- package/experimental/{actions → eip5792/actions}/showCallsStatus.ts +7 -7
- package/experimental/{actions → eip5792/actions}/writeContracts.ts +9 -9
- package/experimental/{decorators → eip5792/decorators}/eip5792.ts +9 -9
- package/experimental/index.ts +29 -7
- package/package.json +1 -1
- package/types/transport.ts +16 -1
- package/types/utils.ts +16 -0
- package/utils/signature/hexToSignature.ts +2 -2
- package/_cjs/experimental/actions/getCallsStatus.js.map +0 -1
- package/_cjs/experimental/actions/getCapabilities.js.map +0 -1
- package/_cjs/experimental/actions/sendCalls.js.map +0 -1
- package/_cjs/experimental/actions/showCallsStatus.js.map +0 -1
- package/_cjs/experimental/actions/writeContracts.js.map +0 -1
- package/_cjs/experimental/decorators/eip5792.js.map +0 -1
- package/_esm/experimental/actions/getCallsStatus.js.map +0 -1
- package/_esm/experimental/actions/getCapabilities.js.map +0 -1
- package/_esm/experimental/actions/sendCalls.js.map +0 -1
- package/_esm/experimental/actions/showCallsStatus.js.map +0 -1
- package/_esm/experimental/actions/writeContracts.js.map +0 -1
- package/_esm/experimental/decorators/eip5792.js.map +0 -1
- package/_types/experimental/actions/getCallsStatus.d.ts.map +0 -1
- package/_types/experimental/actions/getCapabilities.d.ts.map +0 -1
- package/_types/experimental/actions/sendCalls.d.ts.map +0 -1
- package/_types/experimental/actions/showCallsStatus.d.ts.map +0 -1
- package/_types/experimental/actions/writeContracts.d.ts.map +0 -1
- package/_types/experimental/decorators/eip5792.d.ts.map +0 -1
- /package/_cjs/experimental/{actions → eip5792/actions}/showCallsStatus.js +0 -0
- /package/_cjs/experimental/{decorators → eip5792/decorators}/eip5792.js +0 -0
- /package/_esm/experimental/{decorators → eip5792/decorators}/eip5792.js +0 -0
@@ -104,19 +104,19 @@ export declare const ancient8Sepolia: {
|
|
104
104
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
105
105
|
maxFeePerGas?: `0x${string}` | undefined;
|
106
106
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
107
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
107
108
|
to?: `0x${string}` | null;
|
108
109
|
from?: `0x${string}`;
|
109
110
|
gas?: `0x${string}`;
|
110
111
|
nonce?: `0x${string}`;
|
111
112
|
value?: `0x${string}`;
|
112
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
113
|
-
accessList?: undefined;
|
114
|
-
blobVersionedHashes?: undefined;
|
115
113
|
blockHash?: `0x${string}` | null;
|
116
114
|
blockNumber?: `0x${string}` | null;
|
117
115
|
hash?: `0x${string}`;
|
118
116
|
input?: `0x${string}`;
|
119
117
|
transactionIndex?: `0x${string}` | null;
|
118
|
+
accessList?: undefined;
|
119
|
+
blobVersionedHashes?: undefined;
|
120
120
|
chainId?: `0x${string}` | undefined;
|
121
121
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
122
122
|
r: `0x${string}`;
|
@@ -155,19 +155,19 @@ export declare const ancient8Sepolia: {
|
|
155
155
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
156
156
|
maxFeePerGas?: `0x${string}` | undefined;
|
157
157
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
158
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
158
159
|
to?: `0x${string}` | null;
|
159
160
|
from?: `0x${string}`;
|
160
161
|
gas?: `0x${string}`;
|
161
162
|
nonce?: `0x${string}`;
|
162
163
|
value?: `0x${string}`;
|
163
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
164
|
-
accessList?: undefined;
|
165
|
-
blobVersionedHashes?: undefined;
|
166
164
|
blockHash?: `0x${string}` | null;
|
167
165
|
blockNumber?: `0x${string}` | null;
|
168
166
|
hash?: `0x${string}`;
|
169
167
|
input?: `0x${string}`;
|
170
168
|
transactionIndex?: `0x${string}` | null;
|
169
|
+
accessList?: undefined;
|
170
|
+
blobVersionedHashes?: undefined;
|
171
171
|
chainId?: `0x${string}` | undefined;
|
172
172
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
173
173
|
isSystemTx?: boolean | undefined;
|
@@ -183,19 +183,19 @@ export declare const ancient8Sepolia: {
|
|
183
183
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
184
184
|
maxFeePerGas?: `0x${string}` | undefined;
|
185
185
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
186
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
186
187
|
to?: `0x${string}` | null;
|
187
188
|
from?: `0x${string}`;
|
188
189
|
gas?: `0x${string}`;
|
189
190
|
nonce?: `0x${string}`;
|
190
191
|
value?: `0x${string}`;
|
191
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
192
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
193
|
-
blobVersionedHashes?: undefined;
|
194
192
|
blockHash?: `0x${string}` | null;
|
195
193
|
blockNumber?: `0x${string}` | null;
|
196
194
|
hash?: `0x${string}`;
|
197
195
|
input?: `0x${string}`;
|
198
196
|
transactionIndex?: `0x${string}` | null;
|
197
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
198
|
+
blobVersionedHashes?: undefined;
|
199
199
|
chainId?: `0x${string}` | undefined;
|
200
200
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
201
201
|
r: `0x${string}`;
|
@@ -234,19 +234,19 @@ export declare const ancient8Sepolia: {
|
|
234
234
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
235
235
|
maxFeePerGas?: `0x${string}` | undefined;
|
236
236
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
237
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
237
238
|
to?: `0x${string}` | null;
|
238
239
|
from?: `0x${string}`;
|
239
240
|
gas?: `0x${string}`;
|
240
241
|
nonce?: `0x${string}`;
|
241
242
|
value?: `0x${string}`;
|
242
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
243
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
244
|
-
blobVersionedHashes?: undefined;
|
245
243
|
blockHash?: `0x${string}` | null;
|
246
244
|
blockNumber?: `0x${string}` | null;
|
247
245
|
hash?: `0x${string}`;
|
248
246
|
input?: `0x${string}`;
|
249
247
|
transactionIndex?: `0x${string}` | null;
|
248
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
249
|
+
blobVersionedHashes?: undefined;
|
250
250
|
chainId?: `0x${string}` | undefined;
|
251
251
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
252
252
|
blockHash: `0x${string}` | null;
|
@@ -285,19 +285,19 @@ export declare const ancient8Sepolia: {
|
|
285
285
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
286
286
|
maxFeePerGas?: `0x${string}` | undefined;
|
287
287
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
288
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
288
289
|
to?: `0x${string}` | null;
|
289
290
|
from?: `0x${string}`;
|
290
291
|
gas?: `0x${string}`;
|
291
292
|
nonce?: `0x${string}`;
|
292
293
|
value?: `0x${string}`;
|
293
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
294
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
295
|
-
blobVersionedHashes?: undefined;
|
296
294
|
blockHash?: `0x${string}` | null;
|
297
295
|
blockNumber?: `0x${string}` | null;
|
298
296
|
hash?: `0x${string}`;
|
299
297
|
input?: `0x${string}`;
|
300
298
|
transactionIndex?: `0x${string}` | null;
|
299
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
300
|
+
blobVersionedHashes?: undefined;
|
301
301
|
chainId?: `0x${string}` | undefined;
|
302
302
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
303
303
|
blockHash: `0x${string}` | null;
|
@@ -336,19 +336,19 @@ export declare const ancient8Sepolia: {
|
|
336
336
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
337
337
|
maxFeePerGas?: `0x${string}` | undefined;
|
338
338
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
339
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
339
340
|
to?: `0x${string}` | null;
|
340
341
|
from?: `0x${string}`;
|
341
342
|
gas?: `0x${string}`;
|
342
343
|
nonce?: `0x${string}`;
|
343
344
|
value?: `0x${string}`;
|
344
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
345
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
346
|
-
blobVersionedHashes?: undefined;
|
347
345
|
blockHash?: `0x${string}` | null;
|
348
346
|
blockNumber?: `0x${string}` | null;
|
349
347
|
hash?: `0x${string}`;
|
350
348
|
input?: `0x${string}`;
|
351
349
|
transactionIndex?: `0x${string}` | null;
|
350
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
351
|
+
blobVersionedHashes?: undefined;
|
352
352
|
chainId?: `0x${string}` | undefined;
|
353
353
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
354
354
|
isSystemTx?: boolean | undefined;
|
@@ -364,19 +364,19 @@ export declare const ancient8Sepolia: {
|
|
364
364
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
365
365
|
maxFeePerGas?: `0x${string}` | undefined;
|
366
366
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
367
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
367
368
|
to?: `0x${string}` | null;
|
368
369
|
from?: `0x${string}`;
|
369
370
|
gas?: `0x${string}`;
|
370
371
|
nonce?: `0x${string}`;
|
371
372
|
value?: `0x${string}`;
|
372
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
373
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
374
|
-
blobVersionedHashes?: undefined;
|
375
373
|
blockHash?: `0x${string}` | null;
|
376
374
|
blockNumber?: `0x${string}` | null;
|
377
375
|
hash?: `0x${string}`;
|
378
376
|
input?: `0x${string}`;
|
379
377
|
transactionIndex?: `0x${string}` | null;
|
378
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
379
|
+
blobVersionedHashes?: undefined;
|
380
380
|
chainId?: `0x${string}` | undefined;
|
381
381
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
382
382
|
r: `0x${string}`;
|
@@ -415,19 +415,19 @@ export declare const ancient8Sepolia: {
|
|
415
415
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
416
416
|
maxFeePerGas?: `0x${string}` | undefined;
|
417
417
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
418
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
418
419
|
to?: `0x${string}` | null;
|
419
420
|
from?: `0x${string}`;
|
420
421
|
gas?: `0x${string}`;
|
421
422
|
nonce?: `0x${string}`;
|
422
423
|
value?: `0x${string}`;
|
423
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
424
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
425
|
-
blobVersionedHashes?: undefined;
|
426
424
|
blockHash?: `0x${string}` | null;
|
427
425
|
blockNumber?: `0x${string}` | null;
|
428
426
|
hash?: `0x${string}`;
|
429
427
|
input?: `0x${string}`;
|
430
428
|
transactionIndex?: `0x${string}` | null;
|
429
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
430
|
+
blobVersionedHashes?: undefined;
|
431
431
|
chainId?: `0x${string}` | undefined;
|
432
432
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
433
433
|
blockHash: `0x${string}` | null;
|
@@ -466,19 +466,19 @@ export declare const ancient8Sepolia: {
|
|
466
466
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
467
467
|
maxFeePerGas?: `0x${string}` | undefined;
|
468
468
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
469
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
469
470
|
to?: `0x${string}` | null;
|
470
471
|
from?: `0x${string}`;
|
471
472
|
gas?: `0x${string}`;
|
472
473
|
nonce?: `0x${string}`;
|
473
474
|
value?: `0x${string}`;
|
474
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
475
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
476
|
-
blobVersionedHashes?: undefined;
|
477
475
|
blockHash?: `0x${string}` | null;
|
478
476
|
blockNumber?: `0x${string}` | null;
|
479
477
|
hash?: `0x${string}`;
|
480
478
|
input?: `0x${string}`;
|
481
479
|
transactionIndex?: `0x${string}` | null;
|
480
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
481
|
+
blobVersionedHashes?: undefined;
|
482
482
|
chainId?: `0x${string}` | undefined;
|
483
483
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
484
484
|
blockHash: `0x${string}` | null;
|
@@ -517,19 +517,19 @@ export declare const ancient8Sepolia: {
|
|
517
517
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
518
518
|
maxFeePerGas?: `0x${string}` | undefined;
|
519
519
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
520
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
520
521
|
to?: `0x${string}` | null;
|
521
522
|
from?: `0x${string}`;
|
522
523
|
gas?: `0x${string}`;
|
523
524
|
nonce?: `0x${string}`;
|
524
525
|
value?: `0x${string}`;
|
525
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
526
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
527
|
-
blobVersionedHashes?: undefined;
|
528
526
|
blockHash?: `0x${string}` | null;
|
529
527
|
blockNumber?: `0x${string}` | null;
|
530
528
|
hash?: `0x${string}`;
|
531
529
|
input?: `0x${string}`;
|
532
530
|
transactionIndex?: `0x${string}` | null;
|
531
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
532
|
+
blobVersionedHashes?: undefined;
|
533
533
|
chainId?: `0x${string}` | undefined;
|
534
534
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
535
535
|
isSystemTx?: boolean | undefined;
|
@@ -545,19 +545,19 @@ export declare const ancient8Sepolia: {
|
|
545
545
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
546
546
|
maxFeePerGas?: `0x${string}` | undefined;
|
547
547
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
548
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
548
549
|
to?: `0x${string}` | null;
|
549
550
|
from?: `0x${string}`;
|
550
551
|
gas?: `0x${string}`;
|
551
552
|
nonce?: `0x${string}`;
|
552
553
|
value?: `0x${string}`;
|
553
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
554
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
555
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
556
554
|
blockHash?: `0x${string}` | null;
|
557
555
|
blockNumber?: `0x${string}` | null;
|
558
556
|
hash?: `0x${string}`;
|
559
557
|
input?: `0x${string}`;
|
560
558
|
transactionIndex?: `0x${string}` | null;
|
559
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
560
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
561
561
|
chainId?: `0x${string}` | undefined;
|
562
562
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
563
563
|
r: `0x${string}`;
|
@@ -596,19 +596,19 @@ export declare const ancient8Sepolia: {
|
|
596
596
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
597
597
|
maxFeePerGas?: `0x${string}` | undefined;
|
598
598
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
599
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
599
600
|
to?: `0x${string}` | null;
|
600
601
|
from?: `0x${string}`;
|
601
602
|
gas?: `0x${string}`;
|
602
603
|
nonce?: `0x${string}`;
|
603
604
|
value?: `0x${string}`;
|
604
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
605
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
606
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
607
605
|
blockHash?: `0x${string}` | null;
|
608
606
|
blockNumber?: `0x${string}` | null;
|
609
607
|
hash?: `0x${string}`;
|
610
608
|
input?: `0x${string}`;
|
611
609
|
transactionIndex?: `0x${string}` | null;
|
610
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
611
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
612
612
|
chainId?: `0x${string}` | undefined;
|
613
613
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
614
614
|
blockHash: `0x${string}` | null;
|
@@ -647,19 +647,19 @@ export declare const ancient8Sepolia: {
|
|
647
647
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
648
648
|
maxFeePerGas?: `0x${string}` | undefined;
|
649
649
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
650
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
650
651
|
to?: `0x${string}` | null;
|
651
652
|
from?: `0x${string}`;
|
652
653
|
gas?: `0x${string}`;
|
653
654
|
nonce?: `0x${string}`;
|
654
655
|
value?: `0x${string}`;
|
655
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
656
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
657
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
658
656
|
blockHash?: `0x${string}` | null;
|
659
657
|
blockNumber?: `0x${string}` | null;
|
660
658
|
hash?: `0x${string}`;
|
661
659
|
input?: `0x${string}`;
|
662
660
|
transactionIndex?: `0x${string}` | null;
|
661
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
662
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
663
663
|
chainId?: `0x${string}` | undefined;
|
664
664
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
665
665
|
blockHash: `0x${string}` | null;
|
@@ -698,19 +698,19 @@ export declare const ancient8Sepolia: {
|
|
698
698
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
699
699
|
maxFeePerGas?: `0x${string}` | undefined;
|
700
700
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
701
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
701
702
|
to?: `0x${string}` | null;
|
702
703
|
from?: `0x${string}`;
|
703
704
|
gas?: `0x${string}`;
|
704
705
|
nonce?: `0x${string}`;
|
705
706
|
value?: `0x${string}`;
|
706
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
707
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
708
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
709
707
|
blockHash?: `0x${string}` | null;
|
710
708
|
blockNumber?: `0x${string}` | null;
|
711
709
|
hash?: `0x${string}`;
|
712
710
|
input?: `0x${string}`;
|
713
711
|
transactionIndex?: `0x${string}` | null;
|
712
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
713
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
714
714
|
chainId?: `0x${string}` | undefined;
|
715
715
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
716
716
|
blockHash: `0x${string}` | null;
|
@@ -749,19 +749,19 @@ export declare const ancient8Sepolia: {
|
|
749
749
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
750
750
|
maxFeePerGas?: `0x${string}` | undefined;
|
751
751
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
752
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
752
753
|
to?: `0x${string}` | null;
|
753
754
|
from?: `0x${string}`;
|
754
755
|
gas?: `0x${string}`;
|
755
756
|
nonce?: `0x${string}`;
|
756
757
|
value?: `0x${string}`;
|
757
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
758
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
759
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
760
758
|
blockHash?: `0x${string}` | null;
|
761
759
|
blockNumber?: `0x${string}` | null;
|
762
760
|
hash?: `0x${string}`;
|
763
761
|
input?: `0x${string}`;
|
764
762
|
transactionIndex?: `0x${string}` | null;
|
763
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
764
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
765
765
|
chainId?: `0x${string}` | undefined;
|
766
766
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
767
767
|
isSystemTx?: boolean | undefined;
|