viem 2.0.0-beta.3 → 2.0.0-beta.4
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/chains/opStack/decorators/public.js +1 -1
- package/_esm/chains/opStack/decorators/public.js.map +1 -1
- package/_esm/chains/opStack/index.js +1 -1
- package/_esm/chains/opStack/index.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/chains/celo/chainConfig.d.ts +117 -117
- package/_types/chains/celo/formatters.d.ts +117 -117
- package/_types/chains/definitions/base.d.ts +90 -90
- package/_types/chains/definitions/baseGoerli.d.ts +90 -90
- package/_types/chains/definitions/baseSepolia.d.ts +90 -90
- package/_types/chains/definitions/celo.d.ts +117 -117
- package/_types/chains/definitions/celoAlfajores.d.ts +117 -117
- package/_types/chains/definitions/celoCannoli.d.ts +117 -117
- package/_types/chains/definitions/optimism.d.ts +90 -90
- package/_types/chains/definitions/optimismGoerli.d.ts +90 -90
- package/_types/chains/definitions/optimismSepolia.d.ts +90 -90
- package/_types/chains/definitions/zora.d.ts +90 -90
- package/_types/chains/definitions/zoraSepolia.d.ts +90 -90
- package/_types/chains/definitions/zoraTestnet.d.ts +90 -90
- package/_types/chains/opStack/chainConfig.d.ts +90 -90
- package/_types/chains/opStack/decorators/public.d.ts +18 -18
- package/_types/chains/opStack/decorators/public.d.ts.map +1 -1
- package/_types/chains/opStack/formatters.d.ts +90 -90
- package/_types/chains/opStack/index.d.ts +1 -1
- package/_types/chains/opStack/index.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/utils/formatters/transaction.d.ts +1 -1
- package/_types/utils/formatters/transactionRequest.d.ts +1 -1
- package/chains/opStack/decorators/public.ts +19 -19
- package/chains/opStack/index.ts +1 -1
- package/errors/version.ts +1 -1
- package/package.json +1 -1
@@ -46,48 +46,48 @@ export declare const formatters: {
|
|
46
46
|
readonly transaction: {
|
47
47
|
exclude: [] | undefined;
|
48
48
|
format: (args: ({
|
49
|
-
|
50
|
-
gas?: `0x${string}` | undefined;
|
51
|
-
value?: `0x${string}` | undefined;
|
49
|
+
from?: `0x${string}` | undefined;
|
52
50
|
gasPrice?: `0x${string}` | undefined;
|
53
51
|
maxFeePerGas?: `0x${string}` | undefined;
|
54
52
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
55
|
-
|
53
|
+
gas?: `0x${string}` | undefined;
|
56
54
|
nonce?: `0x${string}` | undefined;
|
57
55
|
to?: `0x${string}` | null | undefined;
|
56
|
+
value?: `0x${string}` | undefined;
|
58
57
|
accessList?: undefined;
|
59
|
-
|
60
|
-
s?: `0x${string}` | undefined;
|
61
|
-
v?: `0x${string}` | undefined;
|
62
|
-
hash?: `0x${string}` | undefined;
|
58
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
63
59
|
blockHash?: `0x${string}` | null | undefined;
|
64
60
|
blockNumber?: `0x${string}` | null | undefined;
|
65
|
-
|
61
|
+
hash?: `0x${string}` | undefined;
|
66
62
|
input?: `0x${string}` | undefined;
|
63
|
+
r?: `0x${string}` | undefined;
|
64
|
+
s?: `0x${string}` | undefined;
|
65
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
66
|
+
v?: `0x${string}` | undefined;
|
67
67
|
chainId?: `0x${string}` | undefined;
|
68
68
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
69
69
|
feeCurrency: `0x${string}` | null;
|
70
70
|
gatewayFee: `0x${string}` | null;
|
71
71
|
gatewayFeeRecipient: `0x${string}` | null;
|
72
72
|
}) | ({
|
73
|
-
|
74
|
-
gas?: `0x${string}` | undefined;
|
75
|
-
value?: `0x${string}` | undefined;
|
73
|
+
from?: `0x${string}` | undefined;
|
76
74
|
gasPrice?: `0x${string}` | undefined;
|
77
75
|
maxFeePerGas?: `0x${string}` | undefined;
|
78
76
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
79
|
-
|
77
|
+
gas?: `0x${string}` | undefined;
|
80
78
|
nonce?: `0x${string}` | undefined;
|
81
79
|
to?: `0x${string}` | null | undefined;
|
80
|
+
value?: `0x${string}` | undefined;
|
82
81
|
accessList?: undefined;
|
83
|
-
|
84
|
-
s?: `0x${string}` | undefined;
|
85
|
-
v?: `0x${string}` | undefined;
|
86
|
-
hash?: `0x${string}` | undefined;
|
82
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
87
83
|
blockHash?: `0x${string}` | null | undefined;
|
88
84
|
blockNumber?: `0x${string}` | null | undefined;
|
89
|
-
|
85
|
+
hash?: `0x${string}` | undefined;
|
90
86
|
input?: `0x${string}` | undefined;
|
87
|
+
r?: `0x${string}` | undefined;
|
88
|
+
s?: `0x${string}` | undefined;
|
89
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
90
|
+
v?: `0x${string}` | undefined;
|
91
91
|
chainId?: `0x${string}` | undefined;
|
92
92
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
93
93
|
feeCurrency: `0x${string}` | null;
|
@@ -95,119 +95,119 @@ export declare const formatters: {
|
|
95
95
|
gatewayFeeRecipient: `0x${string}` | null;
|
96
96
|
type: "0x7c";
|
97
97
|
}) | ({
|
98
|
-
|
99
|
-
gas?: `0x${string}` | undefined;
|
100
|
-
value?: `0x${string}` | undefined;
|
98
|
+
from?: `0x${string}` | undefined;
|
101
99
|
gasPrice?: `0x${string}` | undefined;
|
102
100
|
maxFeePerGas?: `0x${string}` | undefined;
|
103
101
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
104
|
-
|
102
|
+
gas?: `0x${string}` | undefined;
|
105
103
|
nonce?: `0x${string}` | undefined;
|
106
104
|
to?: `0x${string}` | null | undefined;
|
105
|
+
value?: `0x${string}` | undefined;
|
107
106
|
accessList?: undefined;
|
108
|
-
|
109
|
-
s?: `0x${string}` | undefined;
|
110
|
-
v?: `0x${string}` | undefined;
|
111
|
-
hash?: `0x${string}` | undefined;
|
107
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
112
108
|
blockHash?: `0x${string}` | null | undefined;
|
113
109
|
blockNumber?: `0x${string}` | null | undefined;
|
114
|
-
|
110
|
+
hash?: `0x${string}` | undefined;
|
115
111
|
input?: `0x${string}` | undefined;
|
112
|
+
r?: `0x${string}` | undefined;
|
113
|
+
s?: `0x${string}` | undefined;
|
114
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
115
|
+
v?: `0x${string}` | undefined;
|
116
116
|
chainId?: `0x${string}` | undefined;
|
117
117
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
118
118
|
feeCurrency: `0x${string}` | null;
|
119
119
|
type: "0x7b";
|
120
120
|
}) | ({
|
121
|
-
|
122
|
-
gas?: `0x${string}` | undefined;
|
123
|
-
value?: `0x${string}` | undefined;
|
121
|
+
from?: `0x${string}` | undefined;
|
124
122
|
gasPrice?: `0x${string}` | undefined;
|
125
123
|
maxFeePerGas?: `0x${string}` | undefined;
|
126
124
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
127
|
-
|
125
|
+
gas?: `0x${string}` | undefined;
|
128
126
|
nonce?: `0x${string}` | undefined;
|
129
127
|
to?: `0x${string}` | null | undefined;
|
128
|
+
value?: `0x${string}` | undefined;
|
130
129
|
accessList?: import("../../index.js").AccessList | undefined;
|
131
|
-
|
132
|
-
s?: `0x${string}` | undefined;
|
133
|
-
v?: `0x${string}` | undefined;
|
134
|
-
hash?: `0x${string}` | undefined;
|
130
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
135
131
|
blockHash?: `0x${string}` | null | undefined;
|
136
132
|
blockNumber?: `0x${string}` | null | undefined;
|
137
|
-
|
133
|
+
hash?: `0x${string}` | undefined;
|
138
134
|
input?: `0x${string}` | undefined;
|
135
|
+
r?: `0x${string}` | undefined;
|
136
|
+
s?: `0x${string}` | undefined;
|
137
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
138
|
+
v?: `0x${string}` | undefined;
|
139
139
|
chainId?: `0x${string}` | undefined;
|
140
140
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
141
141
|
feeCurrency: `0x${string}` | null;
|
142
142
|
gatewayFee: `0x${string}` | null;
|
143
143
|
gatewayFeeRecipient: `0x${string}` | null;
|
144
144
|
}) | ({
|
145
|
-
|
146
|
-
gas?: `0x${string}` | undefined;
|
147
|
-
value?: `0x${string}` | undefined;
|
145
|
+
from?: `0x${string}` | undefined;
|
148
146
|
gasPrice?: `0x${string}` | undefined;
|
149
147
|
maxFeePerGas?: `0x${string}` | undefined;
|
150
148
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
151
|
-
|
149
|
+
gas?: `0x${string}` | undefined;
|
152
150
|
nonce?: `0x${string}` | undefined;
|
153
151
|
to?: `0x${string}` | null | undefined;
|
152
|
+
value?: `0x${string}` | undefined;
|
154
153
|
accessList?: import("../../index.js").AccessList | undefined;
|
155
|
-
|
156
|
-
s?: `0x${string}` | undefined;
|
157
|
-
v?: `0x${string}` | undefined;
|
158
|
-
hash?: `0x${string}` | undefined;
|
154
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
159
155
|
blockHash?: `0x${string}` | null | undefined;
|
160
156
|
blockNumber?: `0x${string}` | null | undefined;
|
161
|
-
|
157
|
+
hash?: `0x${string}` | undefined;
|
162
158
|
input?: `0x${string}` | undefined;
|
159
|
+
r?: `0x${string}` | undefined;
|
160
|
+
s?: `0x${string}` | undefined;
|
161
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
162
|
+
v?: `0x${string}` | undefined;
|
163
163
|
chainId?: `0x${string}` | undefined;
|
164
164
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
165
165
|
feeCurrency: `0x${string}` | null;
|
166
166
|
gatewayFee: `0x${string}` | null;
|
167
167
|
gatewayFeeRecipient: `0x${string}` | null;
|
168
168
|
}) | ({
|
169
|
-
|
170
|
-
gas?: `0x${string}` | undefined;
|
171
|
-
value?: `0x${string}` | undefined;
|
169
|
+
from?: `0x${string}` | undefined;
|
172
170
|
gasPrice?: `0x${string}` | undefined;
|
173
171
|
maxFeePerGas?: `0x${string}` | undefined;
|
174
172
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
175
|
-
|
173
|
+
gas?: `0x${string}` | undefined;
|
176
174
|
nonce?: `0x${string}` | undefined;
|
177
175
|
to?: `0x${string}` | null | undefined;
|
176
|
+
value?: `0x${string}` | undefined;
|
178
177
|
accessList?: import("../../index.js").AccessList | undefined;
|
179
|
-
|
180
|
-
s?: `0x${string}` | undefined;
|
181
|
-
v?: `0x${string}` | undefined;
|
182
|
-
hash?: `0x${string}` | undefined;
|
178
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
183
179
|
blockHash?: `0x${string}` | null | undefined;
|
184
180
|
blockNumber?: `0x${string}` | null | undefined;
|
185
|
-
|
181
|
+
hash?: `0x${string}` | undefined;
|
186
182
|
input?: `0x${string}` | undefined;
|
183
|
+
r?: `0x${string}` | undefined;
|
184
|
+
s?: `0x${string}` | undefined;
|
185
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
186
|
+
v?: `0x${string}` | undefined;
|
187
187
|
chainId?: `0x${string}` | undefined;
|
188
188
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
189
189
|
feeCurrency: `0x${string}` | null;
|
190
190
|
gatewayFee: `0x${string}` | null;
|
191
191
|
gatewayFeeRecipient: `0x${string}` | null;
|
192
192
|
}) | ({
|
193
|
-
|
194
|
-
gas?: `0x${string}` | undefined;
|
195
|
-
value?: `0x${string}` | undefined;
|
193
|
+
from?: `0x${string}` | undefined;
|
196
194
|
gasPrice?: `0x${string}` | undefined;
|
197
195
|
maxFeePerGas?: `0x${string}` | undefined;
|
198
196
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
199
|
-
|
197
|
+
gas?: `0x${string}` | undefined;
|
200
198
|
nonce?: `0x${string}` | undefined;
|
201
199
|
to?: `0x${string}` | null | undefined;
|
200
|
+
value?: `0x${string}` | undefined;
|
202
201
|
accessList?: import("../../index.js").AccessList | undefined;
|
203
|
-
|
204
|
-
s?: `0x${string}` | undefined;
|
205
|
-
v?: `0x${string}` | undefined;
|
206
|
-
hash?: `0x${string}` | undefined;
|
202
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
207
203
|
blockHash?: `0x${string}` | null | undefined;
|
208
204
|
blockNumber?: `0x${string}` | null | undefined;
|
209
|
-
|
205
|
+
hash?: `0x${string}` | undefined;
|
210
206
|
input?: `0x${string}` | undefined;
|
207
|
+
r?: `0x${string}` | undefined;
|
208
|
+
s?: `0x${string}` | undefined;
|
209
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
210
|
+
v?: `0x${string}` | undefined;
|
211
211
|
chainId?: `0x${string}` | undefined;
|
212
212
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
213
213
|
feeCurrency: `0x${string}` | null;
|
@@ -215,119 +215,119 @@ export declare const formatters: {
|
|
215
215
|
gatewayFeeRecipient: `0x${string}` | null;
|
216
216
|
type: "0x7c";
|
217
217
|
}) | ({
|
218
|
-
|
219
|
-
gas?: `0x${string}` | undefined;
|
220
|
-
value?: `0x${string}` | undefined;
|
218
|
+
from?: `0x${string}` | undefined;
|
221
219
|
gasPrice?: `0x${string}` | undefined;
|
222
220
|
maxFeePerGas?: `0x${string}` | undefined;
|
223
221
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
224
|
-
|
222
|
+
gas?: `0x${string}` | undefined;
|
225
223
|
nonce?: `0x${string}` | undefined;
|
226
224
|
to?: `0x${string}` | null | undefined;
|
225
|
+
value?: `0x${string}` | undefined;
|
227
226
|
accessList?: import("../../index.js").AccessList | undefined;
|
228
|
-
|
229
|
-
s?: `0x${string}` | undefined;
|
230
|
-
v?: `0x${string}` | undefined;
|
231
|
-
hash?: `0x${string}` | undefined;
|
227
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
232
228
|
blockHash?: `0x${string}` | null | undefined;
|
233
229
|
blockNumber?: `0x${string}` | null | undefined;
|
234
|
-
|
230
|
+
hash?: `0x${string}` | undefined;
|
235
231
|
input?: `0x${string}` | undefined;
|
232
|
+
r?: `0x${string}` | undefined;
|
233
|
+
s?: `0x${string}` | undefined;
|
234
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
235
|
+
v?: `0x${string}` | undefined;
|
236
236
|
chainId?: `0x${string}` | undefined;
|
237
237
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
238
238
|
feeCurrency: `0x${string}` | null;
|
239
239
|
type: "0x7b";
|
240
240
|
}) | ({
|
241
|
-
|
242
|
-
gas?: `0x${string}` | undefined;
|
243
|
-
value?: `0x${string}` | undefined;
|
241
|
+
from?: `0x${string}` | undefined;
|
244
242
|
gasPrice?: `0x${string}` | undefined;
|
245
243
|
maxFeePerGas?: `0x${string}` | undefined;
|
246
244
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
247
|
-
|
245
|
+
gas?: `0x${string}` | undefined;
|
248
246
|
nonce?: `0x${string}` | undefined;
|
249
247
|
to?: `0x${string}` | null | undefined;
|
248
|
+
value?: `0x${string}` | undefined;
|
250
249
|
accessList?: import("../../index.js").AccessList | undefined;
|
251
|
-
|
252
|
-
s?: `0x${string}` | undefined;
|
253
|
-
v?: `0x${string}` | undefined;
|
254
|
-
hash?: `0x${string}` | undefined;
|
250
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
255
251
|
blockHash?: `0x${string}` | null | undefined;
|
256
252
|
blockNumber?: `0x${string}` | null | undefined;
|
257
|
-
|
253
|
+
hash?: `0x${string}` | undefined;
|
258
254
|
input?: `0x${string}` | undefined;
|
255
|
+
r?: `0x${string}` | undefined;
|
256
|
+
s?: `0x${string}` | undefined;
|
257
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
258
|
+
v?: `0x${string}` | undefined;
|
259
259
|
chainId?: `0x${string}` | undefined;
|
260
260
|
} & import("../index.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
261
261
|
feeCurrency: `0x${string}` | null;
|
262
262
|
gatewayFee: `0x${string}` | null;
|
263
263
|
gatewayFeeRecipient: `0x${string}` | null;
|
264
264
|
}) | ({
|
265
|
-
|
266
|
-
gas?: `0x${string}` | undefined;
|
267
|
-
value?: `0x${string}` | undefined;
|
265
|
+
from?: `0x${string}` | undefined;
|
268
266
|
gasPrice?: `0x${string}` | undefined;
|
269
267
|
maxFeePerGas?: `0x${string}` | undefined;
|
270
268
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
271
|
-
|
269
|
+
gas?: `0x${string}` | undefined;
|
272
270
|
nonce?: `0x${string}` | undefined;
|
273
271
|
to?: `0x${string}` | null | undefined;
|
272
|
+
value?: `0x${string}` | undefined;
|
274
273
|
accessList?: import("../../index.js").AccessList | undefined;
|
275
|
-
|
276
|
-
s?: `0x${string}` | undefined;
|
277
|
-
v?: `0x${string}` | undefined;
|
278
|
-
hash?: `0x${string}` | undefined;
|
274
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
279
275
|
blockHash?: `0x${string}` | null | undefined;
|
280
276
|
blockNumber?: `0x${string}` | null | undefined;
|
281
|
-
|
277
|
+
hash?: `0x${string}` | undefined;
|
282
278
|
input?: `0x${string}` | undefined;
|
279
|
+
r?: `0x${string}` | undefined;
|
280
|
+
s?: `0x${string}` | undefined;
|
281
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
282
|
+
v?: `0x${string}` | undefined;
|
283
283
|
chainId?: `0x${string}` | undefined;
|
284
284
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
285
285
|
feeCurrency: `0x${string}` | null;
|
286
286
|
gatewayFee: `0x${string}` | null;
|
287
287
|
gatewayFeeRecipient: `0x${string}` | null;
|
288
288
|
}) | ({
|
289
|
-
|
290
|
-
gas?: `0x${string}` | undefined;
|
291
|
-
value?: `0x${string}` | undefined;
|
289
|
+
from?: `0x${string}` | undefined;
|
292
290
|
gasPrice?: `0x${string}` | undefined;
|
293
291
|
maxFeePerGas?: `0x${string}` | undefined;
|
294
292
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
295
|
-
|
293
|
+
gas?: `0x${string}` | undefined;
|
296
294
|
nonce?: `0x${string}` | undefined;
|
297
295
|
to?: `0x${string}` | null | undefined;
|
296
|
+
value?: `0x${string}` | undefined;
|
298
297
|
accessList?: import("../../index.js").AccessList | undefined;
|
299
|
-
|
300
|
-
s?: `0x${string}` | undefined;
|
301
|
-
v?: `0x${string}` | undefined;
|
302
|
-
hash?: `0x${string}` | undefined;
|
298
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
303
299
|
blockHash?: `0x${string}` | null | undefined;
|
304
300
|
blockNumber?: `0x${string}` | null | undefined;
|
305
|
-
|
301
|
+
hash?: `0x${string}` | undefined;
|
306
302
|
input?: `0x${string}` | undefined;
|
303
|
+
r?: `0x${string}` | undefined;
|
304
|
+
s?: `0x${string}` | undefined;
|
305
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
306
|
+
v?: `0x${string}` | undefined;
|
307
307
|
chainId?: `0x${string}` | undefined;
|
308
308
|
} & import("../index.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
309
309
|
feeCurrency: `0x${string}` | null;
|
310
310
|
gatewayFee: `0x${string}` | null;
|
311
311
|
gatewayFeeRecipient: `0x${string}` | null;
|
312
312
|
}) | ({
|
313
|
-
|
314
|
-
gas?: `0x${string}` | undefined;
|
315
|
-
value?: `0x${string}` | undefined;
|
313
|
+
from?: `0x${string}` | undefined;
|
316
314
|
gasPrice?: `0x${string}` | undefined;
|
317
315
|
maxFeePerGas?: `0x${string}` | undefined;
|
318
316
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
319
|
-
|
317
|
+
gas?: `0x${string}` | undefined;
|
320
318
|
nonce?: `0x${string}` | undefined;
|
321
319
|
to?: `0x${string}` | null | undefined;
|
320
|
+
value?: `0x${string}` | undefined;
|
322
321
|
accessList?: import("../../index.js").AccessList | undefined;
|
323
|
-
|
324
|
-
s?: `0x${string}` | undefined;
|
325
|
-
v?: `0x${string}` | undefined;
|
326
|
-
hash?: `0x${string}` | undefined;
|
322
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
327
323
|
blockHash?: `0x${string}` | null | undefined;
|
328
324
|
blockNumber?: `0x${string}` | null | undefined;
|
329
|
-
|
325
|
+
hash?: `0x${string}` | undefined;
|
330
326
|
input?: `0x${string}` | undefined;
|
327
|
+
r?: `0x${string}` | undefined;
|
328
|
+
s?: `0x${string}` | undefined;
|
329
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
330
|
+
v?: `0x${string}` | undefined;
|
331
331
|
chainId?: `0x${string}` | undefined;
|
332
332
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
333
333
|
feeCurrency: `0x${string}` | null;
|
@@ -335,24 +335,24 @@ export declare const formatters: {
|
|
335
335
|
gatewayFeeRecipient: `0x${string}` | null;
|
336
336
|
type: "0x7c";
|
337
337
|
}) | ({
|
338
|
-
|
339
|
-
gas?: `0x${string}` | undefined;
|
340
|
-
value?: `0x${string}` | undefined;
|
338
|
+
from?: `0x${string}` | undefined;
|
341
339
|
gasPrice?: `0x${string}` | undefined;
|
342
340
|
maxFeePerGas?: `0x${string}` | undefined;
|
343
341
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
344
|
-
|
342
|
+
gas?: `0x${string}` | undefined;
|
345
343
|
nonce?: `0x${string}` | undefined;
|
346
344
|
to?: `0x${string}` | null | undefined;
|
345
|
+
value?: `0x${string}` | undefined;
|
347
346
|
accessList?: import("../../index.js").AccessList | undefined;
|
348
|
-
|
349
|
-
s?: `0x${string}` | undefined;
|
350
|
-
v?: `0x${string}` | undefined;
|
351
|
-
hash?: `0x${string}` | undefined;
|
347
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
|
352
348
|
blockHash?: `0x${string}` | null | undefined;
|
353
349
|
blockNumber?: `0x${string}` | null | undefined;
|
354
|
-
|
350
|
+
hash?: `0x${string}` | undefined;
|
355
351
|
input?: `0x${string}` | undefined;
|
352
|
+
r?: `0x${string}` | undefined;
|
353
|
+
s?: `0x${string}` | undefined;
|
354
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
355
|
+
v?: `0x${string}` | undefined;
|
356
356
|
chainId?: `0x${string}` | undefined;
|
357
357
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
358
358
|
feeCurrency: `0x${string}` | null;
|