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
@@ -105,19 +105,19 @@ export declare const liskSepolia: {
|
|
105
105
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
106
106
|
maxFeePerGas?: `0x${string}` | undefined;
|
107
107
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
108
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
108
109
|
to?: `0x${string}` | null;
|
109
110
|
from?: `0x${string}`;
|
110
111
|
gas?: `0x${string}`;
|
111
112
|
nonce?: `0x${string}`;
|
112
113
|
value?: `0x${string}`;
|
113
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
114
|
-
accessList?: undefined;
|
115
|
-
blobVersionedHashes?: undefined;
|
116
114
|
blockHash?: `0x${string}` | null;
|
117
115
|
blockNumber?: `0x${string}` | null;
|
118
116
|
hash?: `0x${string}`;
|
119
117
|
input?: `0x${string}`;
|
120
118
|
transactionIndex?: `0x${string}` | null;
|
119
|
+
accessList?: undefined;
|
120
|
+
blobVersionedHashes?: undefined;
|
121
121
|
chainId?: `0x${string}` | undefined;
|
122
122
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
123
123
|
r: `0x${string}`;
|
@@ -156,19 +156,19 @@ export declare const liskSepolia: {
|
|
156
156
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
157
157
|
maxFeePerGas?: `0x${string}` | undefined;
|
158
158
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
159
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
159
160
|
to?: `0x${string}` | null;
|
160
161
|
from?: `0x${string}`;
|
161
162
|
gas?: `0x${string}`;
|
162
163
|
nonce?: `0x${string}`;
|
163
164
|
value?: `0x${string}`;
|
164
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
165
|
-
accessList?: undefined;
|
166
|
-
blobVersionedHashes?: undefined;
|
167
165
|
blockHash?: `0x${string}` | null;
|
168
166
|
blockNumber?: `0x${string}` | null;
|
169
167
|
hash?: `0x${string}`;
|
170
168
|
input?: `0x${string}`;
|
171
169
|
transactionIndex?: `0x${string}` | null;
|
170
|
+
accessList?: undefined;
|
171
|
+
blobVersionedHashes?: undefined;
|
172
172
|
chainId?: `0x${string}` | undefined;
|
173
173
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
174
174
|
isSystemTx?: boolean | undefined;
|
@@ -184,19 +184,19 @@ export declare const liskSepolia: {
|
|
184
184
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
185
185
|
maxFeePerGas?: `0x${string}` | undefined;
|
186
186
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
187
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
187
188
|
to?: `0x${string}` | null;
|
188
189
|
from?: `0x${string}`;
|
189
190
|
gas?: `0x${string}`;
|
190
191
|
nonce?: `0x${string}`;
|
191
192
|
value?: `0x${string}`;
|
192
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
193
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
194
|
-
blobVersionedHashes?: undefined;
|
195
193
|
blockHash?: `0x${string}` | null;
|
196
194
|
blockNumber?: `0x${string}` | null;
|
197
195
|
hash?: `0x${string}`;
|
198
196
|
input?: `0x${string}`;
|
199
197
|
transactionIndex?: `0x${string}` | null;
|
198
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
199
|
+
blobVersionedHashes?: undefined;
|
200
200
|
chainId?: `0x${string}` | undefined;
|
201
201
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
202
202
|
r: `0x${string}`;
|
@@ -235,19 +235,19 @@ export declare const liskSepolia: {
|
|
235
235
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
236
236
|
maxFeePerGas?: `0x${string}` | undefined;
|
237
237
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
238
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
238
239
|
to?: `0x${string}` | null;
|
239
240
|
from?: `0x${string}`;
|
240
241
|
gas?: `0x${string}`;
|
241
242
|
nonce?: `0x${string}`;
|
242
243
|
value?: `0x${string}`;
|
243
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
244
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
245
|
-
blobVersionedHashes?: undefined;
|
246
244
|
blockHash?: `0x${string}` | null;
|
247
245
|
blockNumber?: `0x${string}` | null;
|
248
246
|
hash?: `0x${string}`;
|
249
247
|
input?: `0x${string}`;
|
250
248
|
transactionIndex?: `0x${string}` | null;
|
249
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
250
|
+
blobVersionedHashes?: undefined;
|
251
251
|
chainId?: `0x${string}` | undefined;
|
252
252
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
253
253
|
blockHash: `0x${string}` | null;
|
@@ -286,19 +286,19 @@ export declare const liskSepolia: {
|
|
286
286
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
287
287
|
maxFeePerGas?: `0x${string}` | undefined;
|
288
288
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
289
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
289
290
|
to?: `0x${string}` | null;
|
290
291
|
from?: `0x${string}`;
|
291
292
|
gas?: `0x${string}`;
|
292
293
|
nonce?: `0x${string}`;
|
293
294
|
value?: `0x${string}`;
|
294
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
295
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
296
|
-
blobVersionedHashes?: undefined;
|
297
295
|
blockHash?: `0x${string}` | null;
|
298
296
|
blockNumber?: `0x${string}` | null;
|
299
297
|
hash?: `0x${string}`;
|
300
298
|
input?: `0x${string}`;
|
301
299
|
transactionIndex?: `0x${string}` | null;
|
300
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
301
|
+
blobVersionedHashes?: undefined;
|
302
302
|
chainId?: `0x${string}` | undefined;
|
303
303
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
304
304
|
blockHash: `0x${string}` | null;
|
@@ -337,19 +337,19 @@ export declare const liskSepolia: {
|
|
337
337
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
338
338
|
maxFeePerGas?: `0x${string}` | undefined;
|
339
339
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
340
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
340
341
|
to?: `0x${string}` | null;
|
341
342
|
from?: `0x${string}`;
|
342
343
|
gas?: `0x${string}`;
|
343
344
|
nonce?: `0x${string}`;
|
344
345
|
value?: `0x${string}`;
|
345
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
346
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
347
|
-
blobVersionedHashes?: undefined;
|
348
346
|
blockHash?: `0x${string}` | null;
|
349
347
|
blockNumber?: `0x${string}` | null;
|
350
348
|
hash?: `0x${string}`;
|
351
349
|
input?: `0x${string}`;
|
352
350
|
transactionIndex?: `0x${string}` | null;
|
351
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
352
|
+
blobVersionedHashes?: undefined;
|
353
353
|
chainId?: `0x${string}` | undefined;
|
354
354
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
355
355
|
isSystemTx?: boolean | undefined;
|
@@ -365,19 +365,19 @@ export declare const liskSepolia: {
|
|
365
365
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
366
366
|
maxFeePerGas?: `0x${string}` | undefined;
|
367
367
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
368
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
368
369
|
to?: `0x${string}` | null;
|
369
370
|
from?: `0x${string}`;
|
370
371
|
gas?: `0x${string}`;
|
371
372
|
nonce?: `0x${string}`;
|
372
373
|
value?: `0x${string}`;
|
373
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
374
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
375
|
-
blobVersionedHashes?: undefined;
|
376
374
|
blockHash?: `0x${string}` | null;
|
377
375
|
blockNumber?: `0x${string}` | null;
|
378
376
|
hash?: `0x${string}`;
|
379
377
|
input?: `0x${string}`;
|
380
378
|
transactionIndex?: `0x${string}` | null;
|
379
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
380
|
+
blobVersionedHashes?: undefined;
|
381
381
|
chainId?: `0x${string}` | undefined;
|
382
382
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
383
383
|
r: `0x${string}`;
|
@@ -416,19 +416,19 @@ export declare const liskSepolia: {
|
|
416
416
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
417
417
|
maxFeePerGas?: `0x${string}` | undefined;
|
418
418
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
419
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
419
420
|
to?: `0x${string}` | null;
|
420
421
|
from?: `0x${string}`;
|
421
422
|
gas?: `0x${string}`;
|
422
423
|
nonce?: `0x${string}`;
|
423
424
|
value?: `0x${string}`;
|
424
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
425
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
426
|
-
blobVersionedHashes?: undefined;
|
427
425
|
blockHash?: `0x${string}` | null;
|
428
426
|
blockNumber?: `0x${string}` | null;
|
429
427
|
hash?: `0x${string}`;
|
430
428
|
input?: `0x${string}`;
|
431
429
|
transactionIndex?: `0x${string}` | null;
|
430
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
431
|
+
blobVersionedHashes?: undefined;
|
432
432
|
chainId?: `0x${string}` | undefined;
|
433
433
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
434
434
|
blockHash: `0x${string}` | null;
|
@@ -467,19 +467,19 @@ export declare const liskSepolia: {
|
|
467
467
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
468
468
|
maxFeePerGas?: `0x${string}` | undefined;
|
469
469
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
470
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
470
471
|
to?: `0x${string}` | null;
|
471
472
|
from?: `0x${string}`;
|
472
473
|
gas?: `0x${string}`;
|
473
474
|
nonce?: `0x${string}`;
|
474
475
|
value?: `0x${string}`;
|
475
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
476
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
477
|
-
blobVersionedHashes?: undefined;
|
478
476
|
blockHash?: `0x${string}` | null;
|
479
477
|
blockNumber?: `0x${string}` | null;
|
480
478
|
hash?: `0x${string}`;
|
481
479
|
input?: `0x${string}`;
|
482
480
|
transactionIndex?: `0x${string}` | null;
|
481
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
482
|
+
blobVersionedHashes?: undefined;
|
483
483
|
chainId?: `0x${string}` | undefined;
|
484
484
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
485
485
|
blockHash: `0x${string}` | null;
|
@@ -518,19 +518,19 @@ export declare const liskSepolia: {
|
|
518
518
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
519
519
|
maxFeePerGas?: `0x${string}` | undefined;
|
520
520
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
521
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
521
522
|
to?: `0x${string}` | null;
|
522
523
|
from?: `0x${string}`;
|
523
524
|
gas?: `0x${string}`;
|
524
525
|
nonce?: `0x${string}`;
|
525
526
|
value?: `0x${string}`;
|
526
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
527
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
528
|
-
blobVersionedHashes?: undefined;
|
529
527
|
blockHash?: `0x${string}` | null;
|
530
528
|
blockNumber?: `0x${string}` | null;
|
531
529
|
hash?: `0x${string}`;
|
532
530
|
input?: `0x${string}`;
|
533
531
|
transactionIndex?: `0x${string}` | null;
|
532
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
533
|
+
blobVersionedHashes?: undefined;
|
534
534
|
chainId?: `0x${string}` | undefined;
|
535
535
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
536
536
|
isSystemTx?: boolean | undefined;
|
@@ -546,19 +546,19 @@ export declare const liskSepolia: {
|
|
546
546
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
547
547
|
maxFeePerGas?: `0x${string}` | undefined;
|
548
548
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
549
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
549
550
|
to?: `0x${string}` | null;
|
550
551
|
from?: `0x${string}`;
|
551
552
|
gas?: `0x${string}`;
|
552
553
|
nonce?: `0x${string}`;
|
553
554
|
value?: `0x${string}`;
|
554
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
555
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
556
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
557
555
|
blockHash?: `0x${string}` | null;
|
558
556
|
blockNumber?: `0x${string}` | null;
|
559
557
|
hash?: `0x${string}`;
|
560
558
|
input?: `0x${string}`;
|
561
559
|
transactionIndex?: `0x${string}` | null;
|
560
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
561
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
562
562
|
chainId?: `0x${string}` | undefined;
|
563
563
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
564
564
|
r: `0x${string}`;
|
@@ -597,19 +597,19 @@ export declare const liskSepolia: {
|
|
597
597
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
598
598
|
maxFeePerGas?: `0x${string}` | undefined;
|
599
599
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
600
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
600
601
|
to?: `0x${string}` | null;
|
601
602
|
from?: `0x${string}`;
|
602
603
|
gas?: `0x${string}`;
|
603
604
|
nonce?: `0x${string}`;
|
604
605
|
value?: `0x${string}`;
|
605
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
606
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
607
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
608
606
|
blockHash?: `0x${string}` | null;
|
609
607
|
blockNumber?: `0x${string}` | null;
|
610
608
|
hash?: `0x${string}`;
|
611
609
|
input?: `0x${string}`;
|
612
610
|
transactionIndex?: `0x${string}` | null;
|
611
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
612
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
613
613
|
chainId?: `0x${string}` | undefined;
|
614
614
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
615
615
|
blockHash: `0x${string}` | null;
|
@@ -648,19 +648,19 @@ export declare const liskSepolia: {
|
|
648
648
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
649
649
|
maxFeePerGas?: `0x${string}` | undefined;
|
650
650
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
651
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
651
652
|
to?: `0x${string}` | null;
|
652
653
|
from?: `0x${string}`;
|
653
654
|
gas?: `0x${string}`;
|
654
655
|
nonce?: `0x${string}`;
|
655
656
|
value?: `0x${string}`;
|
656
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
657
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
658
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
659
657
|
blockHash?: `0x${string}` | null;
|
660
658
|
blockNumber?: `0x${string}` | null;
|
661
659
|
hash?: `0x${string}`;
|
662
660
|
input?: `0x${string}`;
|
663
661
|
transactionIndex?: `0x${string}` | null;
|
662
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
663
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
664
664
|
chainId?: `0x${string}` | undefined;
|
665
665
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
666
666
|
blockHash: `0x${string}` | null;
|
@@ -699,19 +699,19 @@ export declare const liskSepolia: {
|
|
699
699
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
700
700
|
maxFeePerGas?: `0x${string}` | undefined;
|
701
701
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
702
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
702
703
|
to?: `0x${string}` | null;
|
703
704
|
from?: `0x${string}`;
|
704
705
|
gas?: `0x${string}`;
|
705
706
|
nonce?: `0x${string}`;
|
706
707
|
value?: `0x${string}`;
|
707
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
708
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
709
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
710
708
|
blockHash?: `0x${string}` | null;
|
711
709
|
blockNumber?: `0x${string}` | null;
|
712
710
|
hash?: `0x${string}`;
|
713
711
|
input?: `0x${string}`;
|
714
712
|
transactionIndex?: `0x${string}` | null;
|
713
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
714
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
715
715
|
chainId?: `0x${string}` | undefined;
|
716
716
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
717
717
|
blockHash: `0x${string}` | null;
|
@@ -750,19 +750,19 @@ export declare const liskSepolia: {
|
|
750
750
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
751
751
|
maxFeePerGas?: `0x${string}` | undefined;
|
752
752
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
753
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
753
754
|
to?: `0x${string}` | null;
|
754
755
|
from?: `0x${string}`;
|
755
756
|
gas?: `0x${string}`;
|
756
757
|
nonce?: `0x${string}`;
|
757
758
|
value?: `0x${string}`;
|
758
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
759
|
-
accessList?: import("../../index.js").AccessList | undefined;
|
760
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
761
759
|
blockHash?: `0x${string}` | null;
|
762
760
|
blockNumber?: `0x${string}` | null;
|
763
761
|
hash?: `0x${string}`;
|
764
762
|
input?: `0x${string}`;
|
765
763
|
transactionIndex?: `0x${string}` | null;
|
764
|
+
accessList?: import("../../index.js").AccessList | undefined;
|
765
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
766
766
|
chainId?: `0x${string}` | undefined;
|
767
767
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
768
768
|
isSystemTx?: boolean | undefined;
|