@gfxlabs/oku-chains 1.12.8 → 1.12.11
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/browser.js +3 -0
- package/dist/index-mjs.js +3 -0
- package/dist/index.js +3 -0
- package/dist/types/definitions/arbitrum.d.ts +3 -0
- package/dist/types/definitions/avalanche.d.ts +2 -0
- package/dist/types/definitions/base.d.ts +11 -0
- package/dist/types/definitions/blast.d.ts +10 -0
- package/dist/types/definitions/bob.d.ts +10 -0
- package/dist/types/definitions/boba.d.ts +2 -0
- package/dist/types/definitions/bsc.d.ts +2 -0
- package/dist/types/definitions/celo.d.ts +18 -0
- package/dist/types/definitions/corn.d.ts +2 -0
- package/dist/types/definitions/etherlink.d.ts +2 -0
- package/dist/types/definitions/filecoin.d.ts +2 -0
- package/dist/types/definitions/gensyn.d.ts +2 -0
- package/dist/types/definitions/gnosis.d.ts +2 -0
- package/dist/types/definitions/goat.d.ts +2 -0
- package/dist/types/definitions/hemi.d.ts +2 -0
- package/dist/types/definitions/hyperevem.d.ts +2 -0
- package/dist/types/definitions/lens.d.ts +2 -0
- package/dist/types/definitions/lightlink.d.ts +2 -0
- package/dist/types/definitions/linea.d.ts +2 -0
- package/dist/types/definitions/lisk.d.ts +10 -0
- package/dist/types/definitions/mainnet.d.ts +2 -0
- package/dist/types/definitions/manta.d.ts +2 -0
- package/dist/types/definitions/mantle.d.ts +2 -0
- package/dist/types/definitions/matchain.d.ts +2 -0
- package/dist/types/definitions/metal.d.ts +10 -0
- package/dist/types/definitions/monad.d.ts +7 -5
- package/dist/types/definitions/moonbeam.d.ts +3 -1
- package/dist/types/definitions/nibiru.d.ts +2 -0
- package/dist/types/definitions/optimism.d.ts +11 -0
- package/dist/types/definitions/pharos.d.ts +2 -0
- package/dist/types/definitions/plasma.d.ts +2 -0
- package/dist/types/definitions/polygon.d.ts +2 -0
- package/dist/types/definitions/redbelly.d.ts +2 -0
- package/dist/types/definitions/ronin.d.ts +2 -0
- package/dist/types/definitions/rootstock.d.ts +2 -0
- package/dist/types/definitions/saga.d.ts +2 -0
- package/dist/types/definitions/scroll.d.ts +2 -0
- package/dist/types/definitions/sei.d.ts +2 -0
- package/dist/types/definitions/sonic.d.ts +2 -0
- package/dist/types/definitions/taiko.d.ts +2 -0
- package/dist/types/definitions/telos.d.ts +2 -0
- package/dist/types/definitions/tronShasta.d.ts +2 -0
- package/dist/types/definitions/unichain.d.ts +10 -0
- package/dist/types/definitions/worldchain.d.ts +26 -16
- package/dist/types/definitions/xdc.d.ts +2 -0
- package/dist/types/definitions/zerog.d.ts +2 -0
- package/dist/types/definitions/zkevm.d.ts +2 -0
- package/dist/types/definitions/zksync.d.ts +20 -11
- package/dist/types/index.d.ts +242 -24
- package/dist/types/non-evm/bitcoin.d.ts +2 -0
- package/package.json +2 -2
package/dist/browser.js
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
const arbitrum = makeConfig({
|
|
12
12
|
...chains.arbitrum,
|
|
13
13
|
name: "Arbitrum",
|
|
14
|
+
liteChain: true,
|
|
14
15
|
launchTime: 1688997600,
|
|
15
16
|
transactionType: "eip1559",
|
|
16
17
|
sortIndex: 1,
|
|
@@ -460,6 +461,7 @@
|
|
|
460
461
|
const base = makeConfig({
|
|
461
462
|
...chains.base,
|
|
462
463
|
sortIndex: 2,
|
|
464
|
+
liteChain: true,
|
|
463
465
|
launchTime: 1707321600,
|
|
464
466
|
transactionType: "eip1559",
|
|
465
467
|
blockTimeSeconds: 2,
|
|
@@ -3969,6 +3971,7 @@
|
|
|
3969
3971
|
const optimism = makeConfig({
|
|
3970
3972
|
...chains.optimism,
|
|
3971
3973
|
name: "Optimism",
|
|
3974
|
+
liteChain: true,
|
|
3972
3975
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
|
|
3973
3976
|
blockTimeSeconds: 0.5,
|
|
3974
3977
|
launchTime: 1688997600,
|
package/dist/index-mjs.js
CHANGED
|
@@ -8,6 +8,7 @@ const makeConfig = (x) => {
|
|
|
8
8
|
const arbitrum = makeConfig({
|
|
9
9
|
...arbitrum$1,
|
|
10
10
|
name: "Arbitrum",
|
|
11
|
+
liteChain: true,
|
|
11
12
|
launchTime: 1688997600,
|
|
12
13
|
transactionType: "eip1559",
|
|
13
14
|
sortIndex: 1,
|
|
@@ -457,6 +458,7 @@ const avalanche = makeConfig({
|
|
|
457
458
|
const base = makeConfig({
|
|
458
459
|
...base$1,
|
|
459
460
|
sortIndex: 2,
|
|
461
|
+
liteChain: true,
|
|
460
462
|
launchTime: 1707321600,
|
|
461
463
|
transactionType: "eip1559",
|
|
462
464
|
blockTimeSeconds: 2,
|
|
@@ -3966,6 +3968,7 @@ const nibiru = makeConfig({
|
|
|
3966
3968
|
const optimism = makeConfig({
|
|
3967
3969
|
...optimism$1,
|
|
3968
3970
|
name: "Optimism",
|
|
3971
|
+
liteChain: true,
|
|
3969
3972
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
|
|
3970
3973
|
blockTimeSeconds: 0.5,
|
|
3971
3974
|
launchTime: 1688997600,
|
package/dist/index.js
CHANGED
|
@@ -10,6 +10,7 @@ const makeConfig = (x) => {
|
|
|
10
10
|
const arbitrum = makeConfig({
|
|
11
11
|
...chains.arbitrum,
|
|
12
12
|
name: "Arbitrum",
|
|
13
|
+
liteChain: true,
|
|
13
14
|
launchTime: 1688997600,
|
|
14
15
|
transactionType: "eip1559",
|
|
15
16
|
sortIndex: 1,
|
|
@@ -459,6 +460,7 @@ const avalanche = makeConfig({
|
|
|
459
460
|
const base = makeConfig({
|
|
460
461
|
...chains.base,
|
|
461
462
|
sortIndex: 2,
|
|
463
|
+
liteChain: true,
|
|
462
464
|
launchTime: 1707321600,
|
|
463
465
|
transactionType: "eip1559",
|
|
464
466
|
blockTimeSeconds: 2,
|
|
@@ -3968,6 +3970,7 @@ const nibiru = makeConfig({
|
|
|
3968
3970
|
const optimism = makeConfig({
|
|
3969
3971
|
...chains.optimism,
|
|
3970
3972
|
name: "Optimism",
|
|
3973
|
+
liteChain: true,
|
|
3971
3974
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54",
|
|
3972
3975
|
blockTimeSeconds: 0.5,
|
|
3973
3976
|
launchTime: 1688997600,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const arbitrum: Readonly<{
|
|
2
2
|
name: "Arbitrum";
|
|
3
|
+
liteChain: true;
|
|
3
4
|
launchTime: 1688997600;
|
|
4
5
|
transactionType: "eip1559";
|
|
5
6
|
sortIndex: 1;
|
|
@@ -201,8 +202,10 @@ export declare const arbitrum: Readonly<{
|
|
|
201
202
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
202
203
|
formatters?: undefined | undefined;
|
|
203
204
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
205
|
+
client: import("viem").Client;
|
|
204
206
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
205
207
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
208
|
+
client: import("viem").Client;
|
|
206
209
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
207
210
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
208
211
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -141,8 +141,10 @@ export declare const avalanche: Readonly<{
|
|
|
141
141
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
142
142
|
formatters?: undefined | undefined;
|
|
143
143
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
144
|
+
client: import("viem").Client;
|
|
144
145
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
145
146
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
147
|
+
client: import("viem").Client;
|
|
146
148
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
147
149
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
148
150
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const base: Readonly<{
|
|
2
2
|
sortIndex: 2;
|
|
3
|
+
liteChain: true;
|
|
3
4
|
launchTime: 1707321600;
|
|
4
5
|
transactionType: "eip1559";
|
|
5
6
|
blockTimeSeconds: 2;
|
|
@@ -268,6 +269,7 @@ export declare const base: Readonly<{
|
|
|
268
269
|
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
269
270
|
blockHash: `0x${string}` | null;
|
|
270
271
|
blockNumber: bigint | null;
|
|
272
|
+
blockTimestamp?: bigint | undefined;
|
|
271
273
|
from: import("abitype").Address;
|
|
272
274
|
gas: bigint;
|
|
273
275
|
hash: import("viem").Hash;
|
|
@@ -300,6 +302,7 @@ export declare const base: Readonly<{
|
|
|
300
302
|
value: bigint;
|
|
301
303
|
blockHash: `0x${string}` | null;
|
|
302
304
|
blockNumber: bigint | null;
|
|
305
|
+
blockTimestamp?: bigint | undefined;
|
|
303
306
|
hash: import("viem").Hash;
|
|
304
307
|
input: import("viem").Hex;
|
|
305
308
|
transactionIndex: number | null;
|
|
@@ -320,6 +323,7 @@ export declare const base: Readonly<{
|
|
|
320
323
|
} | {
|
|
321
324
|
blockHash: `0x${string}` | null;
|
|
322
325
|
blockNumber: bigint | null;
|
|
326
|
+
blockTimestamp?: bigint | undefined;
|
|
323
327
|
from: import("abitype").Address;
|
|
324
328
|
gas: bigint;
|
|
325
329
|
hash: import("viem").Hash;
|
|
@@ -348,6 +352,7 @@ export declare const base: Readonly<{
|
|
|
348
352
|
} | {
|
|
349
353
|
blockHash: `0x${string}` | null;
|
|
350
354
|
blockNumber: bigint | null;
|
|
355
|
+
blockTimestamp?: bigint | undefined;
|
|
351
356
|
from: import("abitype").Address;
|
|
352
357
|
gas: bigint;
|
|
353
358
|
hash: import("viem").Hash;
|
|
@@ -376,6 +381,7 @@ export declare const base: Readonly<{
|
|
|
376
381
|
} | {
|
|
377
382
|
blockHash: `0x${string}` | null;
|
|
378
383
|
blockNumber: bigint | null;
|
|
384
|
+
blockTimestamp?: bigint | undefined;
|
|
379
385
|
from: import("abitype").Address;
|
|
380
386
|
gas: bigint;
|
|
381
387
|
hash: import("viem").Hash;
|
|
@@ -404,6 +410,7 @@ export declare const base: Readonly<{
|
|
|
404
410
|
} | {
|
|
405
411
|
blockHash: `0x${string}` | null;
|
|
406
412
|
blockNumber: bigint | null;
|
|
413
|
+
blockTimestamp?: bigint | undefined;
|
|
407
414
|
from: import("abitype").Address;
|
|
408
415
|
gas: bigint;
|
|
409
416
|
hash: import("viem").Hash;
|
|
@@ -453,6 +460,8 @@ export declare const base: Readonly<{
|
|
|
453
460
|
transactionHash: import("viem").Hash;
|
|
454
461
|
transactionIndex: number;
|
|
455
462
|
type: import("viem").TransactionType;
|
|
463
|
+
depositNonce?: bigint | undefined | undefined;
|
|
464
|
+
depositReceiptVersion?: number | undefined | undefined;
|
|
456
465
|
l1GasPrice: bigint | null;
|
|
457
466
|
l1GasUsed: bigint | null;
|
|
458
467
|
l1Fee: bigint | null;
|
|
@@ -462,8 +471,10 @@ export declare const base: Readonly<{
|
|
|
462
471
|
};
|
|
463
472
|
};
|
|
464
473
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
474
|
+
client: import("viem").Client;
|
|
465
475
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
466
476
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
477
|
+
client: import("viem").Client;
|
|
467
478
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
468
479
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
469
480
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -209,6 +209,7 @@ export declare const blast: Readonly<{
|
|
|
209
209
|
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
210
210
|
blockHash: `0x${string}` | null;
|
|
211
211
|
blockNumber: bigint | null;
|
|
212
|
+
blockTimestamp?: bigint | undefined;
|
|
212
213
|
from: import("abitype").Address;
|
|
213
214
|
gas: bigint;
|
|
214
215
|
hash: import("viem").Hash;
|
|
@@ -241,6 +242,7 @@ export declare const blast: Readonly<{
|
|
|
241
242
|
value: bigint;
|
|
242
243
|
blockHash: `0x${string}` | null;
|
|
243
244
|
blockNumber: bigint | null;
|
|
245
|
+
blockTimestamp?: bigint | undefined;
|
|
244
246
|
hash: import("viem").Hash;
|
|
245
247
|
input: import("viem").Hex;
|
|
246
248
|
transactionIndex: number | null;
|
|
@@ -261,6 +263,7 @@ export declare const blast: Readonly<{
|
|
|
261
263
|
} | {
|
|
262
264
|
blockHash: `0x${string}` | null;
|
|
263
265
|
blockNumber: bigint | null;
|
|
266
|
+
blockTimestamp?: bigint | undefined;
|
|
264
267
|
from: import("abitype").Address;
|
|
265
268
|
gas: bigint;
|
|
266
269
|
hash: import("viem").Hash;
|
|
@@ -289,6 +292,7 @@ export declare const blast: Readonly<{
|
|
|
289
292
|
} | {
|
|
290
293
|
blockHash: `0x${string}` | null;
|
|
291
294
|
blockNumber: bigint | null;
|
|
295
|
+
blockTimestamp?: bigint | undefined;
|
|
292
296
|
from: import("abitype").Address;
|
|
293
297
|
gas: bigint;
|
|
294
298
|
hash: import("viem").Hash;
|
|
@@ -317,6 +321,7 @@ export declare const blast: Readonly<{
|
|
|
317
321
|
} | {
|
|
318
322
|
blockHash: `0x${string}` | null;
|
|
319
323
|
blockNumber: bigint | null;
|
|
324
|
+
blockTimestamp?: bigint | undefined;
|
|
320
325
|
from: import("abitype").Address;
|
|
321
326
|
gas: bigint;
|
|
322
327
|
hash: import("viem").Hash;
|
|
@@ -345,6 +350,7 @@ export declare const blast: Readonly<{
|
|
|
345
350
|
} | {
|
|
346
351
|
blockHash: `0x${string}` | null;
|
|
347
352
|
blockNumber: bigint | null;
|
|
353
|
+
blockTimestamp?: bigint | undefined;
|
|
348
354
|
from: import("abitype").Address;
|
|
349
355
|
gas: bigint;
|
|
350
356
|
hash: import("viem").Hash;
|
|
@@ -394,6 +400,8 @@ export declare const blast: Readonly<{
|
|
|
394
400
|
transactionHash: import("viem").Hash;
|
|
395
401
|
transactionIndex: number;
|
|
396
402
|
type: import("viem").TransactionType;
|
|
403
|
+
depositNonce?: bigint | undefined | undefined;
|
|
404
|
+
depositReceiptVersion?: number | undefined | undefined;
|
|
397
405
|
l1GasPrice: bigint | null;
|
|
398
406
|
l1GasUsed: bigint | null;
|
|
399
407
|
l1Fee: bigint | null;
|
|
@@ -403,8 +411,10 @@ export declare const blast: Readonly<{
|
|
|
403
411
|
};
|
|
404
412
|
};
|
|
405
413
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
414
|
+
client: import("viem").Client;
|
|
406
415
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
407
416
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
417
|
+
client: import("viem").Client;
|
|
408
418
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
409
419
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
410
420
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -207,6 +207,7 @@ export declare const bob: Readonly<{
|
|
|
207
207
|
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
208
208
|
blockHash: `0x${string}` | null;
|
|
209
209
|
blockNumber: bigint | null;
|
|
210
|
+
blockTimestamp?: bigint | undefined;
|
|
210
211
|
from: import("abitype").Address;
|
|
211
212
|
gas: bigint;
|
|
212
213
|
hash: import("viem").Hash;
|
|
@@ -239,6 +240,7 @@ export declare const bob: Readonly<{
|
|
|
239
240
|
value: bigint;
|
|
240
241
|
blockHash: `0x${string}` | null;
|
|
241
242
|
blockNumber: bigint | null;
|
|
243
|
+
blockTimestamp?: bigint | undefined;
|
|
242
244
|
hash: import("viem").Hash;
|
|
243
245
|
input: import("viem").Hex;
|
|
244
246
|
transactionIndex: number | null;
|
|
@@ -259,6 +261,7 @@ export declare const bob: Readonly<{
|
|
|
259
261
|
} | {
|
|
260
262
|
blockHash: `0x${string}` | null;
|
|
261
263
|
blockNumber: bigint | null;
|
|
264
|
+
blockTimestamp?: bigint | undefined;
|
|
262
265
|
from: import("abitype").Address;
|
|
263
266
|
gas: bigint;
|
|
264
267
|
hash: import("viem").Hash;
|
|
@@ -287,6 +290,7 @@ export declare const bob: Readonly<{
|
|
|
287
290
|
} | {
|
|
288
291
|
blockHash: `0x${string}` | null;
|
|
289
292
|
blockNumber: bigint | null;
|
|
293
|
+
blockTimestamp?: bigint | undefined;
|
|
290
294
|
from: import("abitype").Address;
|
|
291
295
|
gas: bigint;
|
|
292
296
|
hash: import("viem").Hash;
|
|
@@ -315,6 +319,7 @@ export declare const bob: Readonly<{
|
|
|
315
319
|
} | {
|
|
316
320
|
blockHash: `0x${string}` | null;
|
|
317
321
|
blockNumber: bigint | null;
|
|
322
|
+
blockTimestamp?: bigint | undefined;
|
|
318
323
|
from: import("abitype").Address;
|
|
319
324
|
gas: bigint;
|
|
320
325
|
hash: import("viem").Hash;
|
|
@@ -343,6 +348,7 @@ export declare const bob: Readonly<{
|
|
|
343
348
|
} | {
|
|
344
349
|
blockHash: `0x${string}` | null;
|
|
345
350
|
blockNumber: bigint | null;
|
|
351
|
+
blockTimestamp?: bigint | undefined;
|
|
346
352
|
from: import("abitype").Address;
|
|
347
353
|
gas: bigint;
|
|
348
354
|
hash: import("viem").Hash;
|
|
@@ -392,6 +398,8 @@ export declare const bob: Readonly<{
|
|
|
392
398
|
transactionHash: import("viem").Hash;
|
|
393
399
|
transactionIndex: number;
|
|
394
400
|
type: import("viem").TransactionType;
|
|
401
|
+
depositNonce?: bigint | undefined | undefined;
|
|
402
|
+
depositReceiptVersion?: number | undefined | undefined;
|
|
395
403
|
l1GasPrice: bigint | null;
|
|
396
404
|
l1GasUsed: bigint | null;
|
|
397
405
|
l1Fee: bigint | null;
|
|
@@ -401,8 +409,10 @@ export declare const bob: Readonly<{
|
|
|
401
409
|
};
|
|
402
410
|
};
|
|
403
411
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
412
|
+
client: import("viem").Client;
|
|
404
413
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
405
414
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
415
|
+
client: import("viem").Client;
|
|
406
416
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
407
417
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
408
418
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -135,8 +135,10 @@ export declare const boba: Readonly<{
|
|
|
135
135
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
136
136
|
formatters?: undefined | undefined;
|
|
137
137
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
138
|
+
client: import("viem").Client;
|
|
138
139
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
139
140
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
141
|
+
client: import("viem").Client;
|
|
140
142
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
141
143
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
142
144
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -181,8 +181,10 @@ export declare const bsc: Readonly<{
|
|
|
181
181
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
182
182
|
formatters?: undefined | undefined;
|
|
183
183
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
184
|
+
client: import("viem").Client;
|
|
184
185
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
185
186
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
187
|
+
client: import("viem").Client;
|
|
186
188
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
187
189
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
188
190
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -181,6 +181,7 @@ export declare const celo: Readonly<{
|
|
|
181
181
|
value: bigint;
|
|
182
182
|
blockHash: `0x${string}` | null;
|
|
183
183
|
blockNumber: bigint | null;
|
|
184
|
+
blockTimestamp?: bigint | undefined;
|
|
184
185
|
hash: import("viem").Hash;
|
|
185
186
|
input: import("viem").Hex;
|
|
186
187
|
transactionIndex: number | null;
|
|
@@ -204,6 +205,7 @@ export declare const celo: Readonly<{
|
|
|
204
205
|
} | {
|
|
205
206
|
blockHash: `0x${string}` | null;
|
|
206
207
|
blockNumber: bigint | null;
|
|
208
|
+
blockTimestamp?: bigint | undefined;
|
|
207
209
|
from: import("abitype").Address;
|
|
208
210
|
gas: bigint;
|
|
209
211
|
hash: import("viem").Hash;
|
|
@@ -235,6 +237,7 @@ export declare const celo: Readonly<{
|
|
|
235
237
|
} | {
|
|
236
238
|
blockHash: `0x${string}` | null;
|
|
237
239
|
blockNumber: bigint | null;
|
|
240
|
+
blockTimestamp?: bigint | undefined;
|
|
238
241
|
from: import("abitype").Address;
|
|
239
242
|
gas: bigint;
|
|
240
243
|
hash: import("viem").Hash;
|
|
@@ -266,6 +269,7 @@ export declare const celo: Readonly<{
|
|
|
266
269
|
} | {
|
|
267
270
|
blockHash: `0x${string}` | null;
|
|
268
271
|
blockNumber: bigint | null;
|
|
272
|
+
blockTimestamp?: bigint | undefined;
|
|
269
273
|
from: import("abitype").Address;
|
|
270
274
|
gas: bigint;
|
|
271
275
|
hash: import("viem").Hash;
|
|
@@ -297,6 +301,7 @@ export declare const celo: Readonly<{
|
|
|
297
301
|
} | {
|
|
298
302
|
blockHash: `0x${string}` | null;
|
|
299
303
|
blockNumber: bigint | null;
|
|
304
|
+
blockTimestamp?: bigint | undefined;
|
|
300
305
|
from: import("abitype").Address;
|
|
301
306
|
gas: bigint;
|
|
302
307
|
hash: import("viem").Hash;
|
|
@@ -328,6 +333,7 @@ export declare const celo: Readonly<{
|
|
|
328
333
|
} | {
|
|
329
334
|
blockHash: `0x${string}` | null;
|
|
330
335
|
blockNumber: bigint | null;
|
|
336
|
+
blockTimestamp?: bigint | undefined;
|
|
331
337
|
from: import("abitype").Address;
|
|
332
338
|
gas: bigint;
|
|
333
339
|
hash: import("viem").Hash;
|
|
@@ -359,6 +365,7 @@ export declare const celo: Readonly<{
|
|
|
359
365
|
} | {
|
|
360
366
|
blockHash: `0x${string}` | null;
|
|
361
367
|
blockNumber: bigint | null;
|
|
368
|
+
blockTimestamp?: bigint | undefined;
|
|
362
369
|
from: import("abitype").Address;
|
|
363
370
|
gas: bigint;
|
|
364
371
|
hash: import("viem").Hash;
|
|
@@ -390,6 +397,7 @@ export declare const celo: Readonly<{
|
|
|
390
397
|
} | {
|
|
391
398
|
blockHash: `0x${string}` | null;
|
|
392
399
|
blockNumber: bigint | null;
|
|
400
|
+
blockTimestamp?: bigint | undefined;
|
|
393
401
|
from: import("abitype").Address;
|
|
394
402
|
gas: bigint;
|
|
395
403
|
hash: import("viem").Hash;
|
|
@@ -607,6 +615,7 @@ export declare const celo: Readonly<{
|
|
|
607
615
|
value: bigint;
|
|
608
616
|
blockHash: `0x${string}` | null;
|
|
609
617
|
blockNumber: bigint | null;
|
|
618
|
+
blockTimestamp?: bigint | undefined;
|
|
610
619
|
hash: import("viem").Hash;
|
|
611
620
|
input: import("viem").Hex;
|
|
612
621
|
transactionIndex: number | null;
|
|
@@ -630,6 +639,7 @@ export declare const celo: Readonly<{
|
|
|
630
639
|
} | {
|
|
631
640
|
blockHash: `0x${string}` | null;
|
|
632
641
|
blockNumber: bigint | null;
|
|
642
|
+
blockTimestamp?: bigint | undefined;
|
|
633
643
|
from: import("abitype").Address;
|
|
634
644
|
gas: bigint;
|
|
635
645
|
hash: import("viem").Hash;
|
|
@@ -661,6 +671,7 @@ export declare const celo: Readonly<{
|
|
|
661
671
|
} | {
|
|
662
672
|
blockHash: `0x${string}` | null;
|
|
663
673
|
blockNumber: bigint | null;
|
|
674
|
+
blockTimestamp?: bigint | undefined;
|
|
664
675
|
from: import("abitype").Address;
|
|
665
676
|
gas: bigint;
|
|
666
677
|
hash: import("viem").Hash;
|
|
@@ -692,6 +703,7 @@ export declare const celo: Readonly<{
|
|
|
692
703
|
} | {
|
|
693
704
|
blockHash: `0x${string}` | null;
|
|
694
705
|
blockNumber: bigint | null;
|
|
706
|
+
blockTimestamp?: bigint | undefined;
|
|
695
707
|
from: import("abitype").Address;
|
|
696
708
|
gas: bigint;
|
|
697
709
|
hash: import("viem").Hash;
|
|
@@ -723,6 +735,7 @@ export declare const celo: Readonly<{
|
|
|
723
735
|
} | {
|
|
724
736
|
blockHash: `0x${string}` | null;
|
|
725
737
|
blockNumber: bigint | null;
|
|
738
|
+
blockTimestamp?: bigint | undefined;
|
|
726
739
|
from: import("abitype").Address;
|
|
727
740
|
gas: bigint;
|
|
728
741
|
hash: import("viem").Hash;
|
|
@@ -754,6 +767,7 @@ export declare const celo: Readonly<{
|
|
|
754
767
|
} | {
|
|
755
768
|
blockHash: `0x${string}` | null;
|
|
756
769
|
blockNumber: bigint | null;
|
|
770
|
+
blockTimestamp?: bigint | undefined;
|
|
757
771
|
from: import("abitype").Address;
|
|
758
772
|
gas: bigint;
|
|
759
773
|
hash: import("viem").Hash;
|
|
@@ -785,6 +799,7 @@ export declare const celo: Readonly<{
|
|
|
785
799
|
} | {
|
|
786
800
|
blockHash: `0x${string}` | null;
|
|
787
801
|
blockNumber: bigint | null;
|
|
802
|
+
blockTimestamp?: bigint | undefined;
|
|
788
803
|
from: import("abitype").Address;
|
|
789
804
|
gas: bigint;
|
|
790
805
|
hash: import("viem").Hash;
|
|
@@ -816,6 +831,7 @@ export declare const celo: Readonly<{
|
|
|
816
831
|
} | {
|
|
817
832
|
blockHash: `0x${string}` | null;
|
|
818
833
|
blockNumber: bigint | null;
|
|
834
|
+
blockTimestamp?: bigint | undefined;
|
|
819
835
|
from: import("abitype").Address;
|
|
820
836
|
gas: bigint;
|
|
821
837
|
hash: import("viem").Hash;
|
|
@@ -987,8 +1003,10 @@ export declare const celo: Readonly<{
|
|
|
987
1003
|
};
|
|
988
1004
|
};
|
|
989
1005
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1006
|
+
client: import("viem").Client;
|
|
990
1007
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
991
1008
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1009
|
+
client: import("viem").Client;
|
|
992
1010
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
993
1011
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
994
1012
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -131,8 +131,10 @@ export declare const corn: Readonly<{
|
|
|
131
131
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
132
132
|
formatters?: undefined | undefined;
|
|
133
133
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
134
|
+
client: import("viem").Client;
|
|
134
135
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
135
136
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
137
|
+
client: import("viem").Client;
|
|
136
138
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
137
139
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
138
140
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -139,8 +139,10 @@ export declare const etherlink: Readonly<{
|
|
|
139
139
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
140
140
|
formatters?: undefined | undefined;
|
|
141
141
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
142
|
+
client: import("viem").Client;
|
|
142
143
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
143
144
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
145
|
+
client: import("viem").Client;
|
|
144
146
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
145
147
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
146
148
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -139,8 +139,10 @@ export declare const filecoin: Readonly<{
|
|
|
139
139
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
140
140
|
formatters?: undefined | undefined;
|
|
141
141
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
142
|
+
client: import("viem").Client;
|
|
142
143
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
143
144
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
145
|
+
client: import("viem").Client;
|
|
144
146
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
145
147
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
146
148
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -111,8 +111,10 @@ export declare const gensyn: Readonly<{
|
|
|
111
111
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
112
112
|
formatters?: undefined | undefined;
|
|
113
113
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
114
|
+
client: import("viem").Client;
|
|
114
115
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
115
116
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
117
|
+
client: import("viem").Client;
|
|
116
118
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
117
119
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
118
120
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -172,8 +172,10 @@ export declare const gnosis: Readonly<{
|
|
|
172
172
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
173
173
|
formatters?: undefined | undefined;
|
|
174
174
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
175
|
+
client: import("viem").Client;
|
|
175
176
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
176
177
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
178
|
+
client: import("viem").Client;
|
|
177
179
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
178
180
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
179
181
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -120,8 +120,10 @@ export declare const goat: Readonly<{
|
|
|
120
120
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
121
121
|
formatters?: undefined | undefined;
|
|
122
122
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
123
|
+
client: import("viem").Client;
|
|
123
124
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
124
125
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
126
|
+
client: import("viem").Client;
|
|
125
127
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
126
128
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
127
129
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -139,8 +139,10 @@ export declare const hemi: Readonly<{
|
|
|
139
139
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
140
140
|
formatters?: undefined | undefined;
|
|
141
141
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
142
|
+
client: import("viem").Client;
|
|
142
143
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
143
144
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
145
|
+
client: import("viem").Client;
|
|
144
146
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
145
147
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
146
148
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -109,8 +109,10 @@ export declare const hyperevm: Readonly<{
|
|
|
109
109
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
110
110
|
formatters?: undefined | undefined;
|
|
111
111
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
112
|
+
client: import("viem").Client;
|
|
112
113
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
113
114
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
115
|
+
client: import("viem").Client;
|
|
114
116
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
115
117
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
116
118
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -124,8 +124,10 @@ export declare const lens: Readonly<{
|
|
|
124
124
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
125
125
|
formatters?: undefined | undefined;
|
|
126
126
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
127
|
+
client: import("viem").Client;
|
|
127
128
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
128
129
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
130
|
+
client: import("viem").Client;
|
|
129
131
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
130
132
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
131
133
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -129,8 +129,10 @@ export declare const lightlink: Readonly<{
|
|
|
129
129
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
130
130
|
formatters?: undefined | undefined;
|
|
131
131
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
132
|
+
client: import("viem").Client;
|
|
132
133
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
133
134
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
135
|
+
client: import("viem").Client;
|
|
134
136
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
135
137
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
136
138
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
@@ -171,8 +171,10 @@ export declare const linea: Readonly<{
|
|
|
171
171
|
};
|
|
172
172
|
formatters?: undefined | undefined;
|
|
173
173
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
174
|
+
client: import("viem").Client;
|
|
174
175
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
175
176
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
177
|
+
client: import("viem").Client;
|
|
176
178
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
177
179
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
178
180
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|