viem 2.0.0-beta.8 → 2.0.0-beta.9
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/_cjs/errors/version.js +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/actions/public/getBlock.d.ts +1 -1
- package/_types/actions/public/getBlock.d.ts.map +1 -1
- package/_types/actions/public/getTransaction.d.ts +1 -1
- package/_types/actions/public/getTransaction.d.ts.map +1 -1
- package/_types/actions/public/getTransactionReceipt.d.ts +1 -1
- package/_types/actions/public/getTransactionReceipt.d.ts.map +1 -1
- package/_types/chains/celo/chainConfig.d.ts +45 -45
- package/_types/chains/celo/formatters.d.ts +45 -45
- package/_types/chains/definitions/base.d.ts +34 -34
- package/_types/chains/definitions/baseGoerli.d.ts +34 -34
- package/_types/chains/definitions/baseSepolia.d.ts +34 -34
- package/_types/chains/definitions/celo.d.ts +45 -45
- package/_types/chains/definitions/celoAlfajores.d.ts +45 -45
- package/_types/chains/definitions/celoCannoli.d.ts +45 -45
- package/_types/chains/definitions/optimism.d.ts +34 -34
- package/_types/chains/definitions/optimismGoerli.d.ts +34 -34
- package/_types/chains/definitions/optimismSepolia.d.ts +34 -34
- package/_types/chains/definitions/pgn.d.ts +34 -34
- package/_types/chains/definitions/pgnTestnet.d.ts +34 -34
- package/_types/chains/definitions/zkSync.d.ts +6 -6
- package/_types/chains/definitions/zkSyncTestnet.d.ts +6 -6
- package/_types/chains/definitions/zora.d.ts +34 -34
- package/_types/chains/definitions/zoraSepolia.d.ts +34 -34
- package/_types/chains/definitions/zoraTestnet.d.ts +34 -34
- package/_types/chains/opStack/chainConfig.d.ts +34 -34
- package/_types/chains/opStack/formatters.d.ts +34 -34
- package/_types/chains/zksync/chainConfig.d.ts +6 -6
- package/_types/chains/zksync/formatters.d.ts +6 -6
- package/_types/errors/version.d.ts +1 -1
- package/_types/utils/formatters/block.d.ts +1 -1
- package/_types/utils/formatters/block.d.ts.map +1 -1
- package/_types/utils/formatters/transaction.d.ts +2 -2
- package/_types/utils/formatters/transaction.d.ts.map +1 -1
- package/_types/utils/formatters/transactionReceipt.d.ts +1 -1
- package/_types/utils/formatters/transactionReceipt.d.ts.map +1 -1
- package/_types/utils/formatters/transactionRequest.d.ts +1 -1
- package/actions/public/getBlock.ts +1 -1
- package/actions/public/getTransaction.ts +1 -1
- package/actions/public/getTransactionReceipt.ts +1 -1
- package/errors/version.ts +1 -1
- package/package.json +1 -1
- package/utils/formatters/block.ts +1 -1
- package/utils/formatters/transaction.ts +1 -1
- package/utils/formatters/transactionReceipt.ts +1 -1
@@ -46,24 +46,24 @@ export declare const formatters: {
|
|
46
46
|
readonly transaction: {
|
47
47
|
exclude: [] | undefined;
|
48
48
|
format: (args: ({
|
49
|
+
hash?: `0x${string}` | undefined;
|
50
|
+
nonce?: `0x${string}` | undefined;
|
49
51
|
yParity?: `0x${string}` | undefined;
|
50
52
|
blockHash?: `0x${string}` | null | undefined;
|
51
53
|
blockNumber?: `0x${string}` | null | undefined;
|
52
54
|
from?: `0x${string}` | undefined;
|
53
55
|
gas?: `0x${string}` | undefined;
|
54
|
-
hash?: `0x${string}` | undefined;
|
55
56
|
input?: `0x${string}` | undefined;
|
56
|
-
nonce?: `0x${string}` | undefined;
|
57
57
|
r?: `0x${string}` | undefined;
|
58
58
|
s?: `0x${string}` | undefined;
|
59
59
|
to?: `0x${string}` | null | undefined;
|
60
60
|
transactionIndex?: `0x${string}` | null | undefined;
|
61
61
|
v?: `0x${string}` | undefined;
|
62
62
|
value?: `0x${string}` | undefined;
|
63
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
64
63
|
gasPrice?: `0x${string}` | undefined;
|
65
64
|
maxFeePerGas?: `0x${string}` | undefined;
|
66
65
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
66
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
67
67
|
accessList?: undefined;
|
68
68
|
chainId?: `0x${string}` | undefined;
|
69
69
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -71,24 +71,24 @@ export declare const formatters: {
|
|
71
71
|
gatewayFee: `0x${string}` | null;
|
72
72
|
gatewayFeeRecipient: `0x${string}` | null;
|
73
73
|
}) | ({
|
74
|
+
hash?: `0x${string}` | undefined;
|
75
|
+
nonce?: `0x${string}` | undefined;
|
74
76
|
yParity?: `0x${string}` | undefined;
|
75
77
|
blockHash?: `0x${string}` | null | undefined;
|
76
78
|
blockNumber?: `0x${string}` | null | undefined;
|
77
79
|
from?: `0x${string}` | undefined;
|
78
80
|
gas?: `0x${string}` | undefined;
|
79
|
-
hash?: `0x${string}` | undefined;
|
80
81
|
input?: `0x${string}` | undefined;
|
81
|
-
nonce?: `0x${string}` | undefined;
|
82
82
|
r?: `0x${string}` | undefined;
|
83
83
|
s?: `0x${string}` | undefined;
|
84
84
|
to?: `0x${string}` | null | undefined;
|
85
85
|
transactionIndex?: `0x${string}` | null | undefined;
|
86
86
|
v?: `0x${string}` | undefined;
|
87
87
|
value?: `0x${string}` | undefined;
|
88
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
89
88
|
gasPrice?: `0x${string}` | undefined;
|
90
89
|
maxFeePerGas?: `0x${string}` | undefined;
|
91
90
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
91
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
92
92
|
accessList?: undefined;
|
93
93
|
chainId?: `0x${string}` | undefined;
|
94
94
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -97,24 +97,24 @@ export declare const formatters: {
|
|
97
97
|
gatewayFeeRecipient: `0x${string}` | null;
|
98
98
|
type: "0x7c";
|
99
99
|
}) | ({
|
100
|
+
hash?: `0x${string}` | undefined;
|
101
|
+
nonce?: `0x${string}` | undefined;
|
100
102
|
yParity?: `0x${string}` | undefined;
|
101
103
|
blockHash?: `0x${string}` | null | undefined;
|
102
104
|
blockNumber?: `0x${string}` | null | undefined;
|
103
105
|
from?: `0x${string}` | undefined;
|
104
106
|
gas?: `0x${string}` | undefined;
|
105
|
-
hash?: `0x${string}` | undefined;
|
106
107
|
input?: `0x${string}` | undefined;
|
107
|
-
nonce?: `0x${string}` | undefined;
|
108
108
|
r?: `0x${string}` | undefined;
|
109
109
|
s?: `0x${string}` | undefined;
|
110
110
|
to?: `0x${string}` | null | undefined;
|
111
111
|
transactionIndex?: `0x${string}` | null | undefined;
|
112
112
|
v?: `0x${string}` | undefined;
|
113
113
|
value?: `0x${string}` | undefined;
|
114
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
115
114
|
gasPrice?: `0x${string}` | undefined;
|
116
115
|
maxFeePerGas?: `0x${string}` | undefined;
|
117
116
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
117
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
118
118
|
accessList?: undefined;
|
119
119
|
chainId?: `0x${string}` | undefined;
|
120
120
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -123,24 +123,24 @@ export declare const formatters: {
|
|
123
123
|
gatewayFeeRecipient?: undefined;
|
124
124
|
type: "0x7b";
|
125
125
|
}) | ({
|
126
|
+
hash?: `0x${string}` | undefined;
|
127
|
+
nonce?: `0x${string}` | undefined;
|
126
128
|
yParity?: `0x${string}` | undefined;
|
127
129
|
blockHash?: `0x${string}` | null | undefined;
|
128
130
|
blockNumber?: `0x${string}` | null | undefined;
|
129
131
|
from?: `0x${string}` | undefined;
|
130
132
|
gas?: `0x${string}` | undefined;
|
131
|
-
hash?: `0x${string}` | undefined;
|
132
133
|
input?: `0x${string}` | undefined;
|
133
|
-
nonce?: `0x${string}` | undefined;
|
134
134
|
r?: `0x${string}` | undefined;
|
135
135
|
s?: `0x${string}` | undefined;
|
136
136
|
to?: `0x${string}` | null | undefined;
|
137
137
|
transactionIndex?: `0x${string}` | null | undefined;
|
138
138
|
v?: `0x${string}` | undefined;
|
139
139
|
value?: `0x${string}` | undefined;
|
140
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
141
140
|
gasPrice?: `0x${string}` | undefined;
|
142
141
|
maxFeePerGas?: `0x${string}` | undefined;
|
143
142
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
143
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
144
144
|
accessList?: import("../../index.js").AccessList | undefined;
|
145
145
|
chainId?: `0x${string}` | undefined;
|
146
146
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -148,24 +148,24 @@ export declare const formatters: {
|
|
148
148
|
gatewayFee: `0x${string}` | null;
|
149
149
|
gatewayFeeRecipient: `0x${string}` | null;
|
150
150
|
}) | ({
|
151
|
+
hash?: `0x${string}` | undefined;
|
152
|
+
nonce?: `0x${string}` | undefined;
|
151
153
|
yParity?: `0x${string}` | undefined;
|
152
154
|
blockHash?: `0x${string}` | null | undefined;
|
153
155
|
blockNumber?: `0x${string}` | null | undefined;
|
154
156
|
from?: `0x${string}` | undefined;
|
155
157
|
gas?: `0x${string}` | undefined;
|
156
|
-
hash?: `0x${string}` | undefined;
|
157
158
|
input?: `0x${string}` | undefined;
|
158
|
-
nonce?: `0x${string}` | undefined;
|
159
159
|
r?: `0x${string}` | undefined;
|
160
160
|
s?: `0x${string}` | undefined;
|
161
161
|
to?: `0x${string}` | null | undefined;
|
162
162
|
transactionIndex?: `0x${string}` | null | undefined;
|
163
163
|
v?: `0x${string}` | undefined;
|
164
164
|
value?: `0x${string}` | undefined;
|
165
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
166
165
|
gasPrice?: `0x${string}` | undefined;
|
167
166
|
maxFeePerGas?: `0x${string}` | undefined;
|
168
167
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
168
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
169
169
|
accessList?: import("../../index.js").AccessList | undefined;
|
170
170
|
chainId?: `0x${string}` | undefined;
|
171
171
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -173,24 +173,24 @@ export declare const formatters: {
|
|
173
173
|
gatewayFee: `0x${string}` | null;
|
174
174
|
gatewayFeeRecipient: `0x${string}` | null;
|
175
175
|
}) | ({
|
176
|
+
hash?: `0x${string}` | undefined;
|
177
|
+
nonce?: `0x${string}` | undefined;
|
176
178
|
yParity?: `0x${string}` | undefined;
|
177
179
|
blockHash?: `0x${string}` | null | undefined;
|
178
180
|
blockNumber?: `0x${string}` | null | undefined;
|
179
181
|
from?: `0x${string}` | undefined;
|
180
182
|
gas?: `0x${string}` | undefined;
|
181
|
-
hash?: `0x${string}` | undefined;
|
182
183
|
input?: `0x${string}` | undefined;
|
183
|
-
nonce?: `0x${string}` | undefined;
|
184
184
|
r?: `0x${string}` | undefined;
|
185
185
|
s?: `0x${string}` | undefined;
|
186
186
|
to?: `0x${string}` | null | undefined;
|
187
187
|
transactionIndex?: `0x${string}` | null | undefined;
|
188
188
|
v?: `0x${string}` | undefined;
|
189
189
|
value?: `0x${string}` | undefined;
|
190
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
191
190
|
gasPrice?: `0x${string}` | undefined;
|
192
191
|
maxFeePerGas?: `0x${string}` | undefined;
|
193
192
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
193
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
194
194
|
accessList?: import("../../index.js").AccessList | undefined;
|
195
195
|
chainId?: `0x${string}` | undefined;
|
196
196
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -198,24 +198,24 @@ export declare const formatters: {
|
|
198
198
|
gatewayFee: `0x${string}` | null;
|
199
199
|
gatewayFeeRecipient: `0x${string}` | null;
|
200
200
|
}) | ({
|
201
|
+
hash?: `0x${string}` | undefined;
|
202
|
+
nonce?: `0x${string}` | undefined;
|
201
203
|
yParity?: `0x${string}` | undefined;
|
202
204
|
blockHash?: `0x${string}` | null | undefined;
|
203
205
|
blockNumber?: `0x${string}` | null | undefined;
|
204
206
|
from?: `0x${string}` | undefined;
|
205
207
|
gas?: `0x${string}` | undefined;
|
206
|
-
hash?: `0x${string}` | undefined;
|
207
208
|
input?: `0x${string}` | undefined;
|
208
|
-
nonce?: `0x${string}` | undefined;
|
209
209
|
r?: `0x${string}` | undefined;
|
210
210
|
s?: `0x${string}` | undefined;
|
211
211
|
to?: `0x${string}` | null | undefined;
|
212
212
|
transactionIndex?: `0x${string}` | null | undefined;
|
213
213
|
v?: `0x${string}` | undefined;
|
214
214
|
value?: `0x${string}` | undefined;
|
215
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
216
215
|
gasPrice?: `0x${string}` | undefined;
|
217
216
|
maxFeePerGas?: `0x${string}` | undefined;
|
218
217
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
218
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
219
219
|
accessList?: import("../../index.js").AccessList | undefined;
|
220
220
|
chainId?: `0x${string}` | undefined;
|
221
221
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -224,24 +224,24 @@ export declare const formatters: {
|
|
224
224
|
gatewayFeeRecipient: `0x${string}` | null;
|
225
225
|
type: "0x7c";
|
226
226
|
}) | ({
|
227
|
+
hash?: `0x${string}` | undefined;
|
228
|
+
nonce?: `0x${string}` | undefined;
|
227
229
|
yParity?: `0x${string}` | undefined;
|
228
230
|
blockHash?: `0x${string}` | null | undefined;
|
229
231
|
blockNumber?: `0x${string}` | null | undefined;
|
230
232
|
from?: `0x${string}` | undefined;
|
231
233
|
gas?: `0x${string}` | undefined;
|
232
|
-
hash?: `0x${string}` | undefined;
|
233
234
|
input?: `0x${string}` | undefined;
|
234
|
-
nonce?: `0x${string}` | undefined;
|
235
235
|
r?: `0x${string}` | undefined;
|
236
236
|
s?: `0x${string}` | undefined;
|
237
237
|
to?: `0x${string}` | null | undefined;
|
238
238
|
transactionIndex?: `0x${string}` | null | undefined;
|
239
239
|
v?: `0x${string}` | undefined;
|
240
240
|
value?: `0x${string}` | undefined;
|
241
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
242
241
|
gasPrice?: `0x${string}` | undefined;
|
243
242
|
maxFeePerGas?: `0x${string}` | undefined;
|
244
243
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
244
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
245
245
|
accessList?: import("../../index.js").AccessList | undefined;
|
246
246
|
chainId?: `0x${string}` | undefined;
|
247
247
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -250,24 +250,24 @@ export declare const formatters: {
|
|
250
250
|
gatewayFeeRecipient?: undefined;
|
251
251
|
type: "0x7b";
|
252
252
|
}) | ({
|
253
|
+
hash?: `0x${string}` | undefined;
|
254
|
+
nonce?: `0x${string}` | undefined;
|
253
255
|
yParity?: `0x${string}` | undefined;
|
254
256
|
blockHash?: `0x${string}` | null | undefined;
|
255
257
|
blockNumber?: `0x${string}` | null | undefined;
|
256
258
|
from?: `0x${string}` | undefined;
|
257
259
|
gas?: `0x${string}` | undefined;
|
258
|
-
hash?: `0x${string}` | undefined;
|
259
260
|
input?: `0x${string}` | undefined;
|
260
|
-
nonce?: `0x${string}` | undefined;
|
261
261
|
r?: `0x${string}` | undefined;
|
262
262
|
s?: `0x${string}` | undefined;
|
263
263
|
to?: `0x${string}` | null | undefined;
|
264
264
|
transactionIndex?: `0x${string}` | null | undefined;
|
265
265
|
v?: `0x${string}` | undefined;
|
266
266
|
value?: `0x${string}` | undefined;
|
267
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
268
267
|
gasPrice?: `0x${string}` | undefined;
|
269
268
|
maxFeePerGas?: `0x${string}` | undefined;
|
270
269
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
270
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
271
271
|
accessList?: import("../../index.js").AccessList | undefined;
|
272
272
|
chainId?: `0x${string}` | undefined;
|
273
273
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
@@ -275,24 +275,24 @@ export declare const formatters: {
|
|
275
275
|
gatewayFee: `0x${string}` | null;
|
276
276
|
gatewayFeeRecipient: `0x${string}` | null;
|
277
277
|
}) | ({
|
278
|
+
hash?: `0x${string}` | undefined;
|
279
|
+
nonce?: `0x${string}` | undefined;
|
278
280
|
yParity?: `0x${string}` | undefined;
|
279
281
|
blockHash?: `0x${string}` | null | undefined;
|
280
282
|
blockNumber?: `0x${string}` | null | undefined;
|
281
283
|
from?: `0x${string}` | undefined;
|
282
284
|
gas?: `0x${string}` | undefined;
|
283
|
-
hash?: `0x${string}` | undefined;
|
284
285
|
input?: `0x${string}` | undefined;
|
285
|
-
nonce?: `0x${string}` | undefined;
|
286
286
|
r?: `0x${string}` | undefined;
|
287
287
|
s?: `0x${string}` | undefined;
|
288
288
|
to?: `0x${string}` | null | undefined;
|
289
289
|
transactionIndex?: `0x${string}` | null | undefined;
|
290
290
|
v?: `0x${string}` | undefined;
|
291
291
|
value?: `0x${string}` | undefined;
|
292
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
293
292
|
gasPrice?: `0x${string}` | undefined;
|
294
293
|
maxFeePerGas?: `0x${string}` | undefined;
|
295
294
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
295
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
296
296
|
accessList?: import("../../index.js").AccessList | undefined;
|
297
297
|
chainId?: `0x${string}` | undefined;
|
298
298
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
@@ -300,24 +300,24 @@ export declare const formatters: {
|
|
300
300
|
gatewayFee: `0x${string}` | null;
|
301
301
|
gatewayFeeRecipient: `0x${string}` | null;
|
302
302
|
}) | ({
|
303
|
+
hash?: `0x${string}` | undefined;
|
304
|
+
nonce?: `0x${string}` | undefined;
|
303
305
|
yParity?: `0x${string}` | undefined;
|
304
306
|
blockHash?: `0x${string}` | null | undefined;
|
305
307
|
blockNumber?: `0x${string}` | null | undefined;
|
306
308
|
from?: `0x${string}` | undefined;
|
307
309
|
gas?: `0x${string}` | undefined;
|
308
|
-
hash?: `0x${string}` | undefined;
|
309
310
|
input?: `0x${string}` | undefined;
|
310
|
-
nonce?: `0x${string}` | undefined;
|
311
311
|
r?: `0x${string}` | undefined;
|
312
312
|
s?: `0x${string}` | undefined;
|
313
313
|
to?: `0x${string}` | null | undefined;
|
314
314
|
transactionIndex?: `0x${string}` | null | undefined;
|
315
315
|
v?: `0x${string}` | undefined;
|
316
316
|
value?: `0x${string}` | undefined;
|
317
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
318
317
|
gasPrice?: `0x${string}` | undefined;
|
319
318
|
maxFeePerGas?: `0x${string}` | undefined;
|
320
319
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
320
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
321
321
|
accessList?: import("../../index.js").AccessList | undefined;
|
322
322
|
chainId?: `0x${string}` | undefined;
|
323
323
|
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
@@ -325,24 +325,24 @@ export declare const formatters: {
|
|
325
325
|
gatewayFee: `0x${string}` | null;
|
326
326
|
gatewayFeeRecipient: `0x${string}` | null;
|
327
327
|
}) | ({
|
328
|
+
hash?: `0x${string}` | undefined;
|
329
|
+
nonce?: `0x${string}` | undefined;
|
328
330
|
yParity?: `0x${string}` | undefined;
|
329
331
|
blockHash?: `0x${string}` | null | undefined;
|
330
332
|
blockNumber?: `0x${string}` | null | undefined;
|
331
333
|
from?: `0x${string}` | undefined;
|
332
334
|
gas?: `0x${string}` | undefined;
|
333
|
-
hash?: `0x${string}` | undefined;
|
334
335
|
input?: `0x${string}` | undefined;
|
335
|
-
nonce?: `0x${string}` | undefined;
|
336
336
|
r?: `0x${string}` | undefined;
|
337
337
|
s?: `0x${string}` | undefined;
|
338
338
|
to?: `0x${string}` | null | undefined;
|
339
339
|
transactionIndex?: `0x${string}` | null | undefined;
|
340
340
|
v?: `0x${string}` | undefined;
|
341
341
|
value?: `0x${string}` | undefined;
|
342
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
343
342
|
gasPrice?: `0x${string}` | undefined;
|
344
343
|
maxFeePerGas?: `0x${string}` | undefined;
|
345
344
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
345
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
346
346
|
accessList?: import("../../index.js").AccessList | undefined;
|
347
347
|
chainId?: `0x${string}` | undefined;
|
348
348
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -351,24 +351,24 @@ export declare const formatters: {
|
|
351
351
|
gatewayFeeRecipient: `0x${string}` | null;
|
352
352
|
type: "0x7c";
|
353
353
|
}) | ({
|
354
|
+
hash?: `0x${string}` | undefined;
|
355
|
+
nonce?: `0x${string}` | undefined;
|
354
356
|
yParity?: `0x${string}` | undefined;
|
355
357
|
blockHash?: `0x${string}` | null | undefined;
|
356
358
|
blockNumber?: `0x${string}` | null | undefined;
|
357
359
|
from?: `0x${string}` | undefined;
|
358
360
|
gas?: `0x${string}` | undefined;
|
359
|
-
hash?: `0x${string}` | undefined;
|
360
361
|
input?: `0x${string}` | undefined;
|
361
|
-
nonce?: `0x${string}` | undefined;
|
362
362
|
r?: `0x${string}` | undefined;
|
363
363
|
s?: `0x${string}` | undefined;
|
364
364
|
to?: `0x${string}` | null | undefined;
|
365
365
|
transactionIndex?: `0x${string}` | null | undefined;
|
366
366
|
v?: `0x${string}` | undefined;
|
367
367
|
value?: `0x${string}` | undefined;
|
368
|
-
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
369
368
|
gasPrice?: `0x${string}` | undefined;
|
370
369
|
maxFeePerGas?: `0x${string}` | undefined;
|
371
370
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
371
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
372
372
|
accessList?: import("../../index.js").AccessList | undefined;
|
373
373
|
chainId?: `0x${string}` | undefined;
|
374
374
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
@@ -377,13 +377,13 @@ export declare const formatters: {
|
|
377
377
|
gatewayFeeRecipient?: undefined;
|
378
378
|
type: "0x7b";
|
379
379
|
})) => ({
|
380
|
+
hash: `0x${string}`;
|
381
|
+
nonce: number;
|
380
382
|
blockHash: `0x${string}` | null;
|
381
383
|
blockNumber: bigint | null;
|
382
384
|
from: `0x${string}`;
|
383
385
|
gas: bigint;
|
384
|
-
hash: `0x${string}`;
|
385
386
|
input: `0x${string}`;
|
386
|
-
nonce: number;
|
387
387
|
r: `0x${string}`;
|
388
388
|
s: `0x${string}`;
|
389
389
|
to: `0x${string}` | null;
|
@@ -402,13 +402,13 @@ export declare const formatters: {
|
|
402
402
|
gatewayFee: bigint | null;
|
403
403
|
gatewayFeeRecipient: `0x${string}` | null;
|
404
404
|
} | {
|
405
|
+
hash: `0x${string}`;
|
406
|
+
nonce: number;
|
405
407
|
blockHash: `0x${string}` | null;
|
406
408
|
blockNumber: bigint | null;
|
407
409
|
from: `0x${string}`;
|
408
410
|
gas: bigint;
|
409
|
-
hash: `0x${string}`;
|
410
411
|
input: `0x${string}`;
|
411
|
-
nonce: number;
|
412
412
|
r: `0x${string}`;
|
413
413
|
s: `0x${string}`;
|
414
414
|
to: `0x${string}` | null;
|
@@ -427,13 +427,13 @@ export declare const formatters: {
|
|
427
427
|
gatewayFee: bigint | null;
|
428
428
|
gatewayFeeRecipient: `0x${string}` | null;
|
429
429
|
} | {
|
430
|
+
hash: `0x${string}`;
|
431
|
+
nonce: number;
|
430
432
|
blockHash: `0x${string}` | null;
|
431
433
|
blockNumber: bigint | null;
|
432
434
|
from: `0x${string}`;
|
433
435
|
gas: bigint;
|
434
|
-
hash: `0x${string}`;
|
435
436
|
input: `0x${string}`;
|
436
|
-
nonce: number;
|
437
437
|
r: `0x${string}`;
|
438
438
|
s: `0x${string}`;
|
439
439
|
to: `0x${string}` | null;
|