@bitgo-beta/statics 10.0.1-alpha.507 → 10.0.1-alpha.509

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.
Files changed (62) hide show
  1. package/dist/src/account.d.ts +35 -1
  2. package/dist/src/account.d.ts.map +1 -1
  3. package/dist/src/account.js +63 -2
  4. package/dist/src/allCoinsAndTokens.d.ts.map +1 -1
  5. package/dist/src/allCoinsAndTokens.js +148 -14
  6. package/dist/src/base.d.ts +291 -4
  7. package/dist/src/base.d.ts.map +1 -1
  8. package/dist/src/base.js +295 -4
  9. package/dist/src/coinFeatures.d.ts +15 -12
  10. package/dist/src/coinFeatures.d.ts.map +1 -1
  11. package/dist/src/coinFeatures.js +16 -4
  12. package/dist/src/coins/avaxTokens.d.ts.map +1 -1
  13. package/dist/src/coins/avaxTokens.js +3 -1
  14. package/dist/src/coins/botOfcTokens.d.ts.map +1 -1
  15. package/dist/src/coins/botOfcTokens.js +25 -69
  16. package/dist/src/coins/botTokens.d.ts.map +1 -1
  17. package/dist/src/coins/botTokens.js +241 -69
  18. package/dist/src/coins/bscTokens.d.ts.map +1 -1
  19. package/dist/src/coins/bscTokens.js +8 -1
  20. package/dist/src/coins/cantonTokens.d.ts.map +1 -1
  21. package/dist/src/coins/cantonTokens.js +88 -1
  22. package/dist/src/coins/erc20Coins.d.ts.map +1 -1
  23. package/dist/src/coins/erc20Coins.js +7 -4
  24. package/dist/src/coins/erc7984Tokens.js +3 -3
  25. package/dist/src/coins/hoodethTokens.d.ts +2 -0
  26. package/dist/src/coins/hoodethTokens.d.ts.map +1 -0
  27. package/dist/src/coins/hoodethTokens.js +115 -0
  28. package/dist/src/coins/nep141Tokens.d.ts.map +1 -1
  29. package/dist/src/coins/nep141Tokens.js +2 -1
  30. package/dist/src/coins/ofcCoins.d.ts.map +1 -1
  31. package/dist/src/coins/ofcCoins.js +76 -8
  32. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -1
  33. package/dist/src/coins/ofcErc20Coins.js +29 -9
  34. package/dist/src/coins/ofcHoodethTokens.d.ts +2 -0
  35. package/dist/src/coins/ofcHoodethTokens.d.ts.map +1 -0
  36. package/dist/src/coins/ofcHoodethTokens.js +113 -0
  37. package/dist/src/coins/polygonTokens.d.ts.map +1 -1
  38. package/dist/src/coins/polygonTokens.js +6 -1
  39. package/dist/src/coins/solTokens.d.ts.map +1 -1
  40. package/dist/src/coins/solTokens.js +24 -2
  41. package/dist/src/coins.d.ts.map +1 -1
  42. package/dist/src/coins.js +14 -2
  43. package/dist/src/errors.d.ts +6 -0
  44. package/dist/src/errors.d.ts.map +1 -1
  45. package/dist/src/errors.js +16 -2
  46. package/dist/src/index.d.ts +2 -2
  47. package/dist/src/index.d.ts.map +1 -1
  48. package/dist/src/index.js +6 -2
  49. package/dist/src/map.d.ts +18 -0
  50. package/dist/src/map.d.ts.map +1 -1
  51. package/dist/src/map.js +67 -12
  52. package/dist/src/networkFeatureMapForTokens.d.ts +6 -0
  53. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -1
  54. package/dist/src/networkFeatureMapForTokens.js +30 -1
  55. package/dist/src/networks.d.ts +67 -0
  56. package/dist/src/networks.d.ts.map +1 -1
  57. package/dist/src/networks.js +100 -22
  58. package/dist/src/tokenConfig.d.ts +15 -1
  59. package/dist/src/tokenConfig.d.ts.map +1 -1
  60. package/dist/src/tokenConfig.js +26 -3
  61. package/dist/tsconfig.tsbuildinfo +1 -1
  62. package/package.json +2 -2
@@ -57,6 +57,7 @@ export declare enum CoinFamily {
57
57
  FANTOM = "fantom",// Fantom
58
58
  FLR = "flr",
59
59
  FLRP = "flrp",
60
+ GASEVM = "gasevm",// Neo X EVM sidechain (native GAS token)
60
61
  H = "h",// Humanity Protocol
61
62
  HASH = "hash",// Provenance
62
63
  HBAR = "hbar",
@@ -74,6 +75,7 @@ export declare enum CoinFamily {
74
75
  JOVAYETH = "jovayeth",
75
76
  KAIA = "kaia",
76
77
  KASPA = "kaspa",
78
+ KATANAETH = "katanaeth",// Katana Network L2
77
79
  KAVACOSMOS = "kavacosmos",
78
80
  KAVAEVM = "kavaevm",
79
81
  LNBTC = "lnbtc",
@@ -159,6 +161,10 @@ export declare enum CoinFeature {
159
161
  PAYGO = "paygo",
160
162
  UNSPENT_MODEL = "unspent-model",
161
163
  MERGE_UTXOS = "merge-utxos",
164
+ /**
165
+ * This coin supports fanning out multiple UTXO-like holdings into more outputs.
166
+ */
167
+ FANOUT_UTXOS = "fanout-utxos",
162
168
  LIGHTNING_MODEL = "lightning-model",
163
169
  ACCOUNT_MODEL = "account-model",
164
170
  CHILD_PAYS_FOR_PARENT = "cpfp",
@@ -180,6 +186,10 @@ export declare enum CoinFeature {
180
186
  * This coin is deprecated
181
187
  */
182
188
  DEPRECATED = "deprecated",
189
+ /**
190
+ * This coin is sunsetting and will be deprecated in the near future, but is not deprecated yet
191
+ */
192
+ SUNSETTING = "sunsetting",
183
193
  /**
184
194
  * This coin is a dummy object meant to be a placeholder for an unsupported token
185
195
  */
@@ -418,7 +428,15 @@ export declare enum CoinFeature {
418
428
  * Reading the balance of this token requires the wallet owner to delegate decryption access
419
429
  * to BitGo via ACL.delegateForUserDecryption() before balances can be displayed.
420
430
  */
421
- REQUIRES_DECRYPTION_DELEGATION = "requires-decryption-delegation"
431
+ REQUIRES_DECRYPTION_DELEGATION = "requires-decryption-delegation",
432
+ /**
433
+ * This token is a receipt token, representing a claim on an underlying asset
434
+ */
435
+ RECEIPT_TOKEN = "receipt-token",
436
+ /**
437
+ * This coin supports bring-your-own-validator (BYOV) staking
438
+ */
439
+ BYOV_VALIDATOR = "byov-validator"
422
440
  }
423
441
  /**
424
442
  * Some coins are representations of another underlying asset class. An example
@@ -478,6 +496,7 @@ export declare enum UnderlyingAsset {
478
496
  FLRP = "flrp",
479
497
  FLUENTETH = "fluenteth",
480
498
  FANTOM = "fantom",// Fantom
499
+ GASEVM = "gasevm",// Neo X EVM sidechain (native GAS token)
481
500
  GTC = "gtc",
482
501
  H = "h",// Humanity Protocol
483
502
  HASH = "hash",// Provenance
@@ -496,6 +515,7 @@ export declare enum UnderlyingAsset {
496
515
  ISLM = "islm",
497
516
  JOVAYETH = "jovayeth",
498
517
  KAIA = "kaia",
518
+ KATANAETH = "katanaeth",// Katana Network L2
499
519
  KAVACOSMOS = "kavacosmos",
500
520
  KAVAEVM = "kavaevm",
501
521
  LNBTC = "lnbtc",
@@ -1043,7 +1063,13 @@ export declare enum UnderlyingAsset {
1043
1063
  'tsol:sofid' = "tsol:sofid",
1044
1064
  'tsol:stgsofid' = "tsol:stgsofid",
1045
1065
  'sol:sofid' = "sol:sofid",
1066
+ 'tsol:gospcx' = "tsol:gospcx",
1067
+ 'tsol:stggospcx' = "tsol:stggospcx",
1068
+ 'sol:gospcx' = "sol:gospcx",
1046
1069
  'sol:usd1' = "sol:usd1",
1070
+ 'sol:gousd' = "sol:gousd",
1071
+ 'tsol:gousd' = "tsol:gousd",
1072
+ 'tsol:stggousd' = "tsol:stggousd",
1047
1073
  'sol:usdm1' = "sol:usdm1",
1048
1074
  'tsol:slnd' = "tsol:slnd",
1049
1075
  'tsol:orca' = "tsol:orca",
@@ -1744,12 +1770,14 @@ export declare enum UnderlyingAsset {
1744
1770
  'hteth:stgsofid' = "hteth:stgsofid",
1745
1771
  'hteth:usd1' = "hteth:usd1",
1746
1772
  'hteth:stgusd1' = "hteth:stgusd1",
1773
+ 'hteth:stgscaasacme' = "hteth:stgscaasacme",
1774
+ 'hteth:scaasacme' = "hteth:scaasacme",
1747
1775
  'hteth:cusd' = "hteth:cusd",
1748
1776
  'hteth:fyusd' = "hteth:fyusd",
1749
1777
  'hteth:stgcusd' = "hteth:stgcusd",
1750
1778
  'hteth:stgfyusd' = "hteth:stgfyusd",
1751
- 'hteth:goqxmp' = "hteth:goqxmp",
1752
- 'hteth:stggoqxmp' = "hteth:stggoqxmp",
1779
+ 'hteth:qxmp' = "hteth:qxmp",
1780
+ 'hteth:stgqxmp' = "hteth:stgqxmp",
1753
1781
  'hteth:stgwbtc' = "hteth:stgwbtc",
1754
1782
  'hteth:tsteth' = "hteth:tsteth",
1755
1783
  'hteth:tusdc' = "hteth:tusdc",
@@ -1759,10 +1787,111 @@ export declare enum UnderlyingAsset {
1759
1787
  'hteth:wbtc' = "hteth:wbtc",
1760
1788
  'hteth:htusdl' = "hteth:htusdl",
1761
1789
  'hteth:htusdlt' = "hteth:htusdlt",
1790
+ 'hteth:tprn' = "hteth:tprn",
1762
1791
  'thoodeth:amzn' = "thoodeth:amzn",
1763
1792
  'thoodeth:tsla' = "thoodeth:tsla",
1764
1793
  'hoodeth:tsla' = "hoodeth:tsla",
1765
1794
  'hoodeth:usdg' = "hoodeth:usdg",
1795
+ 'hoodeth:nvda' = "hoodeth:nvda",
1796
+ 'hoodeth:mu' = "hoodeth:mu",
1797
+ 'hoodeth:sndk' = "hoodeth:sndk",
1798
+ 'hoodeth:amd' = "hoodeth:amd",
1799
+ 'hoodeth:spy' = "hoodeth:spy",
1800
+ 'hoodeth:msft' = "hoodeth:msft",
1801
+ 'hoodeth:pltr' = "hoodeth:pltr",
1802
+ 'hoodeth:intc' = "hoodeth:intc",
1803
+ 'hoodeth:qqq' = "hoodeth:qqq",
1804
+ 'hoodeth:slv' = "hoodeth:slv",
1805
+ 'hoodeth:crcl' = "hoodeth:crcl",
1806
+ 'hoodeth:meta' = "hoodeth:meta",
1807
+ 'hoodeth:aapl' = "hoodeth:aapl",
1808
+ 'hoodeth:googl' = "hoodeth:googl",
1809
+ 'hoodeth:uso' = "hoodeth:uso",
1810
+ 'hoodeth:amzn' = "hoodeth:amzn",
1811
+ 'hoodeth:crwv' = "hoodeth:crwv",
1812
+ 'hoodeth:orcl' = "hoodeth:orcl",
1813
+ 'hoodeth:sgov' = "hoodeth:sgov",
1814
+ 'hoodeth:be' = "hoodeth:be",
1815
+ 'hoodeth:usar' = "hoodeth:usar",
1816
+ 'hoodeth:dram' = "hoodeth:dram",
1817
+ 'hoodeth:week' = "hoodeth:week",
1818
+ 'hoodeth:aaoi' = "hoodeth:aaoi",
1819
+ 'hoodeth:amat' = "hoodeth:amat",
1820
+ 'hoodeth:apld' = "hoodeth:apld",
1821
+ 'hoodeth:arm' = "hoodeth:arm",
1822
+ 'hoodeth:asml' = "hoodeth:asml",
1823
+ 'hoodeth:asts' = "hoodeth:asts",
1824
+ 'hoodeth:avgo' = "hoodeth:avgo",
1825
+ 'hoodeth:ba' = "hoodeth:ba",
1826
+ 'hoodeth:baba' = "hoodeth:baba",
1827
+ 'hoodeth:cbrs' = "hoodeth:cbrs",
1828
+ 'hoodeth:ccl' = "hoodeth:ccl",
1829
+ 'hoodeth:celh' = "hoodeth:celh",
1830
+ 'hoodeth:clsk' = "hoodeth:clsk",
1831
+ 'hoodeth:coin' = "hoodeth:coin",
1832
+ 'hoodeth:cost' = "hoodeth:cost",
1833
+ 'hoodeth:crwd' = "hoodeth:crwd",
1834
+ 'hoodeth:ddog' = "hoodeth:ddog",
1835
+ 'hoodeth:dell' = "hoodeth:dell",
1836
+ 'hoodeth:elf' = "hoodeth:elf",
1837
+ 'hoodeth:ewy' = "hoodeth:ewy",
1838
+ 'hoodeth:f' = "hoodeth:f",
1839
+ 'hoodeth:flnc' = "hoodeth:flnc",
1840
+ 'hoodeth:futu' = "hoodeth:futu",
1841
+ 'hoodeth:gme' = "hoodeth:gme",
1842
+ 'hoodeth:glw' = "hoodeth:glw",
1843
+ 'hoodeth:inod' = "hoodeth:inod",
1844
+ 'hoodeth:intu' = "hoodeth:intu",
1845
+ 'hoodeth:ionq' = "hoodeth:ionq",
1846
+ 'hoodeth:iren' = "hoodeth:iren",
1847
+ 'hoodeth:lite' = "hoodeth:lite",
1848
+ 'hoodeth:lly' = "hoodeth:lly",
1849
+ 'hoodeth:lulu' = "hoodeth:lulu",
1850
+ 'hoodeth:lunr' = "hoodeth:lunr",
1851
+ 'hoodeth:mdb' = "hoodeth:mdb",
1852
+ 'hoodeth:mrvl' = "hoodeth:mrvl",
1853
+ 'hoodeth:mstr' = "hoodeth:mstr",
1854
+ 'hoodeth:mxl' = "hoodeth:mxl",
1855
+ 'hoodeth:nasa' = "hoodeth:nasa",
1856
+ 'hoodeth:nbis' = "hoodeth:nbis",
1857
+ 'hoodeth:nflx' = "hoodeth:nflx",
1858
+ 'hoodeth:nne' = "hoodeth:nne",
1859
+ 'hoodeth:nok' = "hoodeth:nok",
1860
+ 'hoodeth:nu' = "hoodeth:nu",
1861
+ 'hoodeth:now' = "hoodeth:now",
1862
+ 'hoodeth:nvts' = "hoodeth:nvts",
1863
+ 'hoodeth:p' = "hoodeth:p",
1864
+ 'hoodeth:peng' = "hoodeth:peng",
1865
+ 'hoodeth:poet' = "hoodeth:poet",
1866
+ 'hoodeth:pr' = "hoodeth:pr",
1867
+ 'hoodeth:qbts' = "hoodeth:qbts",
1868
+ 'hoodeth:qcom' = "hoodeth:qcom",
1869
+ 'hoodeth:qubt' = "hoodeth:qubt",
1870
+ 'hoodeth:rblx' = "hoodeth:rblx",
1871
+ 'hoodeth:rddt' = "hoodeth:rddt",
1872
+ 'hoodeth:rdw' = "hoodeth:rdw",
1873
+ 'hoodeth:rgti' = "hoodeth:rgti",
1874
+ 'hoodeth:rivn' = "hoodeth:rivn",
1875
+ 'hoodeth:rklb' = "hoodeth:rklb",
1876
+ 'hoodeth:rvi' = "hoodeth:rvi",
1877
+ 'hoodeth:sats' = "hoodeth:sats",
1878
+ 'hoodeth:shop' = "hoodeth:shop",
1879
+ 'hoodeth:smci' = "hoodeth:smci",
1880
+ 'hoodeth:sofi' = "hoodeth:sofi",
1881
+ 'hoodeth:soxx' = "hoodeth:soxx",
1882
+ 'hoodeth:spmo' = "hoodeth:spmo",
1883
+ 'hoodeth:tsem' = "hoodeth:tsem",
1884
+ 'hoodeth:tsm' = "hoodeth:tsm",
1885
+ 'hoodeth:ttwo' = "hoodeth:ttwo",
1886
+ 'hoodeth:umc' = "hoodeth:umc",
1887
+ 'hoodeth:ups' = "hoodeth:ups",
1888
+ 'hoodeth:wday' = "hoodeth:wday",
1889
+ 'hoodeth:xlk' = "hoodeth:xlk",
1890
+ 'hoodeth:xndu' = "hoodeth:xndu",
1891
+ 'hoodeth:xom' = "hoodeth:xom",
1892
+ 'hoodeth:zm' = "hoodeth:zm",
1893
+ 'hoodeth:zs' = "hoodeth:zs",
1894
+ 'hoodeth:spcx' = "hoodeth:spcx",
1766
1895
  'hemieth:hemi' = "hemieth:hemi",
1767
1896
  'hemieth:hemibtc' = "hemieth:hemibtc",
1768
1897
  'usdt0:stable' = "usdt0:stable",
@@ -1851,6 +1980,7 @@ export declare enum UnderlyingAsset {
1851
1980
  'sol:usdc' = "sol:usdc",
1852
1981
  'sol:agri' = "sol:agri",
1853
1982
  'sol:usdca' = "sol:usdca",
1983
+ 'sol:usde' = "sol:usde",
1854
1984
  'sol:sonic' = "sol:sonic",
1855
1985
  'sol:crdt' = "sol:crdt",
1856
1986
  'sol:epxc' = "sol:epxc",
@@ -1979,7 +2109,9 @@ export declare enum UnderlyingAsset {
1979
2109
  XEX = "xex",
1980
2110
  XLMBEAR = "xlmbear",
1981
2111
  XLMBULL = "xlmbull",
2112
+ 'xpl:susdai' = "xpl:susdai",
1982
2113
  'xpl:syzusd' = "xpl:syzusd",
2114
+ 'xpl:usdai' = "xpl:usdai",
1983
2115
  'xpl:usdto' = "xpl:usdto",
1984
2116
  XRL = "xrl",
1985
2117
  XRPBEAR = "xrpbear",
@@ -2068,7 +2200,7 @@ export declare enum UnderlyingAsset {
2068
2200
  'eth:sofid' = "eth:sofid",
2069
2201
  'eth:cusd' = "eth:cusd",
2070
2202
  'eth:fyusd' = "eth:fyusd",
2071
- 'eth:goqxmp' = "eth:goqxmp",
2203
+ 'eth:qxmp' = "eth:qxmp",
2072
2204
  'eth:ibtc' = "eth:ibtc",
2073
2205
  'eth:pyr' = "eth:pyr",
2074
2206
  'eth:una' = "eth:una",
@@ -2405,6 +2537,7 @@ export declare enum UnderlyingAsset {
2405
2537
  CAT = "cat",
2406
2538
  'txlm:BST-GBQTIOS3XGHB7LVYGBKQVJGCZ3R4JL5E4CBSWJ5ALIJUHBKS6263644L' = "txlm:BST-GBQTIOS3XGHB7LVYGBKQVJGCZ3R4JL5E4CBSWJ5ALIJUHBKS6263644L",
2407
2539
  'txlm:TST-GBQTIOS3XGHB7LVYGBKQVJGCZ3R4JL5E4CBSWJ5ALIJUHBKS6263644L' = "txlm:TST-GBQTIOS3XGHB7LVYGBKQVJGCZ3R4JL5E4CBSWJ5ALIJUHBKS6263644L",
2540
+ 'txlm:BTGT-GCCUFJV5P32QGVZVW73SF7P53ZH2OXJ5C3DYSXDECSRCP3FU2GJ2PXGE' = "txlm:BTGT-GCCUFJV5P32QGVZVW73SF7P53ZH2OXJ5C3DYSXDECSRCP3FU2GJ2PXGE",
2408
2541
  'talgo:USON-16026728' = "talgo:USON-16026728",
2409
2542
  'talgo:SPRW-16026732' = "talgo:SPRW-16026732",
2410
2543
  'talgo:KAL-16026733' = "talgo:KAL-16026733",
@@ -2498,6 +2631,7 @@ export declare enum UnderlyingAsset {
2498
2631
  'avaxc:wine' = "avaxc:wine",
2499
2632
  'avaxc:mu' = "avaxc:mu",
2500
2633
  'avaxc:frax' = "avaxc:frax",
2634
+ 'avaxc:frnt' = "avaxc:frnt",
2501
2635
  'avaxc:movr' = "avaxc:movr",
2502
2636
  'avaxc:ice' = "avaxc:ice",
2503
2637
  'avaxc:note' = "avaxc:note",
@@ -2509,6 +2643,7 @@ export declare enum UnderlyingAsset {
2509
2643
  'avaxc:emdx' = "avaxc:emdx",
2510
2644
  'avaxc:eurc' = "avaxc:eurc",
2511
2645
  'avaxc:ausd' = "avaxc:ausd",
2646
+ 'avaxc:mxnd' = "avaxc:mxnd",
2512
2647
  'polygon:usdc' = "polygon:usdc",
2513
2648
  'polygon:usdcv2' = "polygon:usdcv2",
2514
2649
  'polygon:usdt' = "polygon:usdt",
@@ -2520,10 +2655,12 @@ export declare enum UnderlyingAsset {
2520
2655
  'polygon:woo' = "polygon:woo",
2521
2656
  'polygon:aave' = "polygon:aave",
2522
2657
  'polygon:link' = "polygon:link",
2658
+ 'polygon:linkv2' = "polygon:linkv2",
2523
2659
  'polygon:tusd' = "polygon:tusd",
2524
2660
  'polygon:cel' = "polygon:cel",
2525
2661
  'polygon:busd' = "polygon:busd",
2526
2662
  'polygon:frax' = "polygon:frax",
2663
+ 'polygon:frnt' = "polygon:frnt",
2527
2664
  'polygon:crv' = "polygon:crv",
2528
2665
  'polygon:uni' = "polygon:uni",
2529
2666
  'polygon:fcd' = "polygon:fcd",
@@ -2614,6 +2751,7 @@ export declare enum UnderlyingAsset {
2614
2751
  'polygon:geod' = "polygon:geod",
2615
2752
  'polygon:heth' = "polygon:heth",
2616
2753
  'polygon:copm' = "polygon:copm",
2754
+ 'polygon:copr' = "polygon:copr",
2617
2755
  'polygon:gmt' = "polygon:gmt",
2618
2756
  'polygon:uhu' = "polygon:uhu",
2619
2757
  'polygon:mv' = "polygon:mv",
@@ -2662,9 +2800,11 @@ export declare enum UnderlyingAsset {
2662
2800
  'polygon:vio0' = "polygon:vio0",
2663
2801
  'polygon:wots0' = "polygon:wots0",
2664
2802
  'polygon:mext' = "polygon:mext",
2803
+ 'polygon:mxnd' = "polygon:mxnd",
2665
2804
  'polygon:pert' = "polygon:pert",
2666
2805
  'polygon:colt' = "polygon:colt",
2667
2806
  'polygon:bolt' = "polygon:bolt",
2807
+ 'polygon:gmc' = "polygon:gmc",
2668
2808
  'erc721:polygontoken' = "erc721:polygontoken",
2669
2809
  'erc1155:polygontoken' = "erc1155:polygontoken",
2670
2810
  'bsc:sol' = "bsc:sol",
@@ -2722,6 +2862,7 @@ export declare enum UnderlyingAsset {
2722
2862
  'bsc:ankr' = "bsc:ankr",
2723
2863
  'bsc:avax' = "bsc:avax",
2724
2864
  'bsc:beta' = "bsc:beta",
2865
+ 'bsc:btcb' = "bsc:btcb",
2725
2866
  'bsc:btt' = "bsc:btt",
2726
2867
  'bsc:celr' = "bsc:celr",
2727
2868
  'bsc:chr' = "bsc:chr",
@@ -2730,11 +2871,13 @@ export declare enum UnderlyingAsset {
2730
2871
  'bsc:dar' = "bsc:dar",
2731
2872
  'bsc:degov2' = "bsc:degov2",
2732
2873
  'bsc:dodo' = "bsc:dodo",
2874
+ 'bsc:dusk' = "bsc:dusk",
2733
2875
  'bsc:elon' = "bsc:elon",
2734
2876
  'bsc:etc' = "bsc:etc",
2735
2877
  'bsc:firo' = "bsc:firo",
2736
2878
  'bsc:front' = "bsc:front",
2737
2879
  'bsc:hft' = "bsc:hft",
2880
+ 'bsc:hybond' = "bsc:hybond",
2738
2881
  'bsc:high' = "bsc:high",
2739
2882
  'bsc:hyper' = "bsc:hyper",
2740
2883
  'bsc:inj' = "bsc:inj",
@@ -2782,6 +2925,8 @@ export declare enum UnderlyingAsset {
2782
2925
  'tbsc:busd' = "tbsc:busd",
2783
2926
  'tbsc:usd1' = "tbsc:usd1",
2784
2927
  'tbsc:stgusd1' = "tbsc:stgusd1",
2928
+ 'tbsc:stgscaasacme' = "tbsc:stgscaasacme",
2929
+ 'tbsc:scaasacme' = "tbsc:scaasacme",
2785
2930
  'bsc:city' = "bsc:city",
2786
2931
  'bsc:fdusd' = "bsc:fdusd",
2787
2932
  'bsc:floki' = "bsc:floki",
@@ -2849,6 +2994,8 @@ export declare enum UnderlyingAsset {
2849
2994
  'bsc:t-ibiton' = "bsc:t-ibiton",
2850
2995
  'bsc:t-ivvon' = "bsc:t-ivvon",
2851
2996
  'bsc:sqd' = "bsc:sqd",
2997
+ 'bsc:skyai' = "bsc:skyai",
2998
+ 'bsc:zktc' = "bsc:zktc",
2852
2999
  'erc721:bsctoken' = "erc721:bsctoken",
2853
3000
  'erc1155:bsctoken' = "erc1155:bsctoken",
2854
3001
  'terc721:bsctoken' = "terc721:bsctoken",
@@ -2877,9 +3024,12 @@ export declare enum UnderlyingAsset {
2877
3024
  'arbeth:xsgdv2' = "arbeth:xsgdv2",
2878
3025
  'arbeth:trn' = "arbeth:trn",
2879
3026
  'arbeth:usdcv2' = "arbeth:usdcv2",
3027
+ 'arbeth:usdai' = "arbeth:usdai",
2880
3028
  'arbeth:usdt' = "arbeth:usdt",
2881
3029
  'arbeth:arb' = "arbeth:arb",
3030
+ 'arbeth:ausd' = "arbeth:ausd",
2882
3031
  'arbeth:sqd' = "arbeth:sqd",
3032
+ 'arbeth:susdai' = "arbeth:susdai",
2883
3033
  'arbeth:cbl' = "arbeth:cbl",
2884
3034
  'arbeth:chip' = "arbeth:chip",
2885
3035
  'arbeth:w' = "arbeth:w",
@@ -2907,6 +3057,7 @@ export declare enum UnderlyingAsset {
2907
3057
  'arbeth:tbill' = "arbeth:tbill",
2908
3058
  'arbeth:xai' = "arbeth:xai",
2909
3059
  'arbeth:flttx' = "arbeth:flttx",
3060
+ 'arbeth:frnt' = "arbeth:frnt",
2910
3061
  'arbeth:wtsix' = "arbeth:wtsix",
2911
3062
  'arbeth:modrx' = "arbeth:modrx",
2912
3063
  'arbeth:techx' = "arbeth:techx",
@@ -2934,18 +3085,29 @@ export declare enum UnderlyingAsset {
2934
3085
  'arbeth:testpltr' = "arbeth:testpltr",
2935
3086
  'arbeth:testnflx' = "arbeth:testnflx",
2936
3087
  'arbeth:week' = "arbeth:week",
3088
+ 'arbeth:opsbtc' = "arbeth:opsbtc",
3089
+ 'arbeth:argt' = "arbeth:argt",
3090
+ 'arbeth:brat' = "arbeth:brat",
3091
+ 'arbeth:colt' = "arbeth:colt",
3092
+ 'arbeth:mext' = "arbeth:mext",
3093
+ 'arbeth:chlt' = "arbeth:chlt",
3094
+ 'arbeth:bolt' = "arbeth:bolt",
3095
+ 'arbeth:pert' = "arbeth:pert",
2937
3096
  'baseeth:aero' = "baseeth:aero",
2938
3097
  'baseeth:cfi' = "baseeth:cfi",
2939
3098
  'baseeth:icnt' = "baseeth:icnt",
2940
3099
  'baseeth:mey' = "baseeth:mey",
2941
3100
  'baseeth:morpho' = "baseeth:morpho",
2942
3101
  'baseeth:myrc' = "baseeth:myrc",
3102
+ 'baseeth:nock' = "baseeth:nock",
2943
3103
  'baseeth:weth' = "baseeth:weth",
2944
3104
  'baseeth:usdc' = "baseeth:usdc",
2945
3105
  'baseeth:wbtc' = "baseeth:wbtc",
2946
3106
  'baseeth:usde' = "baseeth:usde",
3107
+ 'baseeth:usdai' = "baseeth:usdai",
2947
3108
  'baseeth:trust' = "baseeth:trust",
2948
3109
  'baseeth:flk' = "baseeth:flk",
3110
+ 'baseeth:frnt' = "baseeth:frnt",
2949
3111
  'baseeth:soon' = "baseeth:soon",
2950
3112
  'baseeth:wave' = "baseeth:wave",
2951
3113
  'baseeth:spec' = "baseeth:spec",
@@ -2961,6 +3123,7 @@ export declare enum UnderlyingAsset {
2961
3123
  'baseeth:wbrly' = "baseeth:wbrly",
2962
3124
  'baseeth:recall' = "baseeth:recall",
2963
3125
  'baseeth:sapien' = "baseeth:sapien",
3126
+ 'baseeth:susdai' = "baseeth:susdai",
2964
3127
  'baseeth:aixbt' = "baseeth:aixbt",
2965
3128
  'baseeth:brett' = "baseeth:brett",
2966
3129
  'baseeth:argt' = "baseeth:argt",
@@ -2982,6 +3145,9 @@ export declare enum UnderlyingAsset {
2982
3145
  'baseeth:chlt' = "baseeth:chlt",
2983
3146
  'baseeth:colt' = "baseeth:colt",
2984
3147
  'baseeth:bolt' = "baseeth:bolt",
3148
+ 'baseeth:gusdcq' = "baseeth:gusdcq",
3149
+ 'baseeth:laptop' = "baseeth:laptop",
3150
+ 'baseeth:vbtcb' = "baseeth:vbtcb",
2985
3151
  'tbaseeth:usdc' = "tbaseeth:usdc",
2986
3152
  'tbaseeth:xusd' = "tbaseeth:xusd",
2987
3153
  'tbaseeth:xsgd' = "tbaseeth:xsgd",
@@ -3057,8 +3223,10 @@ export declare enum UnderlyingAsset {
3057
3223
  'opeth:spxux' = "opeth:spxux",
3058
3224
  'opeth:perp' = "opeth:perp",
3059
3225
  'opeth:flttx' = "opeth:flttx",
3226
+ 'opeth:frnt' = "opeth:frnt",
3060
3227
  'opeth:wtsix' = "opeth:wtsix",
3061
3228
  'opeth:modrx' = "opeth:modrx",
3229
+ 'opeth:mre7' = "opeth:mre7",
3062
3230
  'opeth:techx' = "opeth:techx",
3063
3231
  'opeth:wtsyx' = "opeth:wtsyx",
3064
3232
  'opeth:wtlgx' = "opeth:wtlgx",
@@ -3114,6 +3282,14 @@ export declare enum UnderlyingAsset {
3114
3282
  'chiliz:psg' = "chiliz:psg",
3115
3283
  'chiliz:spurs' = "chiliz:spurs",
3116
3284
  'chiliz:tra' = "chiliz:tra",
3285
+ 'inketh:kbtc' = "inketh:kbtc",
3286
+ 'inketh:usdc' = "inketh:usdc",
3287
+ 'inketh:usdt0' = "inketh:usdt0",
3288
+ 'xtzevm:usdt' = "xtzevm:usdt",
3289
+ 'xtzevm:usdc' = "xtzevm:usdc",
3290
+ 'xtzevm:xu3o8' = "xtzevm:xu3o8",
3291
+ 'xtzevm:wxtz' = "xtzevm:wxtz",
3292
+ 'xtzevm:stxtz' = "xtzevm:stxtz",
3117
3293
  'world:wld' = "world:wld",
3118
3294
  'world:usdc' = "world:usdc",
3119
3295
  'tworld:wld' = "tworld:wld",
@@ -3184,6 +3360,7 @@ export declare enum UnderlyingAsset {
3184
3360
  'sol:soon' = "sol:soon",
3185
3361
  'sol:wylds' = "sol:wylds",
3186
3362
  'sol:block' = "sol:block",
3363
+ 'sol:brs' = "sol:brs",
3187
3364
  'sol:render' = "sol:render",
3188
3365
  'sol:wen' = "sol:wen",
3189
3366
  'sol:mew' = "sol:mew",
@@ -3223,12 +3400,14 @@ export declare enum UnderlyingAsset {
3223
3400
  'sol:pnut' = "sol:pnut",
3224
3401
  'sol:nyan' = "sol:nyan",
3225
3402
  'sol:fight' = "sol:fight",
3403
+ 'sol:frnt' = "sol:frnt",
3226
3404
  'sol:wet' = "sol:wet",
3227
3405
  'sol:meta' = "sol:meta",
3228
3406
  'sol:portals' = "sol:portals",
3229
3407
  'sol:virtual' = "sol:virtual",
3230
3408
  'sol:zerebro' = "sol:zerebro",
3231
3409
  'sol:arc' = "sol:arc",
3410
+ 'sol:arx' = "sol:arx",
3232
3411
  'sol:nos' = "sol:nos",
3233
3412
  'sol:jlp' = "sol:jlp",
3234
3413
  'sol:grass' = "sol:grass",
@@ -3264,8 +3443,10 @@ export declare enum UnderlyingAsset {
3264
3443
  'sol:alch' = "sol:alch",
3265
3444
  'sol:launchcoin' = "sol:launchcoin",
3266
3445
  'sol:stik' = "sol:stik",
3446
+ 'sol:stampy' = "sol:stampy",
3267
3447
  'sol:chill' = "sol:chill",
3268
3448
  'sol:zbcn' = "sol:zbcn",
3449
+ 'sol:zaru' = "sol:zaru",
3269
3450
  'sol:benji' = "sol:benji",
3270
3451
  'sol:dupe' = "sol:dupe",
3271
3452
  'sol:tank' = "sol:tank",
@@ -3302,6 +3483,7 @@ export declare enum UnderlyingAsset {
3302
3483
  'sol:ban' = "sol:ban",
3303
3484
  'sol:dbr' = "sol:dbr",
3304
3485
  'sol:bless' = "sol:bless",
3486
+ 'sol:blsh' = "sol:blsh",
3305
3487
  'sol:cpool' = "sol:cpool",
3306
3488
  'sol:home' = "sol:home",
3307
3489
  'sol:oob' = "sol:oob",
@@ -3321,6 +3503,7 @@ export declare enum UnderlyingAsset {
3321
3503
  'sol:kwyld-cash' = "sol:kwyld-cash",
3322
3504
  'sol:tusdc' = "sol:tusdc",
3323
3505
  'sol:slx' = "sol:slx",
3506
+ 'sol:ab1' = "sol:ab1",
3324
3507
  'tsol:txsgd' = "sol:txsgd",
3325
3508
  'tsol:txusd' = "sol:txusd",
3326
3509
  'trx:htx' = "trx:htx",
@@ -3352,6 +3535,11 @@ export declare enum UnderlyingAsset {
3352
3535
  'xrp:aau' = "xrp:aau",
3353
3536
  'xrp:fiuaxrp' = "xrp:fiuaxrp",
3354
3537
  'txrp:xsgd' = "txrp:xsgd",
3538
+ 'txrp:sec0' = "txrp:sec0",
3539
+ 'txrp:sec2' = "txrp:sec2",
3540
+ 'txrp:wrapt' = "txrp:wrapt",
3541
+ 'txrp:ntsec' = "txrp:ntsec",
3542
+ 'txrp:feesec' = "txrp:feesec",
3355
3543
  'sui:deep' = "sui:deep",
3356
3544
  'sui:suins' = "sui:suins",
3357
3545
  'sui:suiusde' = "sui:suiusde",
@@ -3377,6 +3565,7 @@ export declare enum UnderlyingAsset {
3377
3565
  'sui:blue' = "sui:blue",
3378
3566
  'tsui:deep' = "tsui:deep",
3379
3567
  'tsui:wal' = "tsui:wal",
3568
+ 'tsui:tmerog' = "tsui:tmerog",
3380
3569
  'apt:usd1' = "apt:usd1",
3381
3570
  'apt:usdt' = "apt:usdt",
3382
3571
  'apt:usdc' = "apt:usdc",
@@ -3436,6 +3625,7 @@ export declare enum UnderlyingAsset {
3436
3625
  'near:usdt' = "near:usdt",
3437
3626
  'near:mpdao' = "near:mpdao",
3438
3627
  'near:stnear' = "near:stnear",
3628
+ 'near:aurora' = "near:aurora",
3439
3629
  'tnear:tnep24dp' = "tnear:tnep24dp",
3440
3630
  'tnear:usdc' = "tnear:usdc",
3441
3631
  'tnear:stnear' = "tnear:stnear",
@@ -3521,7 +3711,94 @@ export declare enum UnderlyingAsset {
3521
3711
  'ada:asnek' = "ada:asnek",
3522
3712
  'tcanton:testcoin1' = "tcanton:testcoin1",
3523
3713
  'tcanton:testtoken' = "tcanton:testtoken",
3714
+ 'tcanton:stgusd1' = "tcanton:stgusd1",
3715
+ 'tcanton:usd1' = "tcanton:usd1",
3716
+ 'tcanton:usdcx' = "tcanton:usdcx",
3717
+ 'tcanton:tc1' = "tcanton:tc1",
3718
+ 'tcanton:tt' = "tcanton:tt",
3719
+ 'tcanton:lsqa003' = "tcanton:lsqa003",
3720
+ 'tcanton:lsqa513' = "tcanton:lsqa513",
3721
+ 'tcanton:lsqa007' = "tcanton:lsqa007",
3722
+ 'tcanton:lsqa009' = "tcanton:lsqa009",
3723
+ 'tcanton:lsqa001' = "tcanton:lsqa001",
3724
+ 'tcanton:lsqa011' = "tcanton:lsqa011",
3725
+ 'tcanton:uatdemosym' = "tcanton:uatdemosym",
3726
+ 'tcanton:symuat39j206' = "tcanton:symuat39j206",
3727
+ 'tcanton:symuat39j305' = "tcanton:symuat39j305",
3728
+ 'tcanton:symuat797tl8' = "tcanton:symuat797tl8",
3729
+ 'tcanton:symuat797ts3' = "tcanton:symuat797ts3",
3730
+ 'tcanton:symuat282cn5' = "tcanton:symuat282cn5",
3731
+ 'tcanton:symuat82cnp9' = "tcanton:symuat82cnp9",
3732
+ 'tcanton:symuat992135' = "tcanton:symuat992135",
3733
+ 'tcanton:symuat992358' = "tcanton:symuat992358",
3734
+ 'tcanton:symuat252308' = "tcanton:symuat252308",
3735
+ 'tcanton:symuat72d108' = "tcanton:symuat72d108",
3736
+ 'tcanton:symuat85r102' = "tcanton:symuat85r102",
3737
+ 'tcanton:symuat797uq5' = "tcanton:symuat797uq5",
3738
+ 'tcanton:symuat520100' = "tcanton:symuat520100",
3739
+ 'tcanton:symuat82cnu8' = "tcanton:symuat82cnu8",
3740
+ 'tcanton:symuat39j404' = "tcanton:symuat39j404",
3741
+ 'tcanton:symuat82cny0' = "tcanton:symuat82cny0",
3742
+ 'tcanton:symuat39j503' = "tcanton:symuat39j503",
3743
+ 'tcanton:symuat82cpb8' = "tcanton:symuat82cpb8",
3744
+ 'tcanton:symuat82cpr3' = "tcanton:symuat82cpr3",
3745
+ 'tcanton:symuat82cpt9' = "tcanton:symuat82cpt9",
3746
+ 'tcanton:symuat82cqb7' = "tcanton:symuat82cqb7",
3747
+ 'tcanton:symuat081103' = "tcanton:symuat081103",
3748
+ 'tcanton:symuat12a107' = "tcanton:symuat12a107",
3749
+ 'tcanton:symuat12k105' = "tcanton:symuat12k105",
3750
+ 'tcanton:symuat138101' = "tcanton:symuat138101",
3751
+ 'tcanton:symuat15m108' = "tcanton:symuat15m108",
3752
+ 'tcanton:symuat06p102' = "tcanton:symuat06p102",
3753
+ 'tcanton:symuat760102' = "tcanton:symuat760102",
3754
+ 'tcanton:symuat87t106' = "tcanton:symuat87t106",
3755
+ 'tcanton:symuat89y202' = "tcanton:symuat89y202",
3756
+ 'tcanton:symuat991053' = "tcanton:symuat991053",
3757
+ 'tcanton:symuat44h104' = "tcanton:symuat44h104",
3758
+ 'tcanton:symuat80c118' = "tcanton:symuat80c118",
3759
+ 'tcanton:symuat66t309' = "tcanton:symuat66t309",
3760
+ 'tcanton:symuat91e103' = "tcanton:symuat91e103",
3761
+ 'tcanton:symuat966105' = "tcanton:symuat966105",
3762
+ 'tcanton:symuat526107' = "tcanton:symuat526107",
3763
+ 'tcanton:symuat932107' = "tcanton:symuat932107",
3764
+ 'tcanton:symuat804108' = "tcanton:symuat804108",
3765
+ 'tcanton:symuat39j602' = "tcanton:symuat39j602",
3766
+ 'tcanton:sym868686866' = "tcanton:sym868686866",
3767
+ 'tcanton:symuat39j701' = "tcanton:symuat39j701",
3768
+ 'tcanton:symuat39j735' = "tcanton:symuat39j735",
3769
+ 'tcanton:symuat39j743' = "tcanton:symuat39j743",
3770
+ 'tcanton:symuat797uc6' = "tcanton:symuat797uc6",
3771
+ 'tcanton:symuat797ud4' = "tcanton:symuat797ud4",
3772
+ 'tcanton:symuat797ug7' = "tcanton:symuat797ug7",
3773
+ 'tcanton:symuat797un2' = "tcanton:symuat797un2",
3774
+ 'tcanton:sym051193ed8' = "tcanton:sym051193ed8",
3775
+ 'tcanton:sym051193md9' = "tcanton:sym051193md9",
3776
+ 'tcanton:sym051193ea4' = "tcanton:sym051193ea4",
3777
+ 'tcanton:sym051193mc1' = "tcanton:sym051193mc1",
3778
+ 'tcanton:symuatcshaa8' = "tcanton:symuatcshaa8",
3779
+ 'tcanton:symuatcshad2' = "tcanton:symuatcshad2",
3780
+ 'tcanton:symuatcshae0' = "tcanton:symuatcshae0",
3781
+ 'tcanton:arise' = "tcanton:arise",
3782
+ 'tcanton:lsqa999' = "tcanton:lsqa999",
3783
+ 'tcanton:lsqa05271' = "tcanton:lsqa05271",
3784
+ 'tcanton:lsqa05272' = "tcanton:lsqa05272",
3785
+ 'tcanton:lsqa777' = "tcanton:lsqa777",
3786
+ 'tcanton:lsqa0915' = "tcanton:lsqa0915",
3787
+ 'tcanton:lsqa0512' = "tcanton:lsqa0512",
3788
+ 'tcanton:lsqa512' = "tcanton:lsqa512",
3789
+ 'tcanton:lsqa87' = "tcanton:lsqa87",
3790
+ 'tcanton:canton-test-canton' = "tcanton:canton-test-canton",
3791
+ 'tcanton:syme2e705109' = "tcanton:syme2e705109",
3792
+ 'tcanton:syme2e797uq7' = "tcanton:syme2e797uq7",
3793
+ 'tcanton:syme2e39j109' = "tcanton:syme2e39j109",
3794
+ 'tcanton:ddaqqq' = "tcanton:ddaqqq",
3795
+ 'tcanton:psttst001' = "tcanton:psttst001",
3796
+ 'tcanton:sym420434dc3' = "tcanton:sym420434dc3",
3797
+ 'tcanton:symuatcshac4' = "tcanton:symuatcshac4",
3798
+ 'tcanton:orc6789abc12' = "tcanton:orc6789abc12",
3799
+ 'tcanton:orc12345h928' = "tcanton:orc12345h928",
3524
3800
  'canton:usdcx' = "canton:usdcx",
3801
+ 'canton:usd1' = "canton:usd1",
3525
3802
  'canton:cbtc' = "canton:cbtc",
3526
3803
  'canton:usdxlr' = "canton:usdxlr",
3527
3804
  'canton:cltc' = "canton:cltc",
@@ -3531,12 +3808,22 @@ export declare enum UnderlyingAsset {
3531
3808
  'tempo:pathusd' = "tempo:pathusd",
3532
3809
  'tempo:usdc' = "tempo:usdc",
3533
3810
  'tempo:usd1' = "tempo:usd1",
3811
+ 'tempo:usdt0' = "tempo:usdt0",
3812
+ 'tempo:gousd' = "tempo:gousd",
3813
+ 'tempo:cbbtc' = "tempo:cbbtc",
3814
+ 'tempo:syrupusdc' = "tempo:syrupusdc",
3815
+ 'tempo:cusd' = "tempo:cusd",
3816
+ 'tempo:stcusd' = "tempo:stcusd",
3534
3817
  'ttempo:pathusd' = "ttempo:pathusd",
3535
3818
  'ttempo:alphausd' = "ttempo:alphausd",
3536
3819
  'ttempo:betausd' = "ttempo:betausd",
3537
3820
  'ttempo:thetausd' = "ttempo:thetausd",
3538
3821
  'ttempo:usd1' = "ttempo:usd1",
3539
3822
  'ttempo:stgusd1' = "ttempo:stgusd1",
3823
+ 'ttempo:gousd' = "ttempo:gousd",
3824
+ 'ttempo:stggousd' = "ttempo:stggousd",
3825
+ 'ttempo:stgscaasacme' = "ttempo:stgscaasacme",
3826
+ 'ttempo:scaasacme' = "ttempo:scaasacme",
3540
3827
  'tprividiumeth:USB-ESCROW-D' = "tprividiumeth:USB-ESCROW-D",
3541
3828
  'tprividiumeth:tMMF' = "tprividiumeth:tMMF",
3542
3829
  AED = "aed",