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
@@ -65,19 +65,19 @@ export declare const chainConfig: {
|
|
65
65
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
66
66
|
maxFeePerGas?: `0x${string}` | undefined;
|
67
67
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
68
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
68
69
|
to?: `0x${string}` | null;
|
69
70
|
from?: `0x${string}`;
|
70
71
|
gas?: `0x${string}`;
|
71
72
|
nonce?: `0x${string}`;
|
72
73
|
value?: `0x${string}`;
|
73
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
74
|
-
accessList?: undefined;
|
75
|
-
blobVersionedHashes?: undefined;
|
76
74
|
blockHash?: `0x${string}` | null;
|
77
75
|
blockNumber?: `0x${string}` | null;
|
78
76
|
hash?: `0x${string}`;
|
79
77
|
input?: `0x${string}`;
|
80
78
|
transactionIndex?: `0x${string}` | null;
|
79
|
+
accessList?: undefined;
|
80
|
+
blobVersionedHashes?: undefined;
|
81
81
|
chainId?: `0x${string}` | undefined;
|
82
82
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
83
83
|
r: `0x${string}`;
|
@@ -116,19 +116,19 @@ export declare const chainConfig: {
|
|
116
116
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
117
117
|
maxFeePerGas?: `0x${string}` | undefined;
|
118
118
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
119
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
119
120
|
to?: `0x${string}` | null;
|
120
121
|
from?: `0x${string}`;
|
121
122
|
gas?: `0x${string}`;
|
122
123
|
nonce?: `0x${string}`;
|
123
124
|
value?: `0x${string}`;
|
124
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
125
|
-
accessList?: undefined;
|
126
|
-
blobVersionedHashes?: undefined;
|
127
125
|
blockHash?: `0x${string}` | null;
|
128
126
|
blockNumber?: `0x${string}` | null;
|
129
127
|
hash?: `0x${string}`;
|
130
128
|
input?: `0x${string}`;
|
131
129
|
transactionIndex?: `0x${string}` | null;
|
130
|
+
accessList?: undefined;
|
131
|
+
blobVersionedHashes?: undefined;
|
132
132
|
chainId?: `0x${string}` | undefined;
|
133
133
|
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
134
134
|
isSystemTx?: boolean | undefined;
|
@@ -144,19 +144,19 @@ export declare const chainConfig: {
|
|
144
144
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
145
145
|
maxFeePerGas?: `0x${string}` | undefined;
|
146
146
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
147
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
147
148
|
to?: `0x${string}` | null;
|
148
149
|
from?: `0x${string}`;
|
149
150
|
gas?: `0x${string}`;
|
150
151
|
nonce?: `0x${string}`;
|
151
152
|
value?: `0x${string}`;
|
152
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
153
|
-
accessList?: import("../index.js").AccessList | undefined;
|
154
|
-
blobVersionedHashes?: undefined;
|
155
153
|
blockHash?: `0x${string}` | null;
|
156
154
|
blockNumber?: `0x${string}` | null;
|
157
155
|
hash?: `0x${string}`;
|
158
156
|
input?: `0x${string}`;
|
159
157
|
transactionIndex?: `0x${string}` | null;
|
158
|
+
accessList?: import("../index.js").AccessList | undefined;
|
159
|
+
blobVersionedHashes?: undefined;
|
160
160
|
chainId?: `0x${string}` | undefined;
|
161
161
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
162
162
|
r: `0x${string}`;
|
@@ -195,19 +195,19 @@ export declare const chainConfig: {
|
|
195
195
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
196
196
|
maxFeePerGas?: `0x${string}` | undefined;
|
197
197
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
198
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
198
199
|
to?: `0x${string}` | null;
|
199
200
|
from?: `0x${string}`;
|
200
201
|
gas?: `0x${string}`;
|
201
202
|
nonce?: `0x${string}`;
|
202
203
|
value?: `0x${string}`;
|
203
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
204
|
-
accessList?: import("../index.js").AccessList | undefined;
|
205
|
-
blobVersionedHashes?: undefined;
|
206
204
|
blockHash?: `0x${string}` | null;
|
207
205
|
blockNumber?: `0x${string}` | null;
|
208
206
|
hash?: `0x${string}`;
|
209
207
|
input?: `0x${string}`;
|
210
208
|
transactionIndex?: `0x${string}` | null;
|
209
|
+
accessList?: import("../index.js").AccessList | undefined;
|
210
|
+
blobVersionedHashes?: undefined;
|
211
211
|
chainId?: `0x${string}` | undefined;
|
212
212
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
213
213
|
blockHash: `0x${string}` | null;
|
@@ -246,19 +246,19 @@ export declare const chainConfig: {
|
|
246
246
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
247
247
|
maxFeePerGas?: `0x${string}` | undefined;
|
248
248
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
249
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
249
250
|
to?: `0x${string}` | null;
|
250
251
|
from?: `0x${string}`;
|
251
252
|
gas?: `0x${string}`;
|
252
253
|
nonce?: `0x${string}`;
|
253
254
|
value?: `0x${string}`;
|
254
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
255
|
-
accessList?: import("../index.js").AccessList | undefined;
|
256
|
-
blobVersionedHashes?: undefined;
|
257
255
|
blockHash?: `0x${string}` | null;
|
258
256
|
blockNumber?: `0x${string}` | null;
|
259
257
|
hash?: `0x${string}`;
|
260
258
|
input?: `0x${string}`;
|
261
259
|
transactionIndex?: `0x${string}` | null;
|
260
|
+
accessList?: import("../index.js").AccessList | undefined;
|
261
|
+
blobVersionedHashes?: undefined;
|
262
262
|
chainId?: `0x${string}` | undefined;
|
263
263
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
264
264
|
blockHash: `0x${string}` | null;
|
@@ -297,19 +297,19 @@ export declare const chainConfig: {
|
|
297
297
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
298
298
|
maxFeePerGas?: `0x${string}` | undefined;
|
299
299
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
300
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
300
301
|
to?: `0x${string}` | null;
|
301
302
|
from?: `0x${string}`;
|
302
303
|
gas?: `0x${string}`;
|
303
304
|
nonce?: `0x${string}`;
|
304
305
|
value?: `0x${string}`;
|
305
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
306
|
-
accessList?: import("../index.js").AccessList | undefined;
|
307
|
-
blobVersionedHashes?: undefined;
|
308
306
|
blockHash?: `0x${string}` | null;
|
309
307
|
blockNumber?: `0x${string}` | null;
|
310
308
|
hash?: `0x${string}`;
|
311
309
|
input?: `0x${string}`;
|
312
310
|
transactionIndex?: `0x${string}` | null;
|
311
|
+
accessList?: import("../index.js").AccessList | undefined;
|
312
|
+
blobVersionedHashes?: undefined;
|
313
313
|
chainId?: `0x${string}` | undefined;
|
314
314
|
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
315
315
|
isSystemTx?: boolean | undefined;
|
@@ -325,19 +325,19 @@ export declare const chainConfig: {
|
|
325
325
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
326
326
|
maxFeePerGas?: `0x${string}` | undefined;
|
327
327
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
328
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
328
329
|
to?: `0x${string}` | null;
|
329
330
|
from?: `0x${string}`;
|
330
331
|
gas?: `0x${string}`;
|
331
332
|
nonce?: `0x${string}`;
|
332
333
|
value?: `0x${string}`;
|
333
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
334
|
-
accessList?: import("../index.js").AccessList | undefined;
|
335
|
-
blobVersionedHashes?: undefined;
|
336
334
|
blockHash?: `0x${string}` | null;
|
337
335
|
blockNumber?: `0x${string}` | null;
|
338
336
|
hash?: `0x${string}`;
|
339
337
|
input?: `0x${string}`;
|
340
338
|
transactionIndex?: `0x${string}` | null;
|
339
|
+
accessList?: import("../index.js").AccessList | undefined;
|
340
|
+
blobVersionedHashes?: undefined;
|
341
341
|
chainId?: `0x${string}` | undefined;
|
342
342
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
343
343
|
r: `0x${string}`;
|
@@ -376,19 +376,19 @@ export declare const chainConfig: {
|
|
376
376
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
377
377
|
maxFeePerGas?: `0x${string}` | undefined;
|
378
378
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
379
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
379
380
|
to?: `0x${string}` | null;
|
380
381
|
from?: `0x${string}`;
|
381
382
|
gas?: `0x${string}`;
|
382
383
|
nonce?: `0x${string}`;
|
383
384
|
value?: `0x${string}`;
|
384
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
385
|
-
accessList?: import("../index.js").AccessList | undefined;
|
386
|
-
blobVersionedHashes?: undefined;
|
387
385
|
blockHash?: `0x${string}` | null;
|
388
386
|
blockNumber?: `0x${string}` | null;
|
389
387
|
hash?: `0x${string}`;
|
390
388
|
input?: `0x${string}`;
|
391
389
|
transactionIndex?: `0x${string}` | null;
|
390
|
+
accessList?: import("../index.js").AccessList | undefined;
|
391
|
+
blobVersionedHashes?: undefined;
|
392
392
|
chainId?: `0x${string}` | undefined;
|
393
393
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
394
394
|
blockHash: `0x${string}` | null;
|
@@ -427,19 +427,19 @@ export declare const chainConfig: {
|
|
427
427
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
428
428
|
maxFeePerGas?: `0x${string}` | undefined;
|
429
429
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
430
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
430
431
|
to?: `0x${string}` | null;
|
431
432
|
from?: `0x${string}`;
|
432
433
|
gas?: `0x${string}`;
|
433
434
|
nonce?: `0x${string}`;
|
434
435
|
value?: `0x${string}`;
|
435
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
436
|
-
accessList?: import("../index.js").AccessList | undefined;
|
437
|
-
blobVersionedHashes?: undefined;
|
438
436
|
blockHash?: `0x${string}` | null;
|
439
437
|
blockNumber?: `0x${string}` | null;
|
440
438
|
hash?: `0x${string}`;
|
441
439
|
input?: `0x${string}`;
|
442
440
|
transactionIndex?: `0x${string}` | null;
|
441
|
+
accessList?: import("../index.js").AccessList | undefined;
|
442
|
+
blobVersionedHashes?: undefined;
|
443
443
|
chainId?: `0x${string}` | undefined;
|
444
444
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
445
445
|
blockHash: `0x${string}` | null;
|
@@ -478,19 +478,19 @@ export declare const chainConfig: {
|
|
478
478
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
479
479
|
maxFeePerGas?: `0x${string}` | undefined;
|
480
480
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
481
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
481
482
|
to?: `0x${string}` | null;
|
482
483
|
from?: `0x${string}`;
|
483
484
|
gas?: `0x${string}`;
|
484
485
|
nonce?: `0x${string}`;
|
485
486
|
value?: `0x${string}`;
|
486
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
487
|
-
accessList?: import("../index.js").AccessList | undefined;
|
488
|
-
blobVersionedHashes?: undefined;
|
489
487
|
blockHash?: `0x${string}` | null;
|
490
488
|
blockNumber?: `0x${string}` | null;
|
491
489
|
hash?: `0x${string}`;
|
492
490
|
input?: `0x${string}`;
|
493
491
|
transactionIndex?: `0x${string}` | null;
|
492
|
+
accessList?: import("../index.js").AccessList | undefined;
|
493
|
+
blobVersionedHashes?: undefined;
|
494
494
|
chainId?: `0x${string}` | undefined;
|
495
495
|
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
496
496
|
isSystemTx?: boolean | undefined;
|
@@ -506,19 +506,19 @@ export declare const chainConfig: {
|
|
506
506
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
507
507
|
maxFeePerGas?: `0x${string}` | undefined;
|
508
508
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
509
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
509
510
|
to?: `0x${string}` | null;
|
510
511
|
from?: `0x${string}`;
|
511
512
|
gas?: `0x${string}`;
|
512
513
|
nonce?: `0x${string}`;
|
513
514
|
value?: `0x${string}`;
|
514
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
515
|
-
accessList?: import("../index.js").AccessList | undefined;
|
516
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
517
515
|
blockHash?: `0x${string}` | null;
|
518
516
|
blockNumber?: `0x${string}` | null;
|
519
517
|
hash?: `0x${string}`;
|
520
518
|
input?: `0x${string}`;
|
521
519
|
transactionIndex?: `0x${string}` | null;
|
520
|
+
accessList?: import("../index.js").AccessList | undefined;
|
521
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
522
522
|
chainId?: `0x${string}` | undefined;
|
523
523
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
524
524
|
r: `0x${string}`;
|
@@ -557,19 +557,19 @@ export declare const chainConfig: {
|
|
557
557
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
558
558
|
maxFeePerGas?: `0x${string}` | undefined;
|
559
559
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
560
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
560
561
|
to?: `0x${string}` | null;
|
561
562
|
from?: `0x${string}`;
|
562
563
|
gas?: `0x${string}`;
|
563
564
|
nonce?: `0x${string}`;
|
564
565
|
value?: `0x${string}`;
|
565
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
566
|
-
accessList?: import("../index.js").AccessList | undefined;
|
567
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
568
566
|
blockHash?: `0x${string}` | null;
|
569
567
|
blockNumber?: `0x${string}` | null;
|
570
568
|
hash?: `0x${string}`;
|
571
569
|
input?: `0x${string}`;
|
572
570
|
transactionIndex?: `0x${string}` | null;
|
571
|
+
accessList?: import("../index.js").AccessList | undefined;
|
572
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
573
573
|
chainId?: `0x${string}` | undefined;
|
574
574
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
575
575
|
blockHash: `0x${string}` | null;
|
@@ -608,19 +608,19 @@ export declare const chainConfig: {
|
|
608
608
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
609
609
|
maxFeePerGas?: `0x${string}` | undefined;
|
610
610
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
611
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
611
612
|
to?: `0x${string}` | null;
|
612
613
|
from?: `0x${string}`;
|
613
614
|
gas?: `0x${string}`;
|
614
615
|
nonce?: `0x${string}`;
|
615
616
|
value?: `0x${string}`;
|
616
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
617
|
-
accessList?: import("../index.js").AccessList | undefined;
|
618
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
619
617
|
blockHash?: `0x${string}` | null;
|
620
618
|
blockNumber?: `0x${string}` | null;
|
621
619
|
hash?: `0x${string}`;
|
622
620
|
input?: `0x${string}`;
|
623
621
|
transactionIndex?: `0x${string}` | null;
|
622
|
+
accessList?: import("../index.js").AccessList | undefined;
|
623
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
624
624
|
chainId?: `0x${string}` | undefined;
|
625
625
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
626
626
|
blockHash: `0x${string}` | null;
|
@@ -659,19 +659,19 @@ export declare const chainConfig: {
|
|
659
659
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
660
660
|
maxFeePerGas?: `0x${string}` | undefined;
|
661
661
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
662
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
662
663
|
to?: `0x${string}` | null;
|
663
664
|
from?: `0x${string}`;
|
664
665
|
gas?: `0x${string}`;
|
665
666
|
nonce?: `0x${string}`;
|
666
667
|
value?: `0x${string}`;
|
667
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
668
|
-
accessList?: import("../index.js").AccessList | undefined;
|
669
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
670
668
|
blockHash?: `0x${string}` | null;
|
671
669
|
blockNumber?: `0x${string}` | null;
|
672
670
|
hash?: `0x${string}`;
|
673
671
|
input?: `0x${string}`;
|
674
672
|
transactionIndex?: `0x${string}` | null;
|
673
|
+
accessList?: import("../index.js").AccessList | undefined;
|
674
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
675
675
|
chainId?: `0x${string}` | undefined;
|
676
676
|
} & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
|
677
677
|
blockHash: `0x${string}` | null;
|
@@ -710,19 +710,19 @@ export declare const chainConfig: {
|
|
710
710
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
711
711
|
maxFeePerGas?: `0x${string}` | undefined;
|
712
712
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
713
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
713
714
|
to?: `0x${string}` | null;
|
714
715
|
from?: `0x${string}`;
|
715
716
|
gas?: `0x${string}`;
|
716
717
|
nonce?: `0x${string}`;
|
717
718
|
value?: `0x${string}`;
|
718
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
719
|
-
accessList?: import("../index.js").AccessList | undefined;
|
720
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
721
719
|
blockHash?: `0x${string}` | null;
|
722
720
|
blockNumber?: `0x${string}` | null;
|
723
721
|
hash?: `0x${string}`;
|
724
722
|
input?: `0x${string}`;
|
725
723
|
transactionIndex?: `0x${string}` | null;
|
724
|
+
accessList?: import("../index.js").AccessList | undefined;
|
725
|
+
blobVersionedHashes?: `0x${string}`[] | undefined;
|
726
726
|
chainId?: `0x${string}` | undefined;
|
727
727
|
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
728
728
|
isSystemTx?: boolean | undefined;
|