@circle-fin/app-kit 1.7.0 → 1.8.0
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/CHANGELOG.md +215 -0
- package/README.md +28 -5
- package/bridge.cjs +19951 -0
- package/bridge.cjs.map +1 -0
- package/bridge.d.cts +6603 -0
- package/bridge.d.mts +6603 -0
- package/bridge.d.ts +6603 -0
- package/bridge.mjs +19944 -0
- package/bridge.mjs.map +1 -0
- package/chains.cjs +1018 -1087
- package/chains.d.cts +2060 -0
- package/chains.d.mts +2060 -0
- package/chains.d.ts +40 -37
- package/chains.mjs +1018 -1087
- package/context.cjs +59 -0
- package/context.cjs.map +1 -0
- package/context.d.cts +6428 -0
- package/context.d.mts +6428 -0
- package/context.d.ts +6428 -0
- package/context.mjs +57 -0
- package/context.mjs.map +1 -0
- package/earn.cjs +7316 -4800
- package/earn.d.cts +8340 -0
- package/earn.d.mts +8340 -0
- package/earn.d.ts +987 -85
- package/earn.mjs +7313 -4801
- package/estimateBridge.cjs +19889 -0
- package/estimateBridge.cjs.map +1 -0
- package/estimateBridge.d.cts +6483 -0
- package/estimateBridge.d.mts +6483 -0
- package/estimateBridge.d.ts +6483 -0
- package/estimateBridge.mjs +19882 -0
- package/estimateBridge.mjs.map +1 -0
- package/estimateSwap.cjs +21577 -0
- package/estimateSwap.cjs.map +1 -0
- package/estimateSwap.d.cts +6625 -0
- package/estimateSwap.d.mts +6625 -0
- package/estimateSwap.d.ts +6625 -0
- package/estimateSwap.mjs +21571 -0
- package/estimateSwap.mjs.map +1 -0
- package/index.cjs +15241 -11453
- package/index.d.cts +26657 -0
- package/index.d.mts +26657 -0
- package/index.d.ts +5230 -585
- package/index.mjs +15230 -11453
- package/package.json +66 -32
- package/swap.cjs +21577 -0
- package/swap.cjs.map +1 -0
- package/swap.d.cts +6721 -0
- package/swap.d.mts +6721 -0
- package/swap.d.ts +6721 -0
- package/swap.mjs +21571 -0
- package/swap.mjs.map +1 -0
- package/unifiedBalance.cjs +20557 -0
- package/unifiedBalance.cjs.map +1 -0
- package/unifiedBalance.d.cts +7276 -0
- package/unifiedBalance.d.mts +7276 -0
- package/unifiedBalance.d.ts +7276 -0
- package/unifiedBalance.mjs +20551 -0
- package/unifiedBalance.mjs.map +1 -0
package/chains.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ declare const ArcTestnet: {
|
|
|
134
134
|
};
|
|
135
135
|
};
|
|
136
136
|
readonly forwarderSupported: {
|
|
137
|
-
readonly source:
|
|
137
|
+
readonly source: false;
|
|
138
138
|
readonly destination: true;
|
|
139
139
|
};
|
|
140
140
|
};
|
|
@@ -197,7 +197,7 @@ declare const Arbitrum: {
|
|
|
197
197
|
};
|
|
198
198
|
};
|
|
199
199
|
readonly forwarderSupported: {
|
|
200
|
-
readonly source:
|
|
200
|
+
readonly source: false;
|
|
201
201
|
readonly destination: true;
|
|
202
202
|
};
|
|
203
203
|
};
|
|
@@ -260,12 +260,13 @@ declare const ArbitrumSepolia: {
|
|
|
260
260
|
};
|
|
261
261
|
};
|
|
262
262
|
readonly forwarderSupported: {
|
|
263
|
-
readonly source:
|
|
263
|
+
readonly source: false;
|
|
264
264
|
readonly destination: true;
|
|
265
265
|
};
|
|
266
266
|
};
|
|
267
267
|
readonly kitContracts: {
|
|
268
268
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
269
|
+
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
269
270
|
};
|
|
270
271
|
readonly gateway: {
|
|
271
272
|
readonly domain: 3;
|
|
@@ -322,7 +323,7 @@ declare const Avalanche: {
|
|
|
322
323
|
};
|
|
323
324
|
};
|
|
324
325
|
readonly forwarderSupported: {
|
|
325
|
-
readonly source:
|
|
326
|
+
readonly source: false;
|
|
326
327
|
readonly destination: true;
|
|
327
328
|
};
|
|
328
329
|
};
|
|
@@ -384,7 +385,7 @@ declare const AvalancheFuji: {
|
|
|
384
385
|
};
|
|
385
386
|
};
|
|
386
387
|
readonly forwarderSupported: {
|
|
387
|
-
readonly source:
|
|
388
|
+
readonly source: false;
|
|
388
389
|
readonly destination: true;
|
|
389
390
|
};
|
|
390
391
|
};
|
|
@@ -447,7 +448,7 @@ declare const Base: {
|
|
|
447
448
|
};
|
|
448
449
|
};
|
|
449
450
|
readonly forwarderSupported: {
|
|
450
|
-
readonly source:
|
|
451
|
+
readonly source: false;
|
|
451
452
|
readonly destination: true;
|
|
452
453
|
};
|
|
453
454
|
};
|
|
@@ -510,12 +511,13 @@ declare const BaseSepolia: {
|
|
|
510
511
|
};
|
|
511
512
|
};
|
|
512
513
|
readonly forwarderSupported: {
|
|
513
|
-
readonly source:
|
|
514
|
+
readonly source: false;
|
|
514
515
|
readonly destination: true;
|
|
515
516
|
};
|
|
516
517
|
};
|
|
517
518
|
readonly kitContracts: {
|
|
518
519
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
520
|
+
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
519
521
|
};
|
|
520
522
|
readonly gateway: {
|
|
521
523
|
readonly domain: 6;
|
|
@@ -566,7 +568,7 @@ declare const Codex: {
|
|
|
566
568
|
};
|
|
567
569
|
};
|
|
568
570
|
readonly forwarderSupported: {
|
|
569
|
-
readonly source:
|
|
571
|
+
readonly source: false;
|
|
570
572
|
readonly destination: true;
|
|
571
573
|
};
|
|
572
574
|
};
|
|
@@ -609,7 +611,7 @@ declare const CodexTestnet: {
|
|
|
609
611
|
};
|
|
610
612
|
};
|
|
611
613
|
readonly forwarderSupported: {
|
|
612
|
-
readonly source:
|
|
614
|
+
readonly source: false;
|
|
613
615
|
readonly destination: true;
|
|
614
616
|
};
|
|
615
617
|
};
|
|
@@ -658,7 +660,7 @@ declare const Ethereum: {
|
|
|
658
660
|
};
|
|
659
661
|
};
|
|
660
662
|
readonly forwarderSupported: {
|
|
661
|
-
readonly source:
|
|
663
|
+
readonly source: false;
|
|
662
664
|
readonly destination: true;
|
|
663
665
|
};
|
|
664
666
|
};
|
|
@@ -721,12 +723,13 @@ declare const EthereumSepolia: {
|
|
|
721
723
|
};
|
|
722
724
|
};
|
|
723
725
|
readonly forwarderSupported: {
|
|
724
|
-
readonly source:
|
|
726
|
+
readonly source: false;
|
|
725
727
|
readonly destination: true;
|
|
726
728
|
};
|
|
727
729
|
};
|
|
728
730
|
readonly kitContracts: {
|
|
729
731
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
732
|
+
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
730
733
|
};
|
|
731
734
|
readonly gateway: {
|
|
732
735
|
readonly domain: 0;
|
|
@@ -779,7 +782,7 @@ declare const HyperEVM: {
|
|
|
779
782
|
};
|
|
780
783
|
};
|
|
781
784
|
readonly forwarderSupported: {
|
|
782
|
-
readonly source:
|
|
785
|
+
readonly source: false;
|
|
783
786
|
readonly destination: true;
|
|
784
787
|
};
|
|
785
788
|
};
|
|
@@ -837,7 +840,7 @@ declare const HyperEVMTestnet: {
|
|
|
837
840
|
};
|
|
838
841
|
};
|
|
839
842
|
readonly forwarderSupported: {
|
|
840
|
-
readonly source:
|
|
843
|
+
readonly source: false;
|
|
841
844
|
readonly destination: true;
|
|
842
845
|
};
|
|
843
846
|
};
|
|
@@ -895,7 +898,7 @@ declare const Ink: {
|
|
|
895
898
|
};
|
|
896
899
|
};
|
|
897
900
|
readonly forwarderSupported: {
|
|
898
|
-
readonly source:
|
|
901
|
+
readonly source: false;
|
|
899
902
|
readonly destination: true;
|
|
900
903
|
};
|
|
901
904
|
};
|
|
@@ -940,7 +943,7 @@ declare const InkTestnet: {
|
|
|
940
943
|
};
|
|
941
944
|
};
|
|
942
945
|
readonly forwarderSupported: {
|
|
943
|
-
readonly source:
|
|
946
|
+
readonly source: false;
|
|
944
947
|
readonly destination: true;
|
|
945
948
|
};
|
|
946
949
|
};
|
|
@@ -983,7 +986,7 @@ declare const Linea: {
|
|
|
983
986
|
};
|
|
984
987
|
};
|
|
985
988
|
readonly forwarderSupported: {
|
|
986
|
-
readonly source:
|
|
989
|
+
readonly source: false;
|
|
987
990
|
readonly destination: true;
|
|
988
991
|
};
|
|
989
992
|
};
|
|
@@ -1027,7 +1030,7 @@ declare const LineaSepolia: {
|
|
|
1027
1030
|
};
|
|
1028
1031
|
};
|
|
1029
1032
|
readonly forwarderSupported: {
|
|
1030
|
-
readonly source:
|
|
1033
|
+
readonly source: false;
|
|
1031
1034
|
readonly destination: true;
|
|
1032
1035
|
};
|
|
1033
1036
|
};
|
|
@@ -1076,7 +1079,7 @@ declare const Optimism: {
|
|
|
1076
1079
|
};
|
|
1077
1080
|
};
|
|
1078
1081
|
readonly forwarderSupported: {
|
|
1079
|
-
readonly source:
|
|
1082
|
+
readonly source: false;
|
|
1080
1083
|
readonly destination: true;
|
|
1081
1084
|
};
|
|
1082
1085
|
};
|
|
@@ -1139,7 +1142,7 @@ declare const OptimismSepolia: {
|
|
|
1139
1142
|
};
|
|
1140
1143
|
};
|
|
1141
1144
|
readonly forwarderSupported: {
|
|
1142
|
-
readonly source:
|
|
1145
|
+
readonly source: false;
|
|
1143
1146
|
readonly destination: true;
|
|
1144
1147
|
};
|
|
1145
1148
|
};
|
|
@@ -1197,7 +1200,7 @@ declare const Plume: {
|
|
|
1197
1200
|
};
|
|
1198
1201
|
};
|
|
1199
1202
|
readonly forwarderSupported: {
|
|
1200
|
-
readonly source:
|
|
1203
|
+
readonly source: false;
|
|
1201
1204
|
readonly destination: true;
|
|
1202
1205
|
};
|
|
1203
1206
|
};
|
|
@@ -1242,7 +1245,7 @@ declare const PlumeTestnet: {
|
|
|
1242
1245
|
};
|
|
1243
1246
|
};
|
|
1244
1247
|
readonly forwarderSupported: {
|
|
1245
|
-
readonly source:
|
|
1248
|
+
readonly source: false;
|
|
1246
1249
|
readonly destination: true;
|
|
1247
1250
|
};
|
|
1248
1251
|
};
|
|
@@ -1291,7 +1294,7 @@ declare const Polygon: {
|
|
|
1291
1294
|
};
|
|
1292
1295
|
};
|
|
1293
1296
|
readonly forwarderSupported: {
|
|
1294
|
-
readonly source:
|
|
1297
|
+
readonly source: false;
|
|
1295
1298
|
readonly destination: true;
|
|
1296
1299
|
};
|
|
1297
1300
|
};
|
|
@@ -1354,7 +1357,7 @@ declare const PolygonAmoy: {
|
|
|
1354
1357
|
};
|
|
1355
1358
|
};
|
|
1356
1359
|
readonly forwarderSupported: {
|
|
1357
|
-
readonly source:
|
|
1360
|
+
readonly source: false;
|
|
1358
1361
|
readonly destination: true;
|
|
1359
1362
|
};
|
|
1360
1363
|
};
|
|
@@ -1412,7 +1415,7 @@ declare const Sei: {
|
|
|
1412
1415
|
};
|
|
1413
1416
|
};
|
|
1414
1417
|
readonly forwarderSupported: {
|
|
1415
|
-
readonly source:
|
|
1418
|
+
readonly source: false;
|
|
1416
1419
|
readonly destination: true;
|
|
1417
1420
|
};
|
|
1418
1421
|
};
|
|
@@ -1470,7 +1473,7 @@ declare const SeiTestnet: {
|
|
|
1470
1473
|
};
|
|
1471
1474
|
};
|
|
1472
1475
|
readonly forwarderSupported: {
|
|
1473
|
-
readonly source:
|
|
1476
|
+
readonly source: false;
|
|
1474
1477
|
readonly destination: true;
|
|
1475
1478
|
};
|
|
1476
1479
|
};
|
|
@@ -1526,7 +1529,7 @@ declare const Sonic: {
|
|
|
1526
1529
|
};
|
|
1527
1530
|
};
|
|
1528
1531
|
readonly forwarderSupported: {
|
|
1529
|
-
readonly source:
|
|
1532
|
+
readonly source: false;
|
|
1530
1533
|
readonly destination: true;
|
|
1531
1534
|
};
|
|
1532
1535
|
};
|
|
@@ -1583,7 +1586,7 @@ declare const SonicTestnet: {
|
|
|
1583
1586
|
};
|
|
1584
1587
|
};
|
|
1585
1588
|
readonly forwarderSupported: {
|
|
1586
|
-
readonly source:
|
|
1589
|
+
readonly source: false;
|
|
1587
1590
|
readonly destination: true;
|
|
1588
1591
|
};
|
|
1589
1592
|
};
|
|
@@ -1644,7 +1647,7 @@ declare const Solana: {
|
|
|
1644
1647
|
};
|
|
1645
1648
|
};
|
|
1646
1649
|
readonly forwarderSupported: {
|
|
1647
|
-
readonly source:
|
|
1650
|
+
readonly source: false;
|
|
1648
1651
|
readonly destination: true;
|
|
1649
1652
|
};
|
|
1650
1653
|
};
|
|
@@ -1661,7 +1664,7 @@ declare const Solana: {
|
|
|
1661
1664
|
};
|
|
1662
1665
|
readonly forwarderSupported: {
|
|
1663
1666
|
readonly source: true;
|
|
1664
|
-
readonly destination:
|
|
1667
|
+
readonly destination: true;
|
|
1665
1668
|
};
|
|
1666
1669
|
};
|
|
1667
1670
|
};
|
|
@@ -1704,7 +1707,7 @@ declare const SolanaDevnet: {
|
|
|
1704
1707
|
};
|
|
1705
1708
|
};
|
|
1706
1709
|
readonly forwarderSupported: {
|
|
1707
|
-
readonly source:
|
|
1710
|
+
readonly source: false;
|
|
1708
1711
|
readonly destination: true;
|
|
1709
1712
|
};
|
|
1710
1713
|
};
|
|
@@ -1722,7 +1725,7 @@ declare const SolanaDevnet: {
|
|
|
1722
1725
|
};
|
|
1723
1726
|
readonly forwarderSupported: {
|
|
1724
1727
|
readonly source: true;
|
|
1725
|
-
readonly destination:
|
|
1728
|
+
readonly destination: true;
|
|
1726
1729
|
};
|
|
1727
1730
|
};
|
|
1728
1731
|
};
|
|
@@ -1767,7 +1770,7 @@ declare const Unichain: {
|
|
|
1767
1770
|
};
|
|
1768
1771
|
};
|
|
1769
1772
|
readonly forwarderSupported: {
|
|
1770
|
-
readonly source:
|
|
1773
|
+
readonly source: false;
|
|
1771
1774
|
readonly destination: true;
|
|
1772
1775
|
};
|
|
1773
1776
|
};
|
|
@@ -1830,7 +1833,7 @@ declare const UnichainSepolia: {
|
|
|
1830
1833
|
};
|
|
1831
1834
|
};
|
|
1832
1835
|
readonly forwarderSupported: {
|
|
1833
|
-
readonly source:
|
|
1836
|
+
readonly source: false;
|
|
1834
1837
|
readonly destination: true;
|
|
1835
1838
|
};
|
|
1836
1839
|
};
|
|
@@ -1886,7 +1889,7 @@ declare const WorldChain: {
|
|
|
1886
1889
|
};
|
|
1887
1890
|
};
|
|
1888
1891
|
readonly forwarderSupported: {
|
|
1889
|
-
readonly source:
|
|
1892
|
+
readonly source: false;
|
|
1890
1893
|
readonly destination: true;
|
|
1891
1894
|
};
|
|
1892
1895
|
};
|
|
@@ -1943,7 +1946,7 @@ declare const WorldChainSepolia: {
|
|
|
1943
1946
|
};
|
|
1944
1947
|
};
|
|
1945
1948
|
readonly forwarderSupported: {
|
|
1946
|
-
readonly source:
|
|
1949
|
+
readonly source: false;
|
|
1947
1950
|
readonly destination: true;
|
|
1948
1951
|
};
|
|
1949
1952
|
};
|
|
@@ -2001,7 +2004,7 @@ declare const XDC: {
|
|
|
2001
2004
|
};
|
|
2002
2005
|
};
|
|
2003
2006
|
readonly forwarderSupported: {
|
|
2004
|
-
readonly source:
|
|
2007
|
+
readonly source: false;
|
|
2005
2008
|
readonly destination: true;
|
|
2006
2009
|
};
|
|
2007
2010
|
};
|
|
@@ -2045,7 +2048,7 @@ declare const XDCApothem: {
|
|
|
2045
2048
|
};
|
|
2046
2049
|
};
|
|
2047
2050
|
readonly forwarderSupported: {
|
|
2048
|
-
readonly source:
|
|
2051
|
+
readonly source: false;
|
|
2049
2052
|
readonly destination: true;
|
|
2050
2053
|
};
|
|
2051
2054
|
};
|