@gfxlabs/oku-chains 1.1.270 → 1.1.271
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 +5567 -5341
- package/dist/index-mjs.js +297 -71
- package/dist/index.js +297 -71
- package/dist/types/browser.d.ts +336 -52
- package/dist/types/index-mjs.d.ts +336 -52
- package/dist/types/index.d.ts +336 -52
- package/package.json +3 -2
|
@@ -50,6 +50,15 @@ declare const arbitrum: Readonly<{
|
|
|
50
50
|
address: string;
|
|
51
51
|
})[];
|
|
52
52
|
};
|
|
53
|
+
layerzero: {
|
|
54
|
+
eid: number;
|
|
55
|
+
tokens: {
|
|
56
|
+
id: number;
|
|
57
|
+
symbol: string;
|
|
58
|
+
project: string;
|
|
59
|
+
OFTAddress: string;
|
|
60
|
+
}[];
|
|
61
|
+
};
|
|
53
62
|
wanbridge: {
|
|
54
63
|
requiredConfirmations: number;
|
|
55
64
|
};
|
|
@@ -251,6 +260,15 @@ declare const base: Readonly<{
|
|
|
251
260
|
chain: string;
|
|
252
261
|
timeToFinalize: number;
|
|
253
262
|
};
|
|
263
|
+
layerzero: {
|
|
264
|
+
eid: number;
|
|
265
|
+
tokens: {
|
|
266
|
+
id: number;
|
|
267
|
+
symbol: string;
|
|
268
|
+
project: string;
|
|
269
|
+
OFTAddress: string;
|
|
270
|
+
}[];
|
|
271
|
+
};
|
|
254
272
|
};
|
|
255
273
|
oracles: {
|
|
256
274
|
cmc: {
|
|
@@ -409,7 +427,7 @@ declare const base: Readonly<{
|
|
|
409
427
|
gasUsed: bigint;
|
|
410
428
|
hash: `0x${string}` | null;
|
|
411
429
|
logsBloom: `0x${string}` | null;
|
|
412
|
-
miner: import("
|
|
430
|
+
miner: import("abitype").Address;
|
|
413
431
|
mixHash: import("viem").Hash;
|
|
414
432
|
nonce: `0x${string}` | null;
|
|
415
433
|
number: bigint | null;
|
|
@@ -436,14 +454,14 @@ declare const base: Readonly<{
|
|
|
436
454
|
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
437
455
|
blockHash: `0x${string}` | null;
|
|
438
456
|
blockNumber: bigint | null;
|
|
439
|
-
from: import("
|
|
457
|
+
from: import("abitype").Address;
|
|
440
458
|
gas: bigint;
|
|
441
459
|
hash: import("viem").Hash;
|
|
442
460
|
input: import("viem").Hex;
|
|
443
461
|
nonce: number;
|
|
444
462
|
r: import("viem").Hex;
|
|
445
463
|
s: import("viem").Hex;
|
|
446
|
-
to: import("
|
|
464
|
+
to: import("abitype").Address | null;
|
|
447
465
|
transactionIndex: number | null;
|
|
448
466
|
typeHex: import("viem").Hex | null;
|
|
449
467
|
v: bigint;
|
|
@@ -461,8 +479,8 @@ declare const base: Readonly<{
|
|
|
461
479
|
r: import("viem").Hex;
|
|
462
480
|
s: import("viem").Hex;
|
|
463
481
|
v: bigint;
|
|
464
|
-
to: import("
|
|
465
|
-
from: import("
|
|
482
|
+
to: import("abitype").Address | null;
|
|
483
|
+
from: import("abitype").Address;
|
|
466
484
|
gas: bigint;
|
|
467
485
|
nonce: number;
|
|
468
486
|
value: bigint;
|
|
@@ -488,14 +506,14 @@ declare const base: Readonly<{
|
|
|
488
506
|
} | {
|
|
489
507
|
blockHash: `0x${string}` | null;
|
|
490
508
|
blockNumber: bigint | null;
|
|
491
|
-
from: import("
|
|
509
|
+
from: import("abitype").Address;
|
|
492
510
|
gas: bigint;
|
|
493
511
|
hash: import("viem").Hash;
|
|
494
512
|
input: import("viem").Hex;
|
|
495
513
|
nonce: number;
|
|
496
514
|
r: import("viem").Hex;
|
|
497
515
|
s: import("viem").Hex;
|
|
498
|
-
to: import("
|
|
516
|
+
to: import("abitype").Address | null;
|
|
499
517
|
transactionIndex: number | null;
|
|
500
518
|
typeHex: import("viem").Hex | null;
|
|
501
519
|
v: bigint;
|
|
@@ -516,14 +534,14 @@ declare const base: Readonly<{
|
|
|
516
534
|
} | {
|
|
517
535
|
blockHash: `0x${string}` | null;
|
|
518
536
|
blockNumber: bigint | null;
|
|
519
|
-
from: import("
|
|
537
|
+
from: import("abitype").Address;
|
|
520
538
|
gas: bigint;
|
|
521
539
|
hash: import("viem").Hash;
|
|
522
540
|
input: import("viem").Hex;
|
|
523
541
|
nonce: number;
|
|
524
542
|
r: import("viem").Hex;
|
|
525
543
|
s: import("viem").Hex;
|
|
526
|
-
to: import("
|
|
544
|
+
to: import("abitype").Address | null;
|
|
527
545
|
transactionIndex: number | null;
|
|
528
546
|
typeHex: import("viem").Hex | null;
|
|
529
547
|
v: bigint;
|
|
@@ -544,14 +562,14 @@ declare const base: Readonly<{
|
|
|
544
562
|
} | {
|
|
545
563
|
blockHash: `0x${string}` | null;
|
|
546
564
|
blockNumber: bigint | null;
|
|
547
|
-
from: import("
|
|
565
|
+
from: import("abitype").Address;
|
|
548
566
|
gas: bigint;
|
|
549
567
|
hash: import("viem").Hash;
|
|
550
568
|
input: import("viem").Hex;
|
|
551
569
|
nonce: number;
|
|
552
570
|
r: import("viem").Hex;
|
|
553
571
|
s: import("viem").Hex;
|
|
554
|
-
to: import("
|
|
572
|
+
to: import("abitype").Address | null;
|
|
555
573
|
transactionIndex: number | null;
|
|
556
574
|
typeHex: import("viem").Hex | null;
|
|
557
575
|
v: bigint;
|
|
@@ -572,14 +590,14 @@ declare const base: Readonly<{
|
|
|
572
590
|
} | {
|
|
573
591
|
blockHash: `0x${string}` | null;
|
|
574
592
|
blockNumber: bigint | null;
|
|
575
|
-
from: import("
|
|
593
|
+
from: import("abitype").Address;
|
|
576
594
|
gas: bigint;
|
|
577
595
|
hash: import("viem").Hash;
|
|
578
596
|
input: import("viem").Hex;
|
|
579
597
|
nonce: number;
|
|
580
598
|
r: import("viem").Hex;
|
|
581
599
|
s: import("viem").Hex;
|
|
582
|
-
to: import("
|
|
600
|
+
to: import("abitype").Address | null;
|
|
583
601
|
transactionIndex: number | null;
|
|
584
602
|
typeHex: import("viem").Hex | null;
|
|
585
603
|
v: bigint;
|
|
@@ -608,16 +626,16 @@ declare const base: Readonly<{
|
|
|
608
626
|
blobGasUsed?: bigint | undefined;
|
|
609
627
|
blockHash: import("viem").Hash;
|
|
610
628
|
blockNumber: bigint;
|
|
611
|
-
contractAddress: import("
|
|
629
|
+
contractAddress: import("abitype").Address | null | undefined;
|
|
612
630
|
cumulativeGasUsed: bigint;
|
|
613
631
|
effectiveGasPrice: bigint;
|
|
614
|
-
from: import("
|
|
632
|
+
from: import("abitype").Address;
|
|
615
633
|
gasUsed: bigint;
|
|
616
634
|
logs: import("viem").Log<bigint, number, false>[];
|
|
617
635
|
logsBloom: import("viem").Hex;
|
|
618
636
|
root?: `0x${string}` | undefined;
|
|
619
637
|
status: "success" | "reverted";
|
|
620
|
-
to: import("
|
|
638
|
+
to: import("abitype").Address | null;
|
|
621
639
|
transactionHash: import("viem").Hash;
|
|
622
640
|
transactionIndex: number;
|
|
623
641
|
type: import("viem").TransactionType;
|
|
@@ -794,7 +812,7 @@ declare const blast: Readonly<{
|
|
|
794
812
|
gasUsed: bigint;
|
|
795
813
|
hash: `0x${string}` | null;
|
|
796
814
|
logsBloom: `0x${string}` | null;
|
|
797
|
-
miner: import("
|
|
815
|
+
miner: import("abitype").Address;
|
|
798
816
|
mixHash: import("viem").Hash;
|
|
799
817
|
nonce: `0x${string}` | null;
|
|
800
818
|
number: bigint | null;
|
|
@@ -821,14 +839,14 @@ declare const blast: Readonly<{
|
|
|
821
839
|
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
822
840
|
blockHash: `0x${string}` | null;
|
|
823
841
|
blockNumber: bigint | null;
|
|
824
|
-
from: import("
|
|
842
|
+
from: import("abitype").Address;
|
|
825
843
|
gas: bigint;
|
|
826
844
|
hash: import("viem").Hash;
|
|
827
845
|
input: import("viem").Hex;
|
|
828
846
|
nonce: number;
|
|
829
847
|
r: import("viem").Hex;
|
|
830
848
|
s: import("viem").Hex;
|
|
831
|
-
to: import("
|
|
849
|
+
to: import("abitype").Address | null;
|
|
832
850
|
transactionIndex: number | null;
|
|
833
851
|
typeHex: import("viem").Hex | null;
|
|
834
852
|
v: bigint;
|
|
@@ -846,8 +864,8 @@ declare const blast: Readonly<{
|
|
|
846
864
|
r: import("viem").Hex;
|
|
847
865
|
s: import("viem").Hex;
|
|
848
866
|
v: bigint;
|
|
849
|
-
to: import("
|
|
850
|
-
from: import("
|
|
867
|
+
to: import("abitype").Address | null;
|
|
868
|
+
from: import("abitype").Address;
|
|
851
869
|
gas: bigint;
|
|
852
870
|
nonce: number;
|
|
853
871
|
value: bigint;
|
|
@@ -873,14 +891,14 @@ declare const blast: Readonly<{
|
|
|
873
891
|
} | {
|
|
874
892
|
blockHash: `0x${string}` | null;
|
|
875
893
|
blockNumber: bigint | null;
|
|
876
|
-
from: import("
|
|
894
|
+
from: import("abitype").Address;
|
|
877
895
|
gas: bigint;
|
|
878
896
|
hash: import("viem").Hash;
|
|
879
897
|
input: import("viem").Hex;
|
|
880
898
|
nonce: number;
|
|
881
899
|
r: import("viem").Hex;
|
|
882
900
|
s: import("viem").Hex;
|
|
883
|
-
to: import("
|
|
901
|
+
to: import("abitype").Address | null;
|
|
884
902
|
transactionIndex: number | null;
|
|
885
903
|
typeHex: import("viem").Hex | null;
|
|
886
904
|
v: bigint;
|
|
@@ -901,14 +919,14 @@ declare const blast: Readonly<{
|
|
|
901
919
|
} | {
|
|
902
920
|
blockHash: `0x${string}` | null;
|
|
903
921
|
blockNumber: bigint | null;
|
|
904
|
-
from: import("
|
|
922
|
+
from: import("abitype").Address;
|
|
905
923
|
gas: bigint;
|
|
906
924
|
hash: import("viem").Hash;
|
|
907
925
|
input: import("viem").Hex;
|
|
908
926
|
nonce: number;
|
|
909
927
|
r: import("viem").Hex;
|
|
910
928
|
s: import("viem").Hex;
|
|
911
|
-
to: import("
|
|
929
|
+
to: import("abitype").Address | null;
|
|
912
930
|
transactionIndex: number | null;
|
|
913
931
|
typeHex: import("viem").Hex | null;
|
|
914
932
|
v: bigint;
|
|
@@ -929,14 +947,14 @@ declare const blast: Readonly<{
|
|
|
929
947
|
} | {
|
|
930
948
|
blockHash: `0x${string}` | null;
|
|
931
949
|
blockNumber: bigint | null;
|
|
932
|
-
from: import("
|
|
950
|
+
from: import("abitype").Address;
|
|
933
951
|
gas: bigint;
|
|
934
952
|
hash: import("viem").Hash;
|
|
935
953
|
input: import("viem").Hex;
|
|
936
954
|
nonce: number;
|
|
937
955
|
r: import("viem").Hex;
|
|
938
956
|
s: import("viem").Hex;
|
|
939
|
-
to: import("
|
|
957
|
+
to: import("abitype").Address | null;
|
|
940
958
|
transactionIndex: number | null;
|
|
941
959
|
typeHex: import("viem").Hex | null;
|
|
942
960
|
v: bigint;
|
|
@@ -957,14 +975,14 @@ declare const blast: Readonly<{
|
|
|
957
975
|
} | {
|
|
958
976
|
blockHash: `0x${string}` | null;
|
|
959
977
|
blockNumber: bigint | null;
|
|
960
|
-
from: import("
|
|
978
|
+
from: import("abitype").Address;
|
|
961
979
|
gas: bigint;
|
|
962
980
|
hash: import("viem").Hash;
|
|
963
981
|
input: import("viem").Hex;
|
|
964
982
|
nonce: number;
|
|
965
983
|
r: import("viem").Hex;
|
|
966
984
|
s: import("viem").Hex;
|
|
967
|
-
to: import("
|
|
985
|
+
to: import("abitype").Address | null;
|
|
968
986
|
transactionIndex: number | null;
|
|
969
987
|
typeHex: import("viem").Hex | null;
|
|
970
988
|
v: bigint;
|
|
@@ -993,16 +1011,16 @@ declare const blast: Readonly<{
|
|
|
993
1011
|
blobGasUsed?: bigint | undefined;
|
|
994
1012
|
blockHash: import("viem").Hash;
|
|
995
1013
|
blockNumber: bigint;
|
|
996
|
-
contractAddress: import("
|
|
1014
|
+
contractAddress: import("abitype").Address | null | undefined;
|
|
997
1015
|
cumulativeGasUsed: bigint;
|
|
998
1016
|
effectiveGasPrice: bigint;
|
|
999
|
-
from: import("
|
|
1017
|
+
from: import("abitype").Address;
|
|
1000
1018
|
gasUsed: bigint;
|
|
1001
1019
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1002
1020
|
logsBloom: import("viem").Hex;
|
|
1003
1021
|
root?: `0x${string}` | undefined;
|
|
1004
1022
|
status: "success" | "reverted";
|
|
1005
|
-
to: import("
|
|
1023
|
+
to: import("abitype").Address | null;
|
|
1006
1024
|
transactionHash: import("viem").Hash;
|
|
1007
1025
|
transactionIndex: number;
|
|
1008
1026
|
type: import("viem").TransactionType;
|
|
@@ -1609,6 +1627,15 @@ declare const bsc: Readonly<{
|
|
|
1609
1627
|
chain: string;
|
|
1610
1628
|
timeToFinalize: number;
|
|
1611
1629
|
};
|
|
1630
|
+
layerzero: {
|
|
1631
|
+
eid: number;
|
|
1632
|
+
tokens: {
|
|
1633
|
+
id: number;
|
|
1634
|
+
symbol: string;
|
|
1635
|
+
project: string;
|
|
1636
|
+
OFTAddress: string;
|
|
1637
|
+
}[];
|
|
1638
|
+
};
|
|
1612
1639
|
};
|
|
1613
1640
|
oracles: {
|
|
1614
1641
|
cmc: {
|
|
@@ -1739,6 +1766,15 @@ declare const celo: Readonly<{
|
|
|
1739
1766
|
chain: string;
|
|
1740
1767
|
timeToFinalize: number;
|
|
1741
1768
|
};
|
|
1769
|
+
layerzero: {
|
|
1770
|
+
eid: number;
|
|
1771
|
+
tokens: {
|
|
1772
|
+
id: number;
|
|
1773
|
+
symbol: string;
|
|
1774
|
+
project: string;
|
|
1775
|
+
OFTAddress: string;
|
|
1776
|
+
}[];
|
|
1777
|
+
};
|
|
1742
1778
|
};
|
|
1743
1779
|
morpho: {};
|
|
1744
1780
|
oracles: {
|
|
@@ -2677,6 +2713,16 @@ declare const corn: Readonly<{
|
|
|
2677
2713
|
chainSelector: bigint;
|
|
2678
2714
|
tokenAdminRegistry: string;
|
|
2679
2715
|
};
|
|
2716
|
+
layerzero: {
|
|
2717
|
+
eid: number;
|
|
2718
|
+
tokens: {
|
|
2719
|
+
id: number;
|
|
2720
|
+
symbol: string;
|
|
2721
|
+
project: string;
|
|
2722
|
+
OFTAddress: string;
|
|
2723
|
+
address: string;
|
|
2724
|
+
}[];
|
|
2725
|
+
};
|
|
2680
2726
|
};
|
|
2681
2727
|
oracles: {};
|
|
2682
2728
|
morpho: {
|
|
@@ -2725,7 +2771,7 @@ declare const corn: Readonly<{
|
|
|
2725
2771
|
symbol: string;
|
|
2726
2772
|
address: "0xDF0B24095e15044538866576754F3C964e902Ee6";
|
|
2727
2773
|
})[];
|
|
2728
|
-
stables: ("
|
|
2774
|
+
stables: ("0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb" | "0xDF0B24095e15044538866576754F3C964e902Ee6")[];
|
|
2729
2775
|
watchlist: ("0xe435E14815d28a86c643E4606Ed0e8E5624782c6" | "0x660c6c6c2ad9be9fca2d40da22e1e6142ce5e7ca" | "0x43aA32cf4f6389aB89d8C79092A0fc65899C20ba" | "0x0F12dac5217868b3d6772632543ef16df8df17E5" | "0xbD108c1Dd7802DFF6c24138A72949184FFbe006F" | "0xb6a7be3ca6698859b374640b3db439fda7b7a5e3" | "0x255f0b304f701a0530f5dc1739a3d1469e21dd5f")[];
|
|
2730
2776
|
internalName: "corn";
|
|
2731
2777
|
nativeLogoUrl: "https://assets.oku.trade/natives/corn.png";
|
|
@@ -3082,6 +3128,15 @@ declare const gnosis: Readonly<{
|
|
|
3082
3128
|
address: string;
|
|
3083
3129
|
}[];
|
|
3084
3130
|
};
|
|
3131
|
+
layerzero: {
|
|
3132
|
+
eid: number;
|
|
3133
|
+
tokens: {
|
|
3134
|
+
id: number;
|
|
3135
|
+
symbol: string;
|
|
3136
|
+
project: string;
|
|
3137
|
+
OFTAddress: string;
|
|
3138
|
+
}[];
|
|
3139
|
+
};
|
|
3085
3140
|
};
|
|
3086
3141
|
oracles: {
|
|
3087
3142
|
cmc: {
|
|
@@ -3714,6 +3769,15 @@ declare const linea: Readonly<{
|
|
|
3714
3769
|
chain: string;
|
|
3715
3770
|
timeToFinalize: number;
|
|
3716
3771
|
};
|
|
3772
|
+
layerzero: {
|
|
3773
|
+
eid: number;
|
|
3774
|
+
tokens: {
|
|
3775
|
+
id: number;
|
|
3776
|
+
symbol: string;
|
|
3777
|
+
project: string;
|
|
3778
|
+
OFTAddress: string;
|
|
3779
|
+
}[];
|
|
3780
|
+
};
|
|
3717
3781
|
};
|
|
3718
3782
|
oracles: {
|
|
3719
3783
|
cmc: {
|
|
@@ -4280,6 +4344,15 @@ declare const mainnet: Readonly<{
|
|
|
4280
4344
|
chain: string;
|
|
4281
4345
|
timeToFinalize: number;
|
|
4282
4346
|
};
|
|
4347
|
+
layerzero: {
|
|
4348
|
+
eid: number;
|
|
4349
|
+
tokens: {
|
|
4350
|
+
id: number;
|
|
4351
|
+
symbol: string;
|
|
4352
|
+
project: string;
|
|
4353
|
+
OFTAddress: string;
|
|
4354
|
+
}[];
|
|
4355
|
+
};
|
|
4283
4356
|
};
|
|
4284
4357
|
oracles: {
|
|
4285
4358
|
cmc: {
|
|
@@ -5176,6 +5249,15 @@ declare const moonbeam: Readonly<{
|
|
|
5176
5249
|
chain: string;
|
|
5177
5250
|
timeToFinalize: number;
|
|
5178
5251
|
};
|
|
5252
|
+
layerzero: {
|
|
5253
|
+
eid: number;
|
|
5254
|
+
tokens: {
|
|
5255
|
+
id: number;
|
|
5256
|
+
symbol: string;
|
|
5257
|
+
project: string;
|
|
5258
|
+
OFTAddress: string;
|
|
5259
|
+
}[];
|
|
5260
|
+
};
|
|
5179
5261
|
};
|
|
5180
5262
|
oracles: {
|
|
5181
5263
|
cmc: {
|
|
@@ -5446,6 +5528,15 @@ declare const optimism: Readonly<{
|
|
|
5446
5528
|
chain: string;
|
|
5447
5529
|
timeToFinalize: number;
|
|
5448
5530
|
};
|
|
5531
|
+
layerzero: {
|
|
5532
|
+
eid: number;
|
|
5533
|
+
tokens: {
|
|
5534
|
+
id: number;
|
|
5535
|
+
symbol: string;
|
|
5536
|
+
project: string;
|
|
5537
|
+
OFTAddress: string;
|
|
5538
|
+
}[];
|
|
5539
|
+
};
|
|
5449
5540
|
};
|
|
5450
5541
|
oracles: {
|
|
5451
5542
|
cmc: {
|
|
@@ -5623,7 +5714,7 @@ declare const optimism: Readonly<{
|
|
|
5623
5714
|
gasUsed: bigint;
|
|
5624
5715
|
hash: `0x${string}` | null;
|
|
5625
5716
|
logsBloom: `0x${string}` | null;
|
|
5626
|
-
miner: import("
|
|
5717
|
+
miner: import("abitype").Address;
|
|
5627
5718
|
mixHash: import("viem").Hash;
|
|
5628
5719
|
nonce: `0x${string}` | null;
|
|
5629
5720
|
number: bigint | null;
|
|
@@ -5650,14 +5741,14 @@ declare const optimism: Readonly<{
|
|
|
5650
5741
|
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5651
5742
|
blockHash: `0x${string}` | null;
|
|
5652
5743
|
blockNumber: bigint | null;
|
|
5653
|
-
from: import("
|
|
5744
|
+
from: import("abitype").Address;
|
|
5654
5745
|
gas: bigint;
|
|
5655
5746
|
hash: import("viem").Hash;
|
|
5656
5747
|
input: import("viem").Hex;
|
|
5657
5748
|
nonce: number;
|
|
5658
5749
|
r: import("viem").Hex;
|
|
5659
5750
|
s: import("viem").Hex;
|
|
5660
|
-
to: import("
|
|
5751
|
+
to: import("abitype").Address | null;
|
|
5661
5752
|
transactionIndex: number | null;
|
|
5662
5753
|
typeHex: import("viem").Hex | null;
|
|
5663
5754
|
v: bigint;
|
|
@@ -5675,8 +5766,8 @@ declare const optimism: Readonly<{
|
|
|
5675
5766
|
r: import("viem").Hex;
|
|
5676
5767
|
s: import("viem").Hex;
|
|
5677
5768
|
v: bigint;
|
|
5678
|
-
to: import("
|
|
5679
|
-
from: import("
|
|
5769
|
+
to: import("abitype").Address | null;
|
|
5770
|
+
from: import("abitype").Address;
|
|
5680
5771
|
gas: bigint;
|
|
5681
5772
|
nonce: number;
|
|
5682
5773
|
value: bigint;
|
|
@@ -5702,14 +5793,14 @@ declare const optimism: Readonly<{
|
|
|
5702
5793
|
} | {
|
|
5703
5794
|
blockHash: `0x${string}` | null;
|
|
5704
5795
|
blockNumber: bigint | null;
|
|
5705
|
-
from: import("
|
|
5796
|
+
from: import("abitype").Address;
|
|
5706
5797
|
gas: bigint;
|
|
5707
5798
|
hash: import("viem").Hash;
|
|
5708
5799
|
input: import("viem").Hex;
|
|
5709
5800
|
nonce: number;
|
|
5710
5801
|
r: import("viem").Hex;
|
|
5711
5802
|
s: import("viem").Hex;
|
|
5712
|
-
to: import("
|
|
5803
|
+
to: import("abitype").Address | null;
|
|
5713
5804
|
transactionIndex: number | null;
|
|
5714
5805
|
typeHex: import("viem").Hex | null;
|
|
5715
5806
|
v: bigint;
|
|
@@ -5730,14 +5821,14 @@ declare const optimism: Readonly<{
|
|
|
5730
5821
|
} | {
|
|
5731
5822
|
blockHash: `0x${string}` | null;
|
|
5732
5823
|
blockNumber: bigint | null;
|
|
5733
|
-
from: import("
|
|
5824
|
+
from: import("abitype").Address;
|
|
5734
5825
|
gas: bigint;
|
|
5735
5826
|
hash: import("viem").Hash;
|
|
5736
5827
|
input: import("viem").Hex;
|
|
5737
5828
|
nonce: number;
|
|
5738
5829
|
r: import("viem").Hex;
|
|
5739
5830
|
s: import("viem").Hex;
|
|
5740
|
-
to: import("
|
|
5831
|
+
to: import("abitype").Address | null;
|
|
5741
5832
|
transactionIndex: number | null;
|
|
5742
5833
|
typeHex: import("viem").Hex | null;
|
|
5743
5834
|
v: bigint;
|
|
@@ -5758,14 +5849,14 @@ declare const optimism: Readonly<{
|
|
|
5758
5849
|
} | {
|
|
5759
5850
|
blockHash: `0x${string}` | null;
|
|
5760
5851
|
blockNumber: bigint | null;
|
|
5761
|
-
from: import("
|
|
5852
|
+
from: import("abitype").Address;
|
|
5762
5853
|
gas: bigint;
|
|
5763
5854
|
hash: import("viem").Hash;
|
|
5764
5855
|
input: import("viem").Hex;
|
|
5765
5856
|
nonce: number;
|
|
5766
5857
|
r: import("viem").Hex;
|
|
5767
5858
|
s: import("viem").Hex;
|
|
5768
|
-
to: import("
|
|
5859
|
+
to: import("abitype").Address | null;
|
|
5769
5860
|
transactionIndex: number | null;
|
|
5770
5861
|
typeHex: import("viem").Hex | null;
|
|
5771
5862
|
v: bigint;
|
|
@@ -5786,14 +5877,14 @@ declare const optimism: Readonly<{
|
|
|
5786
5877
|
} | {
|
|
5787
5878
|
blockHash: `0x${string}` | null;
|
|
5788
5879
|
blockNumber: bigint | null;
|
|
5789
|
-
from: import("
|
|
5880
|
+
from: import("abitype").Address;
|
|
5790
5881
|
gas: bigint;
|
|
5791
5882
|
hash: import("viem").Hash;
|
|
5792
5883
|
input: import("viem").Hex;
|
|
5793
5884
|
nonce: number;
|
|
5794
5885
|
r: import("viem").Hex;
|
|
5795
5886
|
s: import("viem").Hex;
|
|
5796
|
-
to: import("
|
|
5887
|
+
to: import("abitype").Address | null;
|
|
5797
5888
|
transactionIndex: number | null;
|
|
5798
5889
|
typeHex: import("viem").Hex | null;
|
|
5799
5890
|
v: bigint;
|
|
@@ -5822,16 +5913,16 @@ declare const optimism: Readonly<{
|
|
|
5822
5913
|
blobGasUsed?: bigint | undefined;
|
|
5823
5914
|
blockHash: import("viem").Hash;
|
|
5824
5915
|
blockNumber: bigint;
|
|
5825
|
-
contractAddress: import("
|
|
5916
|
+
contractAddress: import("abitype").Address | null | undefined;
|
|
5826
5917
|
cumulativeGasUsed: bigint;
|
|
5827
5918
|
effectiveGasPrice: bigint;
|
|
5828
|
-
from: import("
|
|
5919
|
+
from: import("abitype").Address;
|
|
5829
5920
|
gasUsed: bigint;
|
|
5830
5921
|
logs: import("viem").Log<bigint, number, false>[];
|
|
5831
5922
|
logsBloom: import("viem").Hex;
|
|
5832
5923
|
root?: `0x${string}` | undefined;
|
|
5833
5924
|
status: "success" | "reverted";
|
|
5834
|
-
to: import("
|
|
5925
|
+
to: import("abitype").Address | null;
|
|
5835
5926
|
transactionHash: import("viem").Hash;
|
|
5836
5927
|
transactionIndex: number;
|
|
5837
5928
|
type: import("viem").TransactionType;
|
|
@@ -5899,6 +5990,15 @@ declare const polygon: Readonly<{
|
|
|
5899
5990
|
chain: string;
|
|
5900
5991
|
timeToFinalize: number;
|
|
5901
5992
|
};
|
|
5993
|
+
layerzero: {
|
|
5994
|
+
eid: number;
|
|
5995
|
+
tokens: {
|
|
5996
|
+
id: number;
|
|
5997
|
+
symbol: string;
|
|
5998
|
+
project: string;
|
|
5999
|
+
OFTAddress: string;
|
|
6000
|
+
}[];
|
|
6001
|
+
};
|
|
5902
6002
|
};
|
|
5903
6003
|
oracles: {
|
|
5904
6004
|
cmc: {
|
|
@@ -6575,6 +6675,15 @@ declare const sei: Readonly<{
|
|
|
6575
6675
|
address: string;
|
|
6576
6676
|
})[];
|
|
6577
6677
|
};
|
|
6678
|
+
layerzero: {
|
|
6679
|
+
eid: number;
|
|
6680
|
+
tokens: {
|
|
6681
|
+
id: number;
|
|
6682
|
+
symbol: string;
|
|
6683
|
+
project: string;
|
|
6684
|
+
OFTAddress: string;
|
|
6685
|
+
}[];
|
|
6686
|
+
};
|
|
6578
6687
|
};
|
|
6579
6688
|
oracles: {
|
|
6580
6689
|
cmc: {
|
|
@@ -6720,6 +6829,15 @@ declare const sonic: Readonly<{
|
|
|
6720
6829
|
address: string;
|
|
6721
6830
|
}[];
|
|
6722
6831
|
};
|
|
6832
|
+
layerzero: {
|
|
6833
|
+
eid: number;
|
|
6834
|
+
tokens: {
|
|
6835
|
+
id: number;
|
|
6836
|
+
symbol: string;
|
|
6837
|
+
project: string;
|
|
6838
|
+
OFTAddress: string;
|
|
6839
|
+
}[];
|
|
6840
|
+
};
|
|
6723
6841
|
};
|
|
6724
6842
|
oracles: {};
|
|
6725
6843
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
@@ -6840,6 +6958,15 @@ declare const taiko: Readonly<{
|
|
|
6840
6958
|
address: string;
|
|
6841
6959
|
}[];
|
|
6842
6960
|
};
|
|
6961
|
+
layerzero: {
|
|
6962
|
+
eid: number;
|
|
6963
|
+
tokens: {
|
|
6964
|
+
id: number;
|
|
6965
|
+
symbol: string;
|
|
6966
|
+
project: string;
|
|
6967
|
+
OFTAddress: string;
|
|
6968
|
+
}[];
|
|
6969
|
+
};
|
|
6843
6970
|
};
|
|
6844
6971
|
oracles: {
|
|
6845
6972
|
coingecko: {
|
|
@@ -7183,7 +7310,17 @@ declare const unichain: Readonly<{
|
|
|
7183
7310
|
routerContract: string;
|
|
7184
7311
|
};
|
|
7185
7312
|
};
|
|
7186
|
-
bridges: {
|
|
7313
|
+
bridges: {
|
|
7314
|
+
layerzero: {
|
|
7315
|
+
eid: number;
|
|
7316
|
+
tokens: {
|
|
7317
|
+
id: number;
|
|
7318
|
+
symbol: string;
|
|
7319
|
+
project: string;
|
|
7320
|
+
OFTAddress: string;
|
|
7321
|
+
}[];
|
|
7322
|
+
};
|
|
7323
|
+
};
|
|
7187
7324
|
oracles: {};
|
|
7188
7325
|
morpho: {};
|
|
7189
7326
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
@@ -8814,6 +8951,16 @@ interface Bridges {
|
|
|
8814
8951
|
address: string; // address of the stargate contract
|
|
8815
8952
|
}[];
|
|
8816
8953
|
};
|
|
8954
|
+
layerzero?: {
|
|
8955
|
+
eid: number;
|
|
8956
|
+
tokens: {
|
|
8957
|
+
id: number; // for internal use
|
|
8958
|
+
symbol?: string;
|
|
8959
|
+
OFTAddress: string; // addr of oft contract for that token. sometimes these 2 are the same
|
|
8960
|
+
address?: string; // addr of underlying token
|
|
8961
|
+
project?: string;
|
|
8962
|
+
}[];
|
|
8963
|
+
};
|
|
8817
8964
|
}
|
|
8818
8965
|
interface Oracles {
|
|
8819
8966
|
cmc?: {
|
|
@@ -8925,6 +9072,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
8925
9072
|
address: string;
|
|
8926
9073
|
})[];
|
|
8927
9074
|
};
|
|
9075
|
+
layerzero: {
|
|
9076
|
+
eid: number;
|
|
9077
|
+
tokens: {
|
|
9078
|
+
id: number;
|
|
9079
|
+
symbol: string;
|
|
9080
|
+
project: string;
|
|
9081
|
+
OFTAddress: string;
|
|
9082
|
+
}[];
|
|
9083
|
+
};
|
|
8928
9084
|
wanbridge: {
|
|
8929
9085
|
requiredConfirmations: number;
|
|
8930
9086
|
};
|
|
@@ -9121,6 +9277,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
9121
9277
|
chain: string;
|
|
9122
9278
|
timeToFinalize: number;
|
|
9123
9279
|
};
|
|
9280
|
+
layerzero: {
|
|
9281
|
+
eid: number;
|
|
9282
|
+
tokens: {
|
|
9283
|
+
id: number;
|
|
9284
|
+
symbol: string;
|
|
9285
|
+
project: string;
|
|
9286
|
+
OFTAddress: string;
|
|
9287
|
+
}[];
|
|
9288
|
+
};
|
|
9124
9289
|
};
|
|
9125
9290
|
oracles: {
|
|
9126
9291
|
cmc: {
|
|
@@ -10061,6 +10226,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
10061
10226
|
chain: string;
|
|
10062
10227
|
timeToFinalize: number;
|
|
10063
10228
|
};
|
|
10229
|
+
layerzero: {
|
|
10230
|
+
eid: number;
|
|
10231
|
+
tokens: {
|
|
10232
|
+
id: number;
|
|
10233
|
+
symbol: string;
|
|
10234
|
+
project: string;
|
|
10235
|
+
OFTAddress: string;
|
|
10236
|
+
}[];
|
|
10237
|
+
};
|
|
10064
10238
|
};
|
|
10065
10239
|
oracles: {
|
|
10066
10240
|
cmc: {
|
|
@@ -10365,6 +10539,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
10365
10539
|
chain: string;
|
|
10366
10540
|
timeToFinalize: number;
|
|
10367
10541
|
};
|
|
10542
|
+
layerzero: {
|
|
10543
|
+
eid: number;
|
|
10544
|
+
tokens: {
|
|
10545
|
+
id: number;
|
|
10546
|
+
symbol: string;
|
|
10547
|
+
project: string;
|
|
10548
|
+
OFTAddress: string;
|
|
10549
|
+
}[];
|
|
10550
|
+
};
|
|
10368
10551
|
};
|
|
10369
10552
|
oracles: {
|
|
10370
10553
|
cmc: {
|
|
@@ -10513,6 +10696,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
10513
10696
|
chain: string;
|
|
10514
10697
|
timeToFinalize: number;
|
|
10515
10698
|
};
|
|
10699
|
+
layerzero: {
|
|
10700
|
+
eid: number;
|
|
10701
|
+
tokens: {
|
|
10702
|
+
id: number;
|
|
10703
|
+
symbol: string;
|
|
10704
|
+
project: string;
|
|
10705
|
+
OFTAddress: string;
|
|
10706
|
+
}[];
|
|
10707
|
+
};
|
|
10516
10708
|
};
|
|
10517
10709
|
oracles: {
|
|
10518
10710
|
cmc: {
|
|
@@ -10667,6 +10859,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
10667
10859
|
chain: string;
|
|
10668
10860
|
timeToFinalize: number;
|
|
10669
10861
|
};
|
|
10862
|
+
layerzero: {
|
|
10863
|
+
eid: number;
|
|
10864
|
+
tokens: {
|
|
10865
|
+
id: number;
|
|
10866
|
+
symbol: string;
|
|
10867
|
+
project: string;
|
|
10868
|
+
OFTAddress: string;
|
|
10869
|
+
}[];
|
|
10870
|
+
};
|
|
10670
10871
|
};
|
|
10671
10872
|
oracles: {
|
|
10672
10873
|
cmc: {
|
|
@@ -11114,6 +11315,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11114
11315
|
chain: string;
|
|
11115
11316
|
timeToFinalize: number;
|
|
11116
11317
|
};
|
|
11318
|
+
layerzero: {
|
|
11319
|
+
eid: number;
|
|
11320
|
+
tokens: {
|
|
11321
|
+
id: number;
|
|
11322
|
+
symbol: string;
|
|
11323
|
+
project: string;
|
|
11324
|
+
OFTAddress: string;
|
|
11325
|
+
}[];
|
|
11326
|
+
};
|
|
11117
11327
|
};
|
|
11118
11328
|
oracles: {
|
|
11119
11329
|
cmc: {
|
|
@@ -12337,6 +12547,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
12337
12547
|
chain: string;
|
|
12338
12548
|
timeToFinalize: number;
|
|
12339
12549
|
};
|
|
12550
|
+
layerzero: {
|
|
12551
|
+
eid: number;
|
|
12552
|
+
tokens: {
|
|
12553
|
+
id: number;
|
|
12554
|
+
symbol: string;
|
|
12555
|
+
project: string;
|
|
12556
|
+
OFTAddress: string;
|
|
12557
|
+
}[];
|
|
12558
|
+
};
|
|
12340
12559
|
};
|
|
12341
12560
|
oracles: {
|
|
12342
12561
|
cmc: {
|
|
@@ -12473,6 +12692,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
12473
12692
|
address: string;
|
|
12474
12693
|
}[];
|
|
12475
12694
|
};
|
|
12695
|
+
layerzero: {
|
|
12696
|
+
eid: number;
|
|
12697
|
+
tokens: {
|
|
12698
|
+
id: number;
|
|
12699
|
+
symbol: string;
|
|
12700
|
+
project: string;
|
|
12701
|
+
OFTAddress: string;
|
|
12702
|
+
}[];
|
|
12703
|
+
};
|
|
12476
12704
|
};
|
|
12477
12705
|
oracles: {
|
|
12478
12706
|
coingecko: {
|
|
@@ -12749,6 +12977,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
12749
12977
|
address: string;
|
|
12750
12978
|
})[];
|
|
12751
12979
|
};
|
|
12980
|
+
layerzero: {
|
|
12981
|
+
eid: number;
|
|
12982
|
+
tokens: {
|
|
12983
|
+
id: number;
|
|
12984
|
+
symbol: string;
|
|
12985
|
+
project: string;
|
|
12986
|
+
OFTAddress: string;
|
|
12987
|
+
}[];
|
|
12988
|
+
};
|
|
12752
12989
|
};
|
|
12753
12990
|
oracles: {
|
|
12754
12991
|
cmc: {
|
|
@@ -13662,6 +13899,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
13662
13899
|
address: string;
|
|
13663
13900
|
}[];
|
|
13664
13901
|
};
|
|
13902
|
+
layerzero: {
|
|
13903
|
+
eid: number;
|
|
13904
|
+
tokens: {
|
|
13905
|
+
id: number;
|
|
13906
|
+
symbol: string;
|
|
13907
|
+
project: string;
|
|
13908
|
+
OFTAddress: string;
|
|
13909
|
+
}[];
|
|
13910
|
+
};
|
|
13665
13911
|
};
|
|
13666
13912
|
oracles: {
|
|
13667
13913
|
cmc: {
|
|
@@ -14158,6 +14404,16 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14158
14404
|
chainSelector: bigint;
|
|
14159
14405
|
tokenAdminRegistry: string;
|
|
14160
14406
|
};
|
|
14407
|
+
layerzero: {
|
|
14408
|
+
eid: number;
|
|
14409
|
+
tokens: {
|
|
14410
|
+
id: number;
|
|
14411
|
+
symbol: string;
|
|
14412
|
+
project: string;
|
|
14413
|
+
OFTAddress: string;
|
|
14414
|
+
address: string;
|
|
14415
|
+
}[];
|
|
14416
|
+
};
|
|
14161
14417
|
};
|
|
14162
14418
|
oracles: {};
|
|
14163
14419
|
morpho: {
|
|
@@ -14206,7 +14462,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14206
14462
|
symbol: string;
|
|
14207
14463
|
address: "0xDF0B24095e15044538866576754F3C964e902Ee6";
|
|
14208
14464
|
})[];
|
|
14209
|
-
stables: ("
|
|
14465
|
+
stables: ("0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb" | "0xDF0B24095e15044538866576754F3C964e902Ee6")[];
|
|
14210
14466
|
watchlist: ("0xe435E14815d28a86c643E4606Ed0e8E5624782c6" | "0x660c6c6c2ad9be9fca2d40da22e1e6142ce5e7ca" | "0x43aA32cf4f6389aB89d8C79092A0fc65899C20ba" | "0x0F12dac5217868b3d6772632543ef16df8df17E5" | "0xbD108c1Dd7802DFF6c24138A72949184FFbe006F" | "0xb6a7be3ca6698859b374640b3db439fda7b7a5e3" | "0x255f0b304f701a0530f5dc1739a3d1469e21dd5f")[];
|
|
14211
14467
|
internalName: "corn";
|
|
14212
14468
|
nativeLogoUrl: "https://assets.oku.trade/natives/corn.png";
|
|
@@ -14291,6 +14547,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14291
14547
|
address: string;
|
|
14292
14548
|
}[];
|
|
14293
14549
|
};
|
|
14550
|
+
layerzero: {
|
|
14551
|
+
eid: number;
|
|
14552
|
+
tokens: {
|
|
14553
|
+
id: number;
|
|
14554
|
+
symbol: string;
|
|
14555
|
+
project: string;
|
|
14556
|
+
OFTAddress: string;
|
|
14557
|
+
}[];
|
|
14558
|
+
};
|
|
14294
14559
|
};
|
|
14295
14560
|
oracles: {};
|
|
14296
14561
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|
|
@@ -14404,6 +14669,15 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
14404
14669
|
chain: string;
|
|
14405
14670
|
timeToFinalize: number;
|
|
14406
14671
|
};
|
|
14672
|
+
layerzero: {
|
|
14673
|
+
eid: number;
|
|
14674
|
+
tokens: {
|
|
14675
|
+
id: number;
|
|
14676
|
+
symbol: string;
|
|
14677
|
+
project: string;
|
|
14678
|
+
OFTAddress: string;
|
|
14679
|
+
}[];
|
|
14680
|
+
};
|
|
14407
14681
|
};
|
|
14408
14682
|
morpho: {};
|
|
14409
14683
|
oracles: {
|
|
@@ -16952,7 +17226,17 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
16952
17226
|
routerContract: string;
|
|
16953
17227
|
};
|
|
16954
17228
|
};
|
|
16955
|
-
bridges: {
|
|
17229
|
+
bridges: {
|
|
17230
|
+
layerzero: {
|
|
17231
|
+
eid: number;
|
|
17232
|
+
tokens: {
|
|
17233
|
+
id: number;
|
|
17234
|
+
symbol: string;
|
|
17235
|
+
project: string;
|
|
17236
|
+
OFTAddress: string;
|
|
17237
|
+
}[];
|
|
17238
|
+
};
|
|
17239
|
+
};
|
|
16956
17240
|
oracles: {};
|
|
16957
17241
|
morpho: {};
|
|
16958
17242
|
initCodeHash: "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
|