@lidofinance/lido-csm-sdk 2.0.0-alpha.65 → 2.0.0-alpha.66
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/dist/core-sdk/core-sdk.d.cts +150 -150
- package/dist/core-sdk/core-sdk.d.mts +150 -150
- package/dist/deposit-data-sdk/deposit-data-sdk.cjs +1 -1
- package/dist/deposit-data-sdk/deposit-data-sdk.cjs.map +1 -1
- package/dist/deposit-data-sdk/deposit-data-sdk.mjs +1 -1
- package/dist/deposit-data-sdk/deposit-data-sdk.mjs.map +1 -1
- package/dist/deposit-data-sdk/parser.cjs +30 -27
- package/dist/deposit-data-sdk/parser.cjs.map +1 -1
- package/dist/deposit-data-sdk/parser.mjs +30 -27
- package/dist/deposit-data-sdk/parser.mjs.map +1 -1
- package/dist/deposit-data-sdk/types.cjs.map +1 -1
- package/dist/deposit-data-sdk/types.d.cts +3 -9
- package/dist/deposit-data-sdk/types.d.cts.map +1 -1
- package/dist/deposit-data-sdk/types.d.mts +3 -9
- package/dist/deposit-data-sdk/types.d.mts.map +1 -1
- package/dist/deposit-data-sdk/types.mjs.map +1 -1
- package/dist/deposit-data-sdk/validator.cjs +9 -9
- package/dist/deposit-data-sdk/validator.cjs.map +1 -1
- package/dist/deposit-data-sdk/validator.mjs +9 -9
- package/dist/deposit-data-sdk/validator.mjs.map +1 -1
- package/dist/deposit-data-sdk.d.cts +2 -2
- package/dist/deposit-data-sdk.d.mts +2 -2
- package/dist/frame-sdk/frame-sdk.d.cts +2 -2
- package/dist/frame-sdk/frame-sdk.d.cts.map +1 -1
- package/dist/frame-sdk/frame-sdk.d.mts +2 -2
- package/dist/frame-sdk/frame-sdk.d.mts.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/package.json +1 -1
|
@@ -66,8 +66,10 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
66
66
|
getBlobBaseFee: () => Promise<_$viem.GetBlobBaseFeeReturnType>;
|
|
67
67
|
getBlock: <includeTransactions extends boolean = false, blockTag extends _$viem.BlockTag = "latest">(args?: _$viem.GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
|
|
68
68
|
number: blockTag extends "pending" ? null : bigint;
|
|
69
|
+
timestamp: bigint;
|
|
69
70
|
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
70
71
|
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
72
|
+
stateRoot: _$viem.Hash;
|
|
71
73
|
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
72
74
|
baseFeePerGas: bigint | null;
|
|
73
75
|
blobGasUsed: bigint;
|
|
@@ -84,25 +86,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
84
86
|
sealFields: _$viem.Hex[];
|
|
85
87
|
sha3Uncles: _$viem.Hash;
|
|
86
88
|
size: bigint;
|
|
87
|
-
stateRoot: _$viem.Hash;
|
|
88
|
-
timestamp: bigint;
|
|
89
89
|
totalDifficulty: bigint | null;
|
|
90
90
|
transactionsRoot: _$viem.Hash;
|
|
91
91
|
uncles: _$viem.Hash[];
|
|
92
92
|
withdrawals?: _$viem.Withdrawal[] | undefined | undefined;
|
|
93
93
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
94
94
|
transactions: includeTransactions extends true ? ({
|
|
95
|
-
|
|
96
|
-
|
|
95
|
+
from: Address;
|
|
96
|
+
value: bigint;
|
|
97
|
+
v: bigint;
|
|
97
98
|
r: _$viem.Hex;
|
|
98
99
|
s: _$viem.Hex;
|
|
99
|
-
|
|
100
|
-
yParity?: undefined | undefined;
|
|
101
|
-
value: bigint;
|
|
100
|
+
nonce: number;
|
|
102
101
|
to: Address | null;
|
|
103
|
-
|
|
102
|
+
hash: _$viem.Hash;
|
|
103
|
+
type: "legacy";
|
|
104
|
+
chainId?: number | undefined;
|
|
105
|
+
yParity?: undefined | undefined;
|
|
104
106
|
gas: bigint;
|
|
105
|
-
nonce: number;
|
|
106
107
|
blobVersionedHashes?: undefined | undefined;
|
|
107
108
|
gasPrice: bigint;
|
|
108
109
|
maxFeePerBlobGas?: undefined | undefined;
|
|
@@ -110,24 +111,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
110
111
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
111
112
|
accessList?: undefined | undefined;
|
|
112
113
|
authorizationList?: undefined | undefined;
|
|
113
|
-
hash: _$viem.Hash;
|
|
114
114
|
input: _$viem.Hex;
|
|
115
115
|
typeHex: _$viem.Hex | null;
|
|
116
116
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
117
117
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
118
118
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
119
119
|
} | {
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
from: Address;
|
|
121
|
+
value: bigint;
|
|
122
|
+
v: bigint;
|
|
122
123
|
r: _$viem.Hex;
|
|
123
124
|
s: _$viem.Hex;
|
|
124
|
-
|
|
125
|
-
yParity: number;
|
|
126
|
-
value: bigint;
|
|
125
|
+
nonce: number;
|
|
127
126
|
to: Address | null;
|
|
128
|
-
|
|
127
|
+
hash: _$viem.Hash;
|
|
128
|
+
type: "eip2930";
|
|
129
|
+
chainId: number;
|
|
130
|
+
yParity: number;
|
|
129
131
|
gas: bigint;
|
|
130
|
-
nonce: number;
|
|
131
132
|
blobVersionedHashes?: undefined | undefined;
|
|
132
133
|
gasPrice: bigint;
|
|
133
134
|
maxFeePerBlobGas?: undefined | undefined;
|
|
@@ -135,24 +136,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
135
136
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
136
137
|
accessList: _$viem.AccessList;
|
|
137
138
|
authorizationList?: undefined | undefined;
|
|
138
|
-
hash: _$viem.Hash;
|
|
139
139
|
input: _$viem.Hex;
|
|
140
140
|
typeHex: _$viem.Hex | null;
|
|
141
141
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
|
|
142
142
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
143
143
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
144
144
|
} | {
|
|
145
|
-
|
|
146
|
-
|
|
145
|
+
from: Address;
|
|
146
|
+
value: bigint;
|
|
147
|
+
v: bigint;
|
|
147
148
|
r: _$viem.Hex;
|
|
148
149
|
s: _$viem.Hex;
|
|
149
|
-
|
|
150
|
-
yParity: number;
|
|
151
|
-
value: bigint;
|
|
150
|
+
nonce: number;
|
|
152
151
|
to: Address | null;
|
|
153
|
-
|
|
152
|
+
hash: _$viem.Hash;
|
|
153
|
+
type: "eip1559";
|
|
154
|
+
chainId: number;
|
|
155
|
+
yParity: number;
|
|
154
156
|
gas: bigint;
|
|
155
|
-
nonce: number;
|
|
156
157
|
blobVersionedHashes?: undefined | undefined;
|
|
157
158
|
gasPrice?: undefined | undefined;
|
|
158
159
|
maxFeePerBlobGas?: undefined | undefined;
|
|
@@ -160,24 +161,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
160
161
|
maxPriorityFeePerGas: bigint;
|
|
161
162
|
accessList: _$viem.AccessList;
|
|
162
163
|
authorizationList?: undefined | undefined;
|
|
163
|
-
hash: _$viem.Hash;
|
|
164
164
|
input: _$viem.Hex;
|
|
165
165
|
typeHex: _$viem.Hex | null;
|
|
166
166
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
|
|
167
167
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
168
168
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
169
169
|
} | {
|
|
170
|
-
|
|
171
|
-
|
|
170
|
+
from: Address;
|
|
171
|
+
value: bigint;
|
|
172
|
+
v: bigint;
|
|
172
173
|
r: _$viem.Hex;
|
|
173
174
|
s: _$viem.Hex;
|
|
174
|
-
|
|
175
|
-
yParity: number;
|
|
176
|
-
value: bigint;
|
|
175
|
+
nonce: number;
|
|
177
176
|
to: Address | null;
|
|
178
|
-
|
|
177
|
+
hash: _$viem.Hash;
|
|
178
|
+
type: "eip4844";
|
|
179
|
+
chainId: number;
|
|
180
|
+
yParity: number;
|
|
179
181
|
gas: bigint;
|
|
180
|
-
nonce: number;
|
|
181
182
|
blobVersionedHashes: readonly _$viem.Hex[];
|
|
182
183
|
gasPrice?: undefined | undefined;
|
|
183
184
|
maxFeePerBlobGas: bigint;
|
|
@@ -185,24 +186,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
185
186
|
maxPriorityFeePerGas: bigint;
|
|
186
187
|
accessList: _$viem.AccessList;
|
|
187
188
|
authorizationList?: undefined | undefined;
|
|
188
|
-
hash: _$viem.Hash;
|
|
189
189
|
input: _$viem.Hex;
|
|
190
190
|
typeHex: _$viem.Hex | null;
|
|
191
191
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
|
|
192
192
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
193
193
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
194
194
|
} | {
|
|
195
|
-
|
|
196
|
-
|
|
195
|
+
from: Address;
|
|
196
|
+
value: bigint;
|
|
197
|
+
v: bigint;
|
|
197
198
|
r: _$viem.Hex;
|
|
198
199
|
s: _$viem.Hex;
|
|
199
|
-
|
|
200
|
-
yParity: number;
|
|
201
|
-
value: bigint;
|
|
200
|
+
nonce: number;
|
|
202
201
|
to: Address | null;
|
|
203
|
-
|
|
202
|
+
hash: _$viem.Hash;
|
|
203
|
+
type: "eip7702";
|
|
204
|
+
chainId: number;
|
|
205
|
+
yParity: number;
|
|
204
206
|
gas: bigint;
|
|
205
|
-
nonce: number;
|
|
206
207
|
blobVersionedHashes?: undefined | undefined;
|
|
207
208
|
gasPrice?: undefined | undefined;
|
|
208
209
|
maxFeePerBlobGas?: undefined | undefined;
|
|
@@ -210,7 +211,6 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
210
211
|
maxPriorityFeePerGas: bigint;
|
|
211
212
|
accessList: _$viem.AccessList;
|
|
212
213
|
authorizationList: _$viem.SignedAuthorizationList;
|
|
213
|
-
hash: _$viem.Hash;
|
|
214
214
|
input: _$viem.Hex;
|
|
215
215
|
typeHex: _$viem.Hex | null;
|
|
216
216
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
|
|
@@ -243,17 +243,18 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
243
243
|
} | undefined) => Promise<_$viem.EstimateMaxPriorityFeePerGasReturnType>;
|
|
244
244
|
getStorageAt: (args: _$viem.GetStorageAtParameters) => Promise<_$viem.GetStorageAtReturnType>;
|
|
245
245
|
getTransaction: <blockTag extends _$viem.BlockTag = "latest">(args: _$viem.GetTransactionParameters<blockTag>) => Promise<{
|
|
246
|
-
|
|
247
|
-
|
|
246
|
+
from: Address;
|
|
247
|
+
value: bigint;
|
|
248
|
+
v: bigint;
|
|
248
249
|
r: _$viem.Hex;
|
|
249
250
|
s: _$viem.Hex;
|
|
250
|
-
|
|
251
|
-
yParity?: undefined | undefined;
|
|
252
|
-
value: bigint;
|
|
251
|
+
nonce: number;
|
|
253
252
|
to: Address | null;
|
|
254
|
-
|
|
253
|
+
hash: _$viem.Hash;
|
|
254
|
+
type: "legacy";
|
|
255
|
+
chainId?: number | undefined;
|
|
256
|
+
yParity?: undefined | undefined;
|
|
255
257
|
gas: bigint;
|
|
256
|
-
nonce: number;
|
|
257
258
|
blobVersionedHashes?: undefined | undefined;
|
|
258
259
|
gasPrice: bigint;
|
|
259
260
|
maxFeePerBlobGas?: undefined | undefined;
|
|
@@ -261,24 +262,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
261
262
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
262
263
|
accessList?: undefined | undefined;
|
|
263
264
|
authorizationList?: undefined | undefined;
|
|
264
|
-
hash: _$viem.Hash;
|
|
265
265
|
input: _$viem.Hex;
|
|
266
266
|
typeHex: _$viem.Hex | null;
|
|
267
267
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
268
268
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
269
269
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
270
270
|
} | {
|
|
271
|
-
|
|
272
|
-
|
|
271
|
+
from: Address;
|
|
272
|
+
value: bigint;
|
|
273
|
+
v: bigint;
|
|
273
274
|
r: _$viem.Hex;
|
|
274
275
|
s: _$viem.Hex;
|
|
275
|
-
|
|
276
|
-
yParity: number;
|
|
277
|
-
value: bigint;
|
|
276
|
+
nonce: number;
|
|
278
277
|
to: Address | null;
|
|
279
|
-
|
|
278
|
+
hash: _$viem.Hash;
|
|
279
|
+
type: "eip2930";
|
|
280
|
+
chainId: number;
|
|
281
|
+
yParity: number;
|
|
280
282
|
gas: bigint;
|
|
281
|
-
nonce: number;
|
|
282
283
|
blobVersionedHashes?: undefined | undefined;
|
|
283
284
|
gasPrice: bigint;
|
|
284
285
|
maxFeePerBlobGas?: undefined | undefined;
|
|
@@ -286,24 +287,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
286
287
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
287
288
|
accessList: _$viem.AccessList;
|
|
288
289
|
authorizationList?: undefined | undefined;
|
|
289
|
-
hash: _$viem.Hash;
|
|
290
290
|
input: _$viem.Hex;
|
|
291
291
|
typeHex: _$viem.Hex | null;
|
|
292
292
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
|
|
293
293
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
294
294
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
295
295
|
} | {
|
|
296
|
-
|
|
297
|
-
|
|
296
|
+
from: Address;
|
|
297
|
+
value: bigint;
|
|
298
|
+
v: bigint;
|
|
298
299
|
r: _$viem.Hex;
|
|
299
300
|
s: _$viem.Hex;
|
|
300
|
-
|
|
301
|
-
yParity: number;
|
|
302
|
-
value: bigint;
|
|
301
|
+
nonce: number;
|
|
303
302
|
to: Address | null;
|
|
304
|
-
|
|
303
|
+
hash: _$viem.Hash;
|
|
304
|
+
type: "eip1559";
|
|
305
|
+
chainId: number;
|
|
306
|
+
yParity: number;
|
|
305
307
|
gas: bigint;
|
|
306
|
-
nonce: number;
|
|
307
308
|
blobVersionedHashes?: undefined | undefined;
|
|
308
309
|
gasPrice?: undefined | undefined;
|
|
309
310
|
maxFeePerBlobGas?: undefined | undefined;
|
|
@@ -311,24 +312,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
311
312
|
maxPriorityFeePerGas: bigint;
|
|
312
313
|
accessList: _$viem.AccessList;
|
|
313
314
|
authorizationList?: undefined | undefined;
|
|
314
|
-
hash: _$viem.Hash;
|
|
315
315
|
input: _$viem.Hex;
|
|
316
316
|
typeHex: _$viem.Hex | null;
|
|
317
317
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
|
|
318
318
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
319
319
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
320
320
|
} | {
|
|
321
|
-
|
|
322
|
-
|
|
321
|
+
from: Address;
|
|
322
|
+
value: bigint;
|
|
323
|
+
v: bigint;
|
|
323
324
|
r: _$viem.Hex;
|
|
324
325
|
s: _$viem.Hex;
|
|
325
|
-
|
|
326
|
-
yParity: number;
|
|
327
|
-
value: bigint;
|
|
326
|
+
nonce: number;
|
|
328
327
|
to: Address | null;
|
|
329
|
-
|
|
328
|
+
hash: _$viem.Hash;
|
|
329
|
+
type: "eip4844";
|
|
330
|
+
chainId: number;
|
|
331
|
+
yParity: number;
|
|
330
332
|
gas: bigint;
|
|
331
|
-
nonce: number;
|
|
332
333
|
blobVersionedHashes: readonly _$viem.Hex[];
|
|
333
334
|
gasPrice?: undefined | undefined;
|
|
334
335
|
maxFeePerBlobGas: bigint;
|
|
@@ -336,24 +337,24 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
336
337
|
maxPriorityFeePerGas: bigint;
|
|
337
338
|
accessList: _$viem.AccessList;
|
|
338
339
|
authorizationList?: undefined | undefined;
|
|
339
|
-
hash: _$viem.Hash;
|
|
340
340
|
input: _$viem.Hex;
|
|
341
341
|
typeHex: _$viem.Hex | null;
|
|
342
342
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
|
|
343
343
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
344
344
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
345
345
|
} | {
|
|
346
|
-
|
|
347
|
-
|
|
346
|
+
from: Address;
|
|
347
|
+
value: bigint;
|
|
348
|
+
v: bigint;
|
|
348
349
|
r: _$viem.Hex;
|
|
349
350
|
s: _$viem.Hex;
|
|
350
|
-
|
|
351
|
-
yParity: number;
|
|
352
|
-
value: bigint;
|
|
351
|
+
nonce: number;
|
|
353
352
|
to: Address | null;
|
|
354
|
-
|
|
353
|
+
hash: _$viem.Hash;
|
|
354
|
+
type: "eip7702";
|
|
355
|
+
chainId: number;
|
|
356
|
+
yParity: number;
|
|
355
357
|
gas: bigint;
|
|
356
|
-
nonce: number;
|
|
357
358
|
blobVersionedHashes?: undefined | undefined;
|
|
358
359
|
gasPrice?: undefined | undefined;
|
|
359
360
|
maxFeePerBlobGas?: undefined | undefined;
|
|
@@ -361,7 +362,6 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
361
362
|
maxPriorityFeePerGas: bigint;
|
|
362
363
|
accessList: _$viem.AccessList;
|
|
363
364
|
authorizationList: _$viem.SignedAuthorizationList;
|
|
364
|
-
hash: _$viem.Hash;
|
|
365
365
|
input: _$viem.Hex;
|
|
366
366
|
typeHex: _$viem.Hex | null;
|
|
367
367
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
|
|
@@ -3624,7 +3624,7 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
3624
3624
|
authorizationList: _$viem.TransactionSerializableEIP7702["authorizationList"];
|
|
3625
3625
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? _$viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
3626
3626
|
chainId?: number | undefined;
|
|
3627
|
-
}, (request["parameters"] extends readonly _$viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "
|
|
3627
|
+
}, (request["parameters"] extends readonly _$viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "chainId" | "gas" | "blobVersionedHashes" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly _$viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "chainId" | "gas" | "blobVersionedHashes" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) & {
|
|
3628
3628
|
_capabilities?: {
|
|
3629
3629
|
[x: string]: any;
|
|
3630
3630
|
} | undefined;
|
|
@@ -6955,7 +6955,7 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
6955
6955
|
authorizationList: _$viem.TransactionSerializableEIP7702["authorizationList"];
|
|
6956
6956
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? _$viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
6957
6957
|
chainId?: number | undefined;
|
|
6958
|
-
}, (request["parameters"] extends readonly _$viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "
|
|
6958
|
+
}, (request["parameters"] extends readonly _$viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "chainId" | "gas" | "blobVersionedHashes" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly _$viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "chainId" | "gas" | "blobVersionedHashes" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) & {
|
|
6959
6959
|
_capabilities?: {
|
|
6960
6960
|
[x: string]: any;
|
|
6961
6961
|
} | undefined;
|
|
@@ -6969,6 +6969,8 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
6969
6969
|
id: string;
|
|
6970
6970
|
}>;
|
|
6971
6971
|
sendCallsSync: <const calls extends readonly unknown[], chainOverride extends Chain | undefined = undefined>(parameters: _$viem.SendCallsSyncParameters<Chain | undefined, _$viem.Account | undefined, chainOverride, calls>) => Promise<{
|
|
6972
|
+
version: string;
|
|
6973
|
+
id: string;
|
|
6972
6974
|
atomic: boolean;
|
|
6973
6975
|
capabilities?: {
|
|
6974
6976
|
[key: string]: any;
|
|
@@ -6976,9 +6978,7 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
6976
6978
|
[x: string]: any;
|
|
6977
6979
|
} | undefined;
|
|
6978
6980
|
chainId: number;
|
|
6979
|
-
id: string;
|
|
6980
6981
|
receipts?: _$viem.WalletCallReceipt<bigint, "success" | "reverted">[] | undefined;
|
|
6981
|
-
version: string;
|
|
6982
6982
|
statusCode: number;
|
|
6983
6983
|
status: "pending" | "success" | "failure" | undefined;
|
|
6984
6984
|
}>;
|
|
@@ -7886,65 +7886,74 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
7886
7886
|
[x: `string[${string}]`]: undefined;
|
|
7887
7887
|
[x: `function[${string}]`]: undefined;
|
|
7888
7888
|
[x: `address[${string}]`]: undefined;
|
|
7889
|
-
[x: `
|
|
7889
|
+
[x: `uint256[${string}]`]: undefined;
|
|
7890
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
7890
7891
|
[x: `bytes[${string}]`]: undefined;
|
|
7891
|
-
[x: `
|
|
7892
|
-
[x: `
|
|
7893
|
-
[x: `
|
|
7892
|
+
[x: `uint64[${string}]`]: undefined;
|
|
7893
|
+
[x: `uint8[${string}]`]: undefined;
|
|
7894
|
+
[x: `bool[${string}]`]: undefined;
|
|
7895
|
+
[x: `uint24[${string}]`]: undefined;
|
|
7896
|
+
[x: `uint16[${string}]`]: undefined;
|
|
7897
|
+
[x: `uint96[${string}]`]: undefined;
|
|
7894
7898
|
[x: `bytes4[${string}]`]: undefined;
|
|
7899
|
+
[x: `uint128[${string}]`]: undefined;
|
|
7900
|
+
[x: `uint32[${string}]`]: undefined;
|
|
7901
|
+
[x: `uint248[${string}]`]: undefined;
|
|
7902
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
7903
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
7904
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
7895
7905
|
[x: `bytes5[${string}]`]: undefined;
|
|
7896
|
-
[x: `
|
|
7906
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
7907
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
7897
7908
|
[x: `bytes7[${string}]`]: undefined;
|
|
7898
7909
|
[x: `bytes8[${string}]`]: undefined;
|
|
7910
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
7911
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
7912
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
7913
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
7914
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
7915
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
7899
7916
|
[x: `bytes9[${string}]`]: undefined;
|
|
7917
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
7900
7918
|
[x: `bytes10[${string}]`]: undefined;
|
|
7901
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
7902
7919
|
[x: `bytes12[${string}]`]: undefined;
|
|
7903
7920
|
[x: `bytes13[${string}]`]: undefined;
|
|
7904
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
7905
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
7906
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
7907
7921
|
[x: `bytes17[${string}]`]: undefined;
|
|
7908
7922
|
[x: `bytes18[${string}]`]: undefined;
|
|
7909
7923
|
[x: `bytes19[${string}]`]: undefined;
|
|
7910
7924
|
[x: `bytes20[${string}]`]: undefined;
|
|
7911
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
7912
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
7913
7925
|
[x: `bytes23[${string}]`]: undefined;
|
|
7914
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
7915
7926
|
[x: `bytes25[${string}]`]: undefined;
|
|
7916
7927
|
[x: `bytes26[${string}]`]: undefined;
|
|
7917
7928
|
[x: `bytes27[${string}]`]: undefined;
|
|
7918
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
7919
7929
|
[x: `bytes29[${string}]`]: undefined;
|
|
7920
7930
|
[x: `bytes30[${string}]`]: undefined;
|
|
7921
7931
|
[x: `bytes31[${string}]`]: undefined;
|
|
7922
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
7923
7932
|
[x: `int[${string}]`]: undefined;
|
|
7933
|
+
[x: `int24[${string}]`]: undefined;
|
|
7924
7934
|
[x: `int8[${string}]`]: undefined;
|
|
7935
|
+
[x: `int144[${string}]`]: undefined;
|
|
7925
7936
|
[x: `int16[${string}]`]: undefined;
|
|
7926
|
-
[x: `
|
|
7937
|
+
[x: `int192[${string}]`]: undefined;
|
|
7938
|
+
[x: `int96[${string}]`]: undefined;
|
|
7939
|
+
[x: `int72[${string}]`]: undefined;
|
|
7940
|
+
[x: `int64[${string}]`]: undefined;
|
|
7927
7941
|
[x: `int32[${string}]`]: undefined;
|
|
7928
7942
|
[x: `int40[${string}]`]: undefined;
|
|
7929
7943
|
[x: `int48[${string}]`]: undefined;
|
|
7930
7944
|
[x: `int56[${string}]`]: undefined;
|
|
7931
|
-
[x: `int64[${string}]`]: undefined;
|
|
7932
|
-
[x: `int72[${string}]`]: undefined;
|
|
7933
7945
|
[x: `int80[${string}]`]: undefined;
|
|
7934
7946
|
[x: `int88[${string}]`]: undefined;
|
|
7935
|
-
[x: `int96[${string}]`]: undefined;
|
|
7936
7947
|
[x: `int104[${string}]`]: undefined;
|
|
7937
7948
|
[x: `int112[${string}]`]: undefined;
|
|
7938
7949
|
[x: `int120[${string}]`]: undefined;
|
|
7939
7950
|
[x: `int128[${string}]`]: undefined;
|
|
7940
7951
|
[x: `int136[${string}]`]: undefined;
|
|
7941
|
-
[x: `int144[${string}]`]: undefined;
|
|
7942
7952
|
[x: `int152[${string}]`]: undefined;
|
|
7943
7953
|
[x: `int160[${string}]`]: undefined;
|
|
7944
7954
|
[x: `int168[${string}]`]: undefined;
|
|
7945
7955
|
[x: `int176[${string}]`]: undefined;
|
|
7946
7956
|
[x: `int184[${string}]`]: undefined;
|
|
7947
|
-
[x: `int192[${string}]`]: undefined;
|
|
7948
7957
|
[x: `int200[${string}]`]: undefined;
|
|
7949
7958
|
[x: `int208[${string}]`]: undefined;
|
|
7950
7959
|
[x: `int216[${string}]`]: undefined;
|
|
@@ -7954,98 +7963,98 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
7954
7963
|
[x: `int248[${string}]`]: undefined;
|
|
7955
7964
|
[x: `int256[${string}]`]: undefined;
|
|
7956
7965
|
[x: `uint[${string}]`]: undefined;
|
|
7957
|
-
[x: `
|
|
7958
|
-
[x: `
|
|
7959
|
-
[x: `
|
|
7960
|
-
[x: `uint32[${string}]`]: undefined;
|
|
7966
|
+
[x: `uint144[${string}]`]: undefined;
|
|
7967
|
+
[x: `uint192[${string}]`]: undefined;
|
|
7968
|
+
[x: `uint72[${string}]`]: undefined;
|
|
7961
7969
|
[x: `uint40[${string}]`]: undefined;
|
|
7962
7970
|
[x: `uint48[${string}]`]: undefined;
|
|
7963
7971
|
[x: `uint56[${string}]`]: undefined;
|
|
7964
|
-
[x: `uint64[${string}]`]: undefined;
|
|
7965
|
-
[x: `uint72[${string}]`]: undefined;
|
|
7966
7972
|
[x: `uint80[${string}]`]: undefined;
|
|
7967
7973
|
[x: `uint88[${string}]`]: undefined;
|
|
7968
|
-
[x: `uint96[${string}]`]: undefined;
|
|
7969
7974
|
[x: `uint104[${string}]`]: undefined;
|
|
7970
7975
|
[x: `uint112[${string}]`]: undefined;
|
|
7971
7976
|
[x: `uint120[${string}]`]: undefined;
|
|
7972
|
-
[x: `uint128[${string}]`]: undefined;
|
|
7973
7977
|
[x: `uint136[${string}]`]: undefined;
|
|
7974
|
-
[x: `uint144[${string}]`]: undefined;
|
|
7975
7978
|
[x: `uint152[${string}]`]: undefined;
|
|
7976
7979
|
[x: `uint160[${string}]`]: undefined;
|
|
7977
7980
|
[x: `uint168[${string}]`]: undefined;
|
|
7978
7981
|
[x: `uint176[${string}]`]: undefined;
|
|
7979
7982
|
[x: `uint184[${string}]`]: undefined;
|
|
7980
|
-
[x: `uint192[${string}]`]: undefined;
|
|
7981
7983
|
[x: `uint200[${string}]`]: undefined;
|
|
7982
7984
|
[x: `uint208[${string}]`]: undefined;
|
|
7983
7985
|
[x: `uint216[${string}]`]: undefined;
|
|
7984
7986
|
[x: `uint224[${string}]`]: undefined;
|
|
7985
7987
|
[x: `uint232[${string}]`]: undefined;
|
|
7986
7988
|
[x: `uint240[${string}]`]: undefined;
|
|
7987
|
-
[x: `uint248[${string}]`]: undefined;
|
|
7988
|
-
[x: `uint256[${string}]`]: undefined;
|
|
7989
7989
|
string?: undefined;
|
|
7990
7990
|
address?: undefined;
|
|
7991
|
-
|
|
7991
|
+
uint256?: undefined;
|
|
7992
|
+
bytes32?: undefined;
|
|
7992
7993
|
bytes?: undefined;
|
|
7993
|
-
|
|
7994
|
-
|
|
7995
|
-
|
|
7994
|
+
uint64?: undefined;
|
|
7995
|
+
uint8?: undefined;
|
|
7996
|
+
bool?: undefined;
|
|
7997
|
+
uint24?: undefined;
|
|
7998
|
+
uint16?: undefined;
|
|
7999
|
+
uint96?: undefined;
|
|
7996
8000
|
bytes4?: undefined;
|
|
8001
|
+
uint128?: undefined;
|
|
8002
|
+
uint32?: undefined;
|
|
8003
|
+
uint248?: undefined;
|
|
8004
|
+
bytes2?: undefined;
|
|
8005
|
+
bytes14?: undefined;
|
|
8006
|
+
bytes24?: undefined;
|
|
7997
8007
|
bytes5?: undefined;
|
|
7998
|
-
|
|
8008
|
+
bytes1?: undefined;
|
|
8009
|
+
bytes3?: undefined;
|
|
7999
8010
|
bytes7?: undefined;
|
|
8000
8011
|
bytes8?: undefined;
|
|
8012
|
+
bytes15?: undefined;
|
|
8013
|
+
bytes11?: undefined;
|
|
8014
|
+
bytes22?: undefined;
|
|
8015
|
+
bytes6?: undefined;
|
|
8016
|
+
bytes16?: undefined;
|
|
8017
|
+
bytes21?: undefined;
|
|
8001
8018
|
bytes9?: undefined;
|
|
8019
|
+
bytes28?: undefined;
|
|
8002
8020
|
bytes10?: undefined;
|
|
8003
|
-
bytes11?: undefined;
|
|
8004
8021
|
bytes12?: undefined;
|
|
8005
8022
|
bytes13?: undefined;
|
|
8006
|
-
bytes14?: undefined;
|
|
8007
|
-
bytes15?: undefined;
|
|
8008
|
-
bytes16?: undefined;
|
|
8009
8023
|
bytes17?: undefined;
|
|
8010
8024
|
bytes18?: undefined;
|
|
8011
8025
|
bytes19?: undefined;
|
|
8012
8026
|
bytes20?: undefined;
|
|
8013
|
-
bytes21?: undefined;
|
|
8014
|
-
bytes22?: undefined;
|
|
8015
8027
|
bytes23?: undefined;
|
|
8016
|
-
bytes24?: undefined;
|
|
8017
8028
|
bytes25?: undefined;
|
|
8018
8029
|
bytes26?: undefined;
|
|
8019
8030
|
bytes27?: undefined;
|
|
8020
|
-
bytes28?: undefined;
|
|
8021
8031
|
bytes29?: undefined;
|
|
8022
8032
|
bytes30?: undefined;
|
|
8023
8033
|
bytes31?: undefined;
|
|
8024
|
-
|
|
8034
|
+
int24?: undefined;
|
|
8025
8035
|
int8?: undefined;
|
|
8036
|
+
int144?: undefined;
|
|
8026
8037
|
int16?: undefined;
|
|
8027
|
-
|
|
8038
|
+
int192?: undefined;
|
|
8039
|
+
int96?: undefined;
|
|
8040
|
+
int72?: undefined;
|
|
8041
|
+
int64?: undefined;
|
|
8028
8042
|
int32?: undefined;
|
|
8029
8043
|
int40?: undefined;
|
|
8030
8044
|
int48?: undefined;
|
|
8031
8045
|
int56?: undefined;
|
|
8032
|
-
int64?: undefined;
|
|
8033
|
-
int72?: undefined;
|
|
8034
8046
|
int80?: undefined;
|
|
8035
8047
|
int88?: undefined;
|
|
8036
|
-
int96?: undefined;
|
|
8037
8048
|
int104?: undefined;
|
|
8038
8049
|
int112?: undefined;
|
|
8039
8050
|
int120?: undefined;
|
|
8040
8051
|
int128?: undefined;
|
|
8041
8052
|
int136?: undefined;
|
|
8042
|
-
int144?: undefined;
|
|
8043
8053
|
int152?: undefined;
|
|
8044
8054
|
int160?: undefined;
|
|
8045
8055
|
int168?: undefined;
|
|
8046
8056
|
int176?: undefined;
|
|
8047
8057
|
int184?: undefined;
|
|
8048
|
-
int192?: undefined;
|
|
8049
8058
|
int200?: undefined;
|
|
8050
8059
|
int208?: undefined;
|
|
8051
8060
|
int216?: undefined;
|
|
@@ -8054,38 +8063,29 @@ declare class CoreSDK extends CsmSDKCacheable {
|
|
|
8054
8063
|
int240?: undefined;
|
|
8055
8064
|
int248?: undefined;
|
|
8056
8065
|
int256?: undefined;
|
|
8057
|
-
|
|
8058
|
-
|
|
8059
|
-
|
|
8060
|
-
uint32?: undefined;
|
|
8066
|
+
uint144?: undefined;
|
|
8067
|
+
uint192?: undefined;
|
|
8068
|
+
uint72?: undefined;
|
|
8061
8069
|
uint40?: undefined;
|
|
8062
8070
|
uint48?: undefined;
|
|
8063
8071
|
uint56?: undefined;
|
|
8064
|
-
uint64?: undefined;
|
|
8065
|
-
uint72?: undefined;
|
|
8066
8072
|
uint80?: undefined;
|
|
8067
8073
|
uint88?: undefined;
|
|
8068
|
-
uint96?: undefined;
|
|
8069
8074
|
uint104?: undefined;
|
|
8070
8075
|
uint112?: undefined;
|
|
8071
8076
|
uint120?: undefined;
|
|
8072
|
-
uint128?: undefined;
|
|
8073
8077
|
uint136?: undefined;
|
|
8074
|
-
uint144?: undefined;
|
|
8075
8078
|
uint152?: undefined;
|
|
8076
8079
|
uint160?: undefined;
|
|
8077
8080
|
uint168?: undefined;
|
|
8078
8081
|
uint176?: undefined;
|
|
8079
8082
|
uint184?: undefined;
|
|
8080
|
-
uint192?: undefined;
|
|
8081
8083
|
uint200?: undefined;
|
|
8082
8084
|
uint208?: undefined;
|
|
8083
8085
|
uint216?: undefined;
|
|
8084
8086
|
uint224?: undefined;
|
|
8085
8087
|
uint232?: undefined;
|
|
8086
8088
|
uint240?: undefined;
|
|
8087
|
-
uint248?: undefined;
|
|
8088
|
-
uint256?: undefined;
|
|
8089
8089
|
} | {
|
|
8090
8090
|
[key: string]: unknown;
|
|
8091
8091
|
}, primaryType extends string>(args: _$viem.SignTypedDataParameters<typedData, primaryType, _$viem.Account | undefined>) => Promise<_$viem.SignTypedDataReturnType>;
|