@bitgo-beta/statics 10.0.1-alpha.510 → 10.0.1-alpha.511

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 (51) hide show
  1. package/dist/src/account.d.ts +80 -3
  2. package/dist/src/account.d.ts.map +1 -1
  3. package/dist/src/account.js +63 -6
  4. package/dist/src/allCoinsAndTokens.d.ts.map +1 -1
  5. package/dist/src/allCoinsAndTokens.js +117 -4
  6. package/dist/src/base.d.ts +366 -1
  7. package/dist/src/base.d.ts.map +1 -1
  8. package/dist/src/base.js +386 -1
  9. package/dist/src/coinFeatures.d.ts +21 -21
  10. package/dist/src/coinFeatures.d.ts.map +1 -1
  11. package/dist/src/coinFeatures.js +6 -2
  12. package/dist/src/coins/adaTokens.d.ts.map +1 -1
  13. package/dist/src/coins/adaTokens.js +3 -1
  14. package/dist/src/coins/botOfcTokens.d.ts.map +1 -1
  15. package/dist/src/coins/botOfcTokens.js +31 -4
  16. package/dist/src/coins/botTokens.d.ts +1 -1
  17. package/dist/src/coins/botTokens.d.ts.map +1 -1
  18. package/dist/src/coins/botTokens.js +66 -3
  19. package/dist/src/coins/bscTokens.d.ts.map +1 -1
  20. package/dist/src/coins/bscTokens.js +152 -1
  21. package/dist/src/coins/cantonTokens.d.ts.map +1 -1
  22. package/dist/src/coins/cantonTokens.js +20 -6
  23. package/dist/src/coins/erc20Coins.d.ts.map +1 -1
  24. package/dist/src/coins/erc20Coins.js +7 -4
  25. package/dist/src/coins/erc7984Tokens.js +6 -6
  26. package/dist/src/coins/hoodethTokens.d.ts.map +1 -1
  27. package/dist/src/coins/hoodethTokens.js +104 -2
  28. package/dist/src/coins/ofcCoins.d.ts.map +1 -1
  29. package/dist/src/coins/ofcCoins.js +207 -5
  30. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -1
  31. package/dist/src/coins/ofcErc20Coins.js +52 -16
  32. package/dist/src/coins/ofcHoodethTokens.d.ts.map +1 -1
  33. package/dist/src/coins/ofcHoodethTokens.js +104 -2
  34. package/dist/src/coins/polygonTokens.d.ts.map +1 -1
  35. package/dist/src/coins/polygonTokens.js +8 -1
  36. package/dist/src/coins/solTokens.d.ts.map +1 -1
  37. package/dist/src/coins/solTokens.js +41 -6
  38. package/dist/src/coins.d.ts.map +1 -1
  39. package/dist/src/coins.js +2 -1
  40. package/dist/src/index.d.ts +1 -1
  41. package/dist/src/index.d.ts.map +1 -1
  42. package/dist/src/index.js +5 -2
  43. package/dist/src/networks.d.ts +65 -0
  44. package/dist/src/networks.d.ts.map +1 -1
  45. package/dist/src/networks.js +98 -1
  46. package/dist/src/tokenConfig.d.ts +9 -0
  47. package/dist/src/tokenConfig.d.ts.map +1 -1
  48. package/dist/src/utxo.d.ts.map +1 -1
  49. package/dist/src/utxo.js +4 -1
  50. package/dist/tsconfig.tsbuildinfo +1 -1
  51. package/package.json +2 -2
@@ -38,6 +38,7 @@ export declare enum CoinFamily {
38
38
  CODEXETH = "codexeth",// Codex Ethereum L2
39
39
  COREDAO = "coredao",
40
40
  COREUM = "coreum",
41
+ COTIETH = "cotieth",// COTI EVM native chain
41
42
  CRONOS = "cronos",
42
43
  CSPR = "cspr",
43
44
  DASH = "dash",
@@ -101,6 +102,7 @@ export declare enum CoinFamily {
101
102
  OPETH = "opeth",
102
103
  OSMO = "osmo",
103
104
  PLUME = "plume",
105
+ PEARL = "pearl",
104
106
  RBTC = "rbtc",
105
107
  SCROLLETH = "scrolleth",// Scroll L2
106
108
  SGB = "sgb",
@@ -137,6 +139,7 @@ export declare enum CoinFamily {
137
139
  SOMI = "somi",// Somnia Chain
138
140
  FLUENTETH = "fluenteth",
139
141
  MORPH = "morph",
142
+ MORPHETH = "morpheth",
140
143
  ARCUSDC = "arcusdc",// ARC network
141
144
  TEMPO = "tempo",// Tempo Network
142
145
  UNIETH = "unieth",// Unichain
@@ -440,7 +443,19 @@ export declare enum CoinFeature {
440
443
  /**
441
444
  * This coin supports bring-your-own-validator (BYOV) staking
442
445
  */
443
- BYOV_VALIDATOR = "byov-validator"
446
+ BYOV_VALIDATOR = "byov-validator",
447
+ /**
448
+ * This coin is a tokenized equity (e.g. a tokenized stock). Drives generic
449
+ * behavior such as pricing off the underlying and asset-class reporting.
450
+ * May be set for both BitGo-issued and third-party tokenized equities.
451
+ */
452
+ TOKENIZED_EQUITY = "tokenized-equity",
453
+ /**
454
+ * This coin is a BitGo first-party permissioned tokenized equity (a goStock).
455
+ * Drives whitelist-destination withdrawal validation and allowlist/segregation
456
+ * behavior. MUST only be set together with TOKENIZED_EQUITY.
457
+ */
458
+ BITGO_TOKENIZED_EQUITY = "bitgo-tokenized-equity"
444
459
  }
445
460
  /**
446
461
  * Some coins are representations of another underlying asset class. An example
@@ -482,6 +497,7 @@ export declare enum UnderlyingAsset {
482
497
  CODEXETH = "codexeth",// Codex Ethereum L2
483
498
  COREDAO = "coredao",
484
499
  COREUM = "coreum",
500
+ COTIETH = "cotieth",// COTI EVM native chain
485
501
  CRONOS = "cronos",
486
502
  CSPR = "cspr",
487
503
  EOS = "eos",
@@ -530,6 +546,7 @@ export declare enum UnderlyingAsset {
530
546
  MEGAETH = "megaeth",
531
547
  MON = "mon",
532
548
  MORPH = "morph",
549
+ MORPHETH = "morpheth",
533
550
  NEAR = "near",
534
551
  OAS = "oas",
535
552
  OG = "og",
@@ -549,6 +566,7 @@ export declare enum UnderlyingAsset {
549
566
  SCROLLETH = "scrolleth",// Scroll L2
550
567
  SEI = "sei",
551
568
  SEIEVM = "seievm",
569
+ SEPETH = "sepeth",// Sepolia Ethereum testnet
552
570
  SGB = "sgb",
553
571
  SOL = "sol",
554
572
  SOMI = "somi",// Somnia Chain
@@ -1069,6 +1087,27 @@ export declare enum UnderlyingAsset {
1069
1087
  'tsol:gospcx' = "tsol:gospcx",
1070
1088
  'tsol:stggospcx' = "tsol:stggospcx",
1071
1089
  'sol:gospcx' = "sol:gospcx",
1090
+ 'tsol:goamzn' = "tsol:goamzn",
1091
+ 'tsol:stggoamzn' = "tsol:stggoamzn",
1092
+ 'sol:goamzn' = "sol:goamzn",
1093
+ 'tsol:gobtgo' = "tsol:gobtgo",
1094
+ 'tsol:stggobtgo' = "tsol:stggobtgo",
1095
+ 'sol:gobtgo' = "sol:gobtgo",
1096
+ 'tsol:gogoog' = "tsol:gogoog",
1097
+ 'tsol:stggogoog' = "tsol:stggogoog",
1098
+ 'sol:gogoog' = "sol:gogoog",
1099
+ 'tsol:gometa' = "tsol:gometa",
1100
+ 'tsol:stggometa' = "tsol:stggometa",
1101
+ 'sol:gometa' = "sol:gometa",
1102
+ 'tsol:gomsft' = "tsol:gomsft",
1103
+ 'tsol:stggomsft' = "tsol:stggomsft",
1104
+ 'sol:gomsft' = "sol:gomsft",
1105
+ 'tsol:gonvda' = "tsol:gonvda",
1106
+ 'tsol:stggonvda' = "tsol:stggonvda",
1107
+ 'sol:gonvda' = "sol:gonvda",
1108
+ 'tsol:gotsla' = "tsol:gotsla",
1109
+ 'tsol:stggotsla' = "tsol:stggotsla",
1110
+ 'sol:gotsla' = "sol:gotsla",
1072
1111
  'sol:usd1' = "sol:usd1",
1073
1112
  'sol:gousd' = "sol:gousd",
1074
1113
  'tsol:gousd' = "tsol:gousd",
@@ -1085,6 +1124,7 @@ export declare enum UnderlyingAsset {
1085
1124
  'tsol:gari' = "tsol:gari",
1086
1125
  'tsol:t22mint' = "tsol:t22mint",
1087
1126
  'tsol:t1test' = "tsol:t1test",
1127
+ 'tsol:ttkb' = "tsol:ttkb",
1088
1128
  GAS = "gas",
1089
1129
  GATE = "gate",
1090
1130
  GBPT = "gbpt",
@@ -1503,6 +1543,7 @@ export declare enum UnderlyingAsset {
1503
1543
  PRDX = "prdx",
1504
1544
  PRINTS = "prints",
1505
1545
  PRISM = "prism",
1546
+ PEARL = "pearl",
1506
1547
  PRO = "pro",
1507
1548
  PROM = "prom",
1508
1549
  PROS = "pros",
@@ -1895,6 +1936,108 @@ export declare enum UnderlyingAsset {
1895
1936
  'hoodeth:zm' = "hoodeth:zm",
1896
1937
  'hoodeth:zs' = "hoodeth:zs",
1897
1938
  'hoodeth:spcx' = "hoodeth:spcx",
1939
+ 'hoodeth:skhy' = "hoodeth:skhy",
1940
+ 'hoodeth:cashcat' = "hoodeth:cashcat",
1941
+ 'hoodeth:wdc' = "hoodeth:wdc",
1942
+ 'hoodeth:alab' = "hoodeth:alab",
1943
+ 'hoodeth:crdo' = "hoodeth:crdo",
1944
+ 'hoodeth:avav' = "hoodeth:avav",
1945
+ 'hoodeth:adbe' = "hoodeth:adbe",
1946
+ 'hoodeth:wulf' = "hoodeth:wulf",
1947
+ 'hoodeth:fig' = "hoodeth:fig",
1948
+ 'hoodeth:smr' = "hoodeth:smr",
1949
+ 'hoodeth:klac' = "hoodeth:klac",
1950
+ 'hoodeth:pl' = "hoodeth:pl",
1951
+ 'hoodeth:axti' = "hoodeth:axti",
1952
+ 'hoodeth:te' = "hoodeth:te",
1953
+ 'hoodeth:bull' = "hoodeth:bull",
1954
+ 'hoodeth:joby' = "hoodeth:joby",
1955
+ 'hoodeth:tem' = "hoodeth:tem",
1956
+ 'hoodeth:lrcx' = "hoodeth:lrcx",
1957
+ 'hoodeth:cohr' = "hoodeth:cohr",
1958
+ 'hoodeth:ktos' = "hoodeth:ktos",
1959
+ 'hoodeth:zeta' = "hoodeth:zeta",
1960
+ 'hoodeth:axon' = "hoodeth:axon",
1961
+ 'hoodeth:crm' = "hoodeth:crm",
1962
+ 'hoodeth:fly' = "hoodeth:fly",
1963
+ 'hoodeth:wyfi' = "hoodeth:wyfi",
1964
+ 'hoodeth:ttd' = "hoodeth:ttd",
1965
+ 'hoodeth:rcat' = "hoodeth:rcat",
1966
+ 'hoodeth:infq' = "hoodeth:infq",
1967
+ 'hoodeth:oust' = "hoodeth:oust",
1968
+ 'hoodeth:on' = "hoodeth:on",
1969
+ 'hoodeth:fico' = "hoodeth:fico",
1970
+ 'hoodeth:ibm' = "hoodeth:ibm",
1971
+ 'hoodeth:amkr' = "hoodeth:amkr",
1972
+ 'hoodeth:cien' = "hoodeth:cien",
1973
+ 'hoodeth:hims' = "hoodeth:hims",
1974
+ 'hoodeth:cls' = "hoodeth:cls",
1975
+ 'hoodeth:ter' = "hoodeth:ter",
1976
+ 'hoodeth:soun' = "hoodeth:soun",
1977
+ 'hoodeth:path' = "hoodeth:path",
1978
+ 'hoodeth:aehr' = "hoodeth:aehr",
1979
+ 'hoodeth:mrna' = "hoodeth:mrna",
1980
+ 'hoodeth:oklo' = "hoodeth:oklo",
1981
+ 'hoodeth:vrt' = "hoodeth:vrt",
1982
+ 'hoodeth:mpwr' = "hoodeth:mpwr",
1983
+ 'hoodeth:fisv' = "hoodeth:fisv",
1984
+ 'hoodeth:glxy' = "hoodeth:glxy",
1985
+ 'hoodeth:snow' = "hoodeth:snow",
1986
+ 'hoodeth:team' = "hoodeth:team",
1987
+ 'hoodeth:snap' = "hoodeth:snap",
1988
+ 'hoodeth:run' = "hoodeth:run",
1989
+ 'hoodeth:bb' = "hoodeth:bb",
1990
+ 'hoodeth:sls' = "hoodeth:sls",
1991
+ 'hoodeth:gev' = "hoodeth:gev",
1992
+ 'hoodeth:app' = "hoodeth:app",
1993
+ 'hoodeth:lmt' = "hoodeth:lmt",
1994
+ 'hoodeth:ceg' = "hoodeth:ceg",
1995
+ 'hoodeth:ge' = "hoodeth:ge",
1996
+ 'hoodeth:hwm' = "hoodeth:hwm",
1997
+ 'hoodeth:hpe' = "hoodeth:hpe",
1998
+ 'hoodeth:vsat' = "hoodeth:vsat",
1999
+ 'hoodeth:vst' = "hoodeth:vst",
2000
+ 'hoodeth:navn' = "hoodeth:navn",
2001
+ 'hoodeth:ibrx' = "hoodeth:ibrx",
2002
+ 'hoodeth:fix' = "hoodeth:fix",
2003
+ 'hoodeth:lhx' = "hoodeth:lhx",
2004
+ 'hoodeth:ftnt' = "hoodeth:ftnt",
2005
+ 'hoodeth:panw' = "hoodeth:panw",
2006
+ 'hoodeth:onto' = "hoodeth:onto",
2007
+ 'hoodeth:anet' = "hoodeth:anet",
2008
+ 'hoodeth:aur' = "hoodeth:aur",
2009
+ 'hoodeth:ctsh' = "hoodeth:ctsh",
2010
+ 'hoodeth:vicr' = "hoodeth:vicr",
2011
+ 'hoodeth:mtsi' = "hoodeth:mtsi",
2012
+ 'hoodeth:hii' = "hoodeth:hii",
2013
+ 'hoodeth:csco' = "hoodeth:csco",
2014
+ 'hoodeth:pfe' = "hoodeth:pfe",
2015
+ 'hoodeth:qnt' = "hoodeth:qnt",
2016
+ 'hoodeth:simo' = "hoodeth:simo",
2017
+ 'hoodeth:docn' = "hoodeth:docn",
2018
+ 'hoodeth:jnj' = "hoodeth:jnj",
2019
+ 'hoodeth:unh' = "hoodeth:unh",
2020
+ 'hoodeth:net' = "hoodeth:net",
2021
+ 'hoodeth:amba' = "hoodeth:amba",
2022
+ 'hoodeth:abcl' = "hoodeth:abcl",
2023
+ 'hoodeth:smh' = "hoodeth:smh",
2024
+ 'hoodeth:vti' = "hoodeth:vti",
2025
+ 'hoodeth:gld' = "hoodeth:gld",
2026
+ 'hoodeth:schd' = "hoodeth:schd",
2027
+ 'hoodeth:jepq' = "hoodeth:jepq",
2028
+ 'hoodeth:inda' = "hoodeth:inda",
2029
+ 'hoodeth:ewt' = "hoodeth:ewt",
2030
+ 'hoodeth:amc' = "hoodeth:amc",
2031
+ 'hoodeth:cvna' = "hoodeth:cvna",
2032
+ 'hoodeth:djt' = "hoodeth:djt",
2033
+ 'hoodeth:kss' = "hoodeth:kss",
2034
+ 'hoodeth:clov' = "hoodeth:clov",
2035
+ 'hoodeth:mod' = "hoodeth:mod",
2036
+ 'hoodeth:pwr' = "hoodeth:pwr",
2037
+ 'hoodeth:aeis' = "hoodeth:aeis",
2038
+ 'hoodeth:powl' = "hoodeth:powl",
2039
+ 'hoodeth:jbl' = "hoodeth:jbl",
2040
+ 'hoodeth:shy' = "hoodeth:shy",
1898
2041
  'hemieth:hemi' = "hemieth:hemi",
1899
2042
  'hemieth:hemibtc' = "hemieth:hemibtc",
1900
2043
  'usdt0:stable' = "usdt0:stable",
@@ -2322,6 +2465,7 @@ export declare enum UnderlyingAsset {
2322
2465
  'eth:bard' = "eth:bard",
2323
2466
  'eth:sfp' = "eth:sfp",
2324
2467
  'eth:aztec' = "eth:aztec",
2468
+ 'eth:jpysc' = "eth:jpysc",
2325
2469
  'eth:qqqon' = "qqqon",
2326
2470
  'eth:spyon' = "spyon",
2327
2471
  'eth:nvdaon' = "nvdaon",
@@ -2487,15 +2631,93 @@ export declare enum UnderlyingAsset {
2487
2631
  'eth:kag' = "eth:kag",
2488
2632
  'eth:upprism' = "eth:upprism",
2489
2633
  'eth:qncxt' = "eth:qncxt",
2634
+ 'bsc:baion' = "bsc:baion",
2635
+ 'bsc:bincon' = "bsc:bincon",
2636
+ 'bsc:blcron' = "bsc:blcron",
2637
+ 'bsc:brlnon' = "bsc:brlnon",
2638
+ 'bsc:brtron' = "bsc:brtron",
2639
+ 'bsc:cloaon' = "bsc:cloaon",
2640
+ 'bsc:coroon' = "bsc:coroon",
2641
+ 'bsc:dynfon' = "bsc:dynfon",
2642
+ 'bsc:euhyon' = "bsc:euhyon",
2643
+ 'bsc:ggovon' = "bsc:ggovon",
2644
+ 'bsc:iauon' = "bsc:iauon",
2645
+ 'bsc:ibiton' = "bsc:ibiton",
2646
+ 'bsc:iefon' = "bsc:iefon",
2647
+ 'bsc:aaplon' = "bsc:aaplon",
2648
+ 'bsc:amznon' = "bsc:amznon",
2649
+ 'bsc:ethaon' = "bsc:ethaon",
2650
+ 'bsc:googlon' = "bsc:googlon",
2651
+ 'bsc:metaon' = "bsc:metaon",
2652
+ 'bsc:msfton' = "bsc:msfton",
2653
+ 'bsc:nvdaon' = "bsc:nvdaon",
2654
+ 'bsc:tslaon' = "bsc:tslaon",
2655
+ 'bsc:aggon' = "bsc:aggon",
2656
+ 'bsc:alabon' = "bsc:alabon",
2657
+ 'bsc:amaton' = "bsc:amaton",
2658
+ 'bsc:amdon' = "bsc:amdon",
2659
+ 'bsc:aneton' = "bsc:aneton",
2660
+ 'bsc:armon' = "bsc:armon",
2661
+ 'bsc:asmlon' = "bsc:asmlon",
2662
+ 'bsc:avgoon' = "bsc:avgoon",
2663
+ 'bsc:beon' = "bsc:beon",
2664
+ 'bsc:botzon' = "bsc:botzon",
2665
+ 'bsc:brhyon' = "bsc:brhyon",
2666
+ 'bsc:cegon' = "bsc:cegon",
2667
+ 'bsc:cienon' = "bsc:cienon",
2668
+ 'bsc:cifron' = "bsc:cifron",
2669
+ 'bsc:cohron' = "bsc:cohron",
2670
+ 'bsc:crdoon' = "bsc:crdoon",
2671
+ 'bsc:crwvon' = "bsc:crwvon",
2672
+ 'bsc:dellon' = "bsc:dellon",
2673
+ 'bsc:dramon' = "bsc:dramon",
2674
+ 'bsc:dtcron' = "bsc:dtcron",
2675
+ 'bsc:etnon' = "bsc:etnon",
2676
+ 'bsc:fnon' = "bsc:fnon",
2677
+ 'bsc:gevon' = "bsc:gevon",
2678
+ 'bsc:glwon' = "bsc:glwon",
2679
+ 'bsc:hygon' = "bsc:hygon",
2680
+ 'bsc:ialton' = "bsc:ialton",
2681
+ 'bsc:igebon' = "bsc:igebon",
2682
+ 'bsc:igvon' = "bsc:igvon",
2683
+ 'bsc:inroon' = "bsc:inroon",
2684
+ 'bsc:irenon' = "bsc:irenon",
2685
+ 'bsc:klacon' = "bsc:klacon",
2686
+ 'bsc:lembon' = "bsc:lembon",
2687
+ 'bsc:liteon' = "bsc:liteon",
2688
+ 'bsc:lrcxon' = "bsc:lrcxon",
2689
+ 'bsc:mrvlon' = "bsc:mrvlon",
2690
+ 'bsc:muon' = "bsc:muon",
2691
+ 'bsc:nbison' = "bsc:nbison",
2692
+ 'bsc:qltaon' = "bsc:qltaon",
2693
+ 'bsc:sataon' = "bsc:sataon",
2694
+ 'bsc:sgovon' = "bsc:sgovon",
2695
+ 'bsc:smcion' = "bsc:smcion",
2696
+ 'bsc:strcon' = "bsc:strcon",
2697
+ 'bsc:tsmon' = "bsc:tsmon",
2698
+ 'bsc:vnqon' = "bsc:vnqon",
2699
+ 'bsc:vrton' = "bsc:vrton",
2700
+ 'bsc:vston' = "bsc:vston",
2701
+ 'sol:shvon' = "sol:shvon",
2702
+ 'sol:tshvontesting' = "sol:tshvontesting",
2703
+ 'bsc:qyldon' = "bsc:qyldon",
2704
+ 'bsc:xyldon' = "bsc:xyldon",
2705
+ 'bsc:jaaaon' = "bsc:jaaaon",
2490
2706
  'eth:t-bincon' = "eth:t-bincon",
2491
2707
  'eth:t-iauon' = "eth:t-iauon",
2492
2708
  'eth:t-iemgon' = "eth:t-iemgon",
2493
2709
  'eth:t-ibiton' = "eth:t-ibiton",
2494
2710
  'eth:t-ivvon' = "eth:t-ivvon",
2495
2711
  'morph:usdc' = "morph:usdc",
2712
+ 'morpheth:usdc' = "morpheth:usdc",
2496
2713
  'morph:usdt' = "morph:usdt",
2714
+ 'morpheth:usdt' = "morpheth:usdt",
2497
2715
  'morph:usd1' = "morph:usd1",
2716
+ 'morpheth:usd1' = "morpheth:usd1",
2498
2717
  'tmorph:tmt' = "tmorph:tmt",
2718
+ 'tmorpheth:tmt' = "tmorpheth:tmt",
2719
+ 'tmorpheth:usd1' = "tmorpheth:usd1",
2720
+ 'tmorpheth:stgusd1' = "tmorpheth:stgusd1",
2499
2721
  'xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ' = "xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ",
2500
2722
  'xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M' = "xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M",
2501
2723
  'xlm:SLT-GCKA6K5PCQ6PNF5RQBF7PQDJWRHO6UOGFMRLK3DYHDOI244V47XKQ4GP' = "xlm:SLT-GCKA6K5PCQ6PNF5RQBF7PQDJWRHO6UOGFMRLK3DYHDOI244V47XKQ4GP",
@@ -2804,6 +3026,10 @@ export declare enum UnderlyingAsset {
2804
3026
  'polygon:colt' = "polygon:colt",
2805
3027
  'polygon:bolt' = "polygon:bolt",
2806
3028
  'polygon:gmc' = "polygon:gmc",
3029
+ 'polygon:wpay' = "polygon:wpay",
3030
+ 'polygon:seag' = "polygon:seag",
3031
+ 'polygon:infra' = "polygon:infra",
3032
+ 'polygon:sofid' = "polygon:sofid",
2807
3033
  'erc721:polygontoken' = "erc721:polygontoken",
2808
3034
  'erc1155:polygontoken' = "erc1155:polygontoken",
2809
3035
  'bsc:sol' = "bsc:sol",
@@ -2818,6 +3044,7 @@ export declare enum UnderlyingAsset {
2818
3044
  'bsc:busd' = "bsc:busd",
2819
3045
  'bsc:hook' = "bsc:hook",
2820
3046
  'bsc:ksm' = "bsc:ksm",
3047
+ 'bsc:usgd' = "bsc:usgd",
2821
3048
  'bsc:usdt' = "bsc:usdt",
2822
3049
  'bsc:vet' = "bsc:vet",
2823
3050
  'bsc:cake' = "bsc:cake",
@@ -2933,6 +3160,7 @@ export declare enum UnderlyingAsset {
2933
3160
  'bsc:om' = "bsc:om",
2934
3161
  'bsc:eos' = "bsc:eos",
2935
3162
  'bsc:usdd' = "bsc:usdd",
3163
+ 'bsc:gdl' = "bsc:gdl",
2936
3164
  'bsc:gft' = "bsc:gft",
2937
3165
  'bsc:glmr' = "bsc:glmr",
2938
3166
  'bsc:gmt' = "bsc:gmt",
@@ -2988,6 +3216,73 @@ export declare enum UnderlyingAsset {
2988
3216
  'bsc:esports' = "bsc:esports",
2989
3217
  'bsc:xter' = "bsc:xter",
2990
3218
  'bsc:usdau' = "bsc:usdau",
3219
+ 'bsc:tbaiontesting' = "bsc:tbaiontesting",
3220
+ 'bsc:tblcrontesting' = "bsc:tblcrontesting",
3221
+ 'bsc:tbrlnontesting' = "bsc:tbrlnontesting",
3222
+ 'bsc:tbrtrontesting' = "bsc:tbrtrontesting",
3223
+ 'bsc:tcloaontesting' = "bsc:tcloaontesting",
3224
+ 'bsc:tcoroontesting' = "bsc:tcoroontesting",
3225
+ 'bsc:tdynfontesting' = "bsc:tdynfontesting",
3226
+ 'bsc:teuhyontesting' = "bsc:teuhyontesting",
3227
+ 'bsc:tggovontesting' = "bsc:tggovontesting",
3228
+ 'bsc:tiefontesting' = "bsc:tiefontesting",
3229
+ 'bsc:taaplontesting' = "bsc:taaplontesting",
3230
+ 'bsc:tamznontesting' = "bsc:tamznontesting",
3231
+ 'bsc:tethaontesting' = "bsc:tethaontesting",
3232
+ 'bsc:tgooglontesting' = "bsc:tgooglontesting",
3233
+ 'bsc:tmetaontesting' = "bsc:tmetaontesting",
3234
+ 'bsc:tmsftontesting' = "bsc:tmsftontesting",
3235
+ 'bsc:tnvdaontesting' = "bsc:tnvdaontesting",
3236
+ 'bsc:ttslaontesting' = "bsc:ttslaontesting",
3237
+ 'bsc:taggontesting' = "bsc:taggontesting",
3238
+ 'bsc:talabontesting' = "bsc:talabontesting",
3239
+ 'bsc:tamatontesting' = "bsc:tamatontesting",
3240
+ 'bsc:tamdontesting' = "bsc:tamdontesting",
3241
+ 'bsc:tanetontesting' = "bsc:tanetontesting",
3242
+ 'bsc:tarmontesting' = "bsc:tarmontesting",
3243
+ 'bsc:tasmlontesting' = "bsc:tasmlontesting",
3244
+ 'bsc:tavgoontesting' = "bsc:tavgoontesting",
3245
+ 'bsc:tbeontesting' = "bsc:tbeontesting",
3246
+ 'bsc:tbotzontesting' = "bsc:tbotzontesting",
3247
+ 'bsc:tbrhyontesting' = "bsc:tbrhyontesting",
3248
+ 'bsc:tcegontesting' = "bsc:tcegontesting",
3249
+ 'bsc:tcienontesting' = "bsc:tcienontesting",
3250
+ 'bsc:tcifrontesting' = "bsc:tcifrontesting",
3251
+ 'bsc:tcohrontesting' = "bsc:tcohrontesting",
3252
+ 'bsc:tcrdoontesting' = "bsc:tcrdoontesting",
3253
+ 'bsc:tcrwvontesting' = "bsc:tcrwvontesting",
3254
+ 'bsc:tdellontesting' = "bsc:tdellontesting",
3255
+ 'bsc:tdramontesting' = "bsc:tdramontesting",
3256
+ 'bsc:tdtcrontesting' = "bsc:tdtcrontesting",
3257
+ 'bsc:tetnontesting' = "bsc:tetnontesting",
3258
+ 'bsc:tfnontesting' = "bsc:tfnontesting",
3259
+ 'bsc:tgevontesting' = "bsc:tgevontesting",
3260
+ 'bsc:tglwontesting' = "bsc:tglwontesting",
3261
+ 'bsc:thygontesting' = "bsc:thygontesting",
3262
+ 'bsc:tialtontesting' = "bsc:tialtontesting",
3263
+ 'bsc:tigebontesting' = "bsc:tigebontesting",
3264
+ 'bsc:tigvontesting' = "bsc:tigvontesting",
3265
+ 'bsc:tinroontesting' = "bsc:tinroontesting",
3266
+ 'bsc:tirenontesting' = "bsc:tirenontesting",
3267
+ 'bsc:tklacontesting' = "bsc:tklacontesting",
3268
+ 'bsc:tlembontesting' = "bsc:tlembontesting",
3269
+ 'bsc:tliteontesting' = "bsc:tliteontesting",
3270
+ 'bsc:tlrcxontesting' = "bsc:tlrcxontesting",
3271
+ 'bsc:tmrvlontesting' = "bsc:tmrvlontesting",
3272
+ 'bsc:tmuontesting' = "bsc:tmuontesting",
3273
+ 'bsc:tnbisontesting' = "bsc:tnbisontesting",
3274
+ 'bsc:tqltaontesting' = "bsc:tqltaontesting",
3275
+ 'bsc:tsataontesting' = "bsc:tsataontesting",
3276
+ 'bsc:tsgovontesting' = "bsc:tsgovontesting",
3277
+ 'bsc:tsmciontesting' = "bsc:tsmciontesting",
3278
+ 'bsc:tstrcontesting' = "bsc:tstrcontesting",
3279
+ 'bsc:ttsmontesting' = "bsc:ttsmontesting",
3280
+ 'bsc:tvnqontesting' = "bsc:tvnqontesting",
3281
+ 'bsc:tvrtontesting' = "bsc:tvrtontesting",
3282
+ 'bsc:tvstontesting' = "bsc:tvstontesting",
3283
+ 'bsc:tqyldontesting' = "bsc:tqyldontesting",
3284
+ 'bsc:txyldontesting' = "bsc:txyldontesting",
3285
+ 'bsc:tjaaaontesting' = "bsc:tjaaaontesting",
2991
3286
  'bsc:t-bincon' = "bsc:t-bincon",
2992
3287
  'bsc:t-iauon' = "bsc:t-iauon",
2993
3288
  'bsc:t-iemgon' = "bsc:t-iemgon",
@@ -2996,6 +3291,16 @@ export declare enum UnderlyingAsset {
2996
3291
  'bsc:sqd' = "bsc:sqd",
2997
3292
  'bsc:skyai' = "bsc:skyai",
2998
3293
  'bsc:zktc' = "bsc:zktc",
3294
+ 'bsc:fhe' = "bsc:fhe",
3295
+ 'bsc:babydoge' = "bsc:babydoge",
3296
+ 'bsc:pieverse' = "bsc:pieverse",
3297
+ 'bsc:br' = "bsc:br",
3298
+ 'bsc:cgpt' = "bsc:cgpt",
3299
+ 'bsc:ta' = "bsc:ta",
3300
+ 'bsc:token' = "bsc:token",
3301
+ 'bsc:hygwon' = "bsc:hygwon",
3302
+ 'bsc:secuon' = "bsc:secuon",
3303
+ 'bsc:sysbon' = "bsc:sysbon",
2999
3304
  'erc721:bsctoken' = "erc721:bsctoken",
3000
3305
  'erc1155:bsctoken' = "erc1155:bsctoken",
3001
3306
  'terc721:bsctoken' = "terc721:bsctoken",
@@ -3016,6 +3321,9 @@ export declare enum UnderlyingAsset {
3016
3321
  'tpolygon:copr3' = "tpolygon:copr3",
3017
3322
  'tpolygon:tusdl' = "tpolygon:tusdl",
3018
3323
  'tpolygon:tusdlt' = "tpolygon:tusdlt",
3324
+ 'tpolygon:sofid' = "tpolygon:sofid",
3325
+ 'tpolygon:stgsofid' = "tpolygon:stgsofid",
3326
+ 'tpolygon:activ' = "tpolygon:activ",
3019
3327
  'terc721:polygontoken' = "terc721:polygontoken",
3020
3328
  'terc1155:polygontoken' = "terc1155:polygontoken",
3021
3329
  'arbeth:link' = "arbeth:link",
@@ -3093,6 +3401,8 @@ export declare enum UnderlyingAsset {
3093
3401
  'arbeth:chlt' = "arbeth:chlt",
3094
3402
  'arbeth:bolt' = "arbeth:bolt",
3095
3403
  'arbeth:pert' = "arbeth:pert",
3404
+ 'arbeth:obt' = "arbeth:obt",
3405
+ 'arbeth:magic' = "arbeth:magic",
3096
3406
  'baseeth:aero' = "baseeth:aero",
3097
3407
  'baseeth:cfi' = "baseeth:cfi",
3098
3408
  'baseeth:icnt' = "baseeth:icnt",
@@ -3148,6 +3458,15 @@ export declare enum UnderlyingAsset {
3148
3458
  'baseeth:gusdcq' = "baseeth:gusdcq",
3149
3459
  'baseeth:laptop' = "baseeth:laptop",
3150
3460
  'baseeth:vbtcb' = "baseeth:vbtcb",
3461
+ 'baseeth:gldy' = "baseeth:gldy",
3462
+ 'baseeth:wpay' = "baseeth:wpay",
3463
+ 'baseeth:degen' = "baseeth:degen",
3464
+ 'baseeth:soso' = "baseeth:soso",
3465
+ 'baseeth:sign' = "baseeth:sign",
3466
+ 'baseeth:synd' = "baseeth:synd",
3467
+ 'baseeth:flock' = "baseeth:flock",
3468
+ 'baseeth:gps' = "baseeth:gps",
3469
+ 'baseeth:elsa' = "baseeth:elsa",
3151
3470
  'tbaseeth:usdc' = "tbaseeth:usdc",
3152
3471
  'tbaseeth:xusd' = "tbaseeth:xusd",
3153
3472
  'tbaseeth:xsgd' = "tbaseeth:xsgd",
@@ -3155,6 +3474,11 @@ export declare enum UnderlyingAsset {
3155
3474
  'tbaseeth:ctusd1cx' = "tbaseeth:ctusd1cx",
3156
3475
  'tbaseeth:tusdl' = "tbaseeth:tusdl",
3157
3476
  'tbaseeth:ttbills' = "tbaseeth:ttbills",
3477
+ 'tbaseeth:kmusdc' = "tbaseeth:kmusdc",
3478
+ 'tbaseeth:tpdd' = "tbaseeth:tpdd",
3479
+ 'tbaseeth:tnmr' = "tbaseeth:tnmr",
3480
+ 'tbaseeth:tabeq' = "tbaseeth:tabeq",
3481
+ 'tbaseeth:ctbtccx_99e833' = "tbaseeth:ctbtccx_99e833",
3158
3482
  'og:wog' = "og:wog",
3159
3483
  'seievm:usdc' = "seievm:usdc",
3160
3484
  'seievm:weth' = "seievm:weth",
@@ -3178,7 +3502,13 @@ export declare enum UnderlyingAsset {
3178
3502
  'flow:wflow' = "flow:wflow",
3179
3503
  'mon:usdc' = "mon:usdc",
3180
3504
  'mon:wmon' = "mon:wmon",
3505
+ 'mon:sofid' = "mon:sofid",
3181
3506
  'tmon:tmt' = "tmon:tmt",
3507
+ 'tmon:sofid' = "tmon:sofid",
3508
+ 'tmon:stgsofid' = "tmon:stgsofid",
3509
+ 'gasevm:usd1' = "gasevm:usd1",
3510
+ 'tgasevm:usd1' = "tgasevm:usd1",
3511
+ 'tgasevm:stgusd1' = "tgasevm:stgusd1",
3182
3512
  'xdc:usdc' = "xdc:usdc",
3183
3513
  'xdc:lbt' = "xdc:lbt",
3184
3514
  'xdc:cre' = "xdc:cre",
@@ -3241,6 +3571,7 @@ export declare enum UnderlyingAsset {
3241
3571
  'topeth:terc18dp' = "topeth:terc18dp",
3242
3572
  'topeth:wct' = "topeth:wct",
3243
3573
  'zketh:link' = "zketh:link",
3574
+ 'zketh:zk' = "zketh:zk",
3244
3575
  'tzketh:link' = "tzketh:link",
3245
3576
  'celo:pact' = "celo:pact",
3246
3577
  'bera:bgt' = "bera:bgt",
@@ -3505,6 +3836,11 @@ export declare enum UnderlyingAsset {
3505
3836
  'sol:tusdc' = "sol:tusdc",
3506
3837
  'sol:slx' = "sol:slx",
3507
3838
  'sol:ab1' = "sol:ab1",
3839
+ 'sol:bils' = "sol:bils",
3840
+ 'sol:holo' = "sol:holo",
3841
+ 'sol:birb' = "sol:birb",
3842
+ 'sol:pybobo' = "sol:pybobo",
3843
+ 'sol:usdpt' = "sol:usdpt",
3508
3844
  'tsol:txsgd' = "sol:txsgd",
3509
3845
  'tsol:txusd' = "sol:txusd",
3510
3846
  'trx:htx' = "trx:htx",
@@ -3535,6 +3871,8 @@ export declare enum UnderlyingAsset {
3535
3871
  'xrp:eurcv' = "xrp:eurcv",
3536
3872
  'xrp:aau' = "xrp:aau",
3537
3873
  'xrp:fiuaxrp' = "xrp:fiuaxrp",
3874
+ 'xrp:kld' = "xrp:kld",
3875
+ 'xrp:key' = "xrp:key",
3538
3876
  'txrp:xsgd' = "txrp:xsgd",
3539
3877
  'txrp:sec0' = "txrp:sec0",
3540
3878
  'txrp:sec2' = "txrp:sec2",
@@ -3698,6 +4036,8 @@ export declare enum UnderlyingAsset {
3698
4036
  'eth:mony' = "eth:mony",
3699
4037
  'eth:architectgvi' = "eth:architectgvi",
3700
4038
  'eth:zk' = "eth:zk",
4039
+ 'eth:grove' = "eth:grove",
4040
+ 'eth:scx' = "eth:scx",
3701
4041
  'tada:water' = "tada:water",
3702
4042
  'tada:tusda' = "tada:tusda",
3703
4043
  'ada:min' = "ada:min",
@@ -3711,6 +4051,8 @@ export declare enum UnderlyingAsset {
3711
4051
  'ada:lcc' = "ada:lcc",
3712
4052
  'ada:awlf' = "ada:awlf",
3713
4053
  'ada:asnek' = "ada:asnek",
4054
+ 'ada:usdr' = "ada:usdr",
4055
+ 'ada:susdr' = "ada:susdr",
3714
4056
  'tcanton:testcoin1' = "tcanton:testcoin1",
3715
4057
  'tcanton:testtoken' = "tcanton:testtoken",
3716
4058
  'tcanton:stgusd1' = "tcanton:stgusd1",
@@ -3819,6 +4161,20 @@ export declare enum UnderlyingAsset {
3819
4161
  'canton:sbc' = "canton:sbc",
3820
4162
  'canton:ceth' = "canton:ceth",
3821
4163
  'canton:sofid' = "canton:sofid",
4164
+ 'canton:999990690' = "canton:999990690",
4165
+ 'canton:99999x763' = "canton:99999x763",
4166
+ 'canton:crcl' = "canton:crcl",
4167
+ 'canton:msft' = "canton:msft",
4168
+ 'canton:qqq' = "canton:qqq",
4169
+ 'canton:sgov' = "canton:sgov",
4170
+ 'canton:spy' = "canton:spy",
4171
+ 'canton:912797rs8' = "canton:912797rs8",
4172
+ 'canton:912797va2' = "canton:912797va2",
4173
+ 'canton:912797ve4' = "canton:912797ve4",
4174
+ 'canton:91282cay7' = "canton:91282cay7",
4175
+ 'canton:91282ckf7' = "canton:91282ckf7",
4176
+ 'canton:91282clw9' = "canton:91282clw9",
4177
+ 'canton:912810rc4' = "canton:912810rc4",
3822
4178
  'tempo:pathusd' = "tempo:pathusd",
3823
4179
  'tempo:usdc' = "tempo:usdc",
3824
4180
  'tempo:usd1' = "tempo:usd1",
@@ -3828,6 +4184,7 @@ export declare enum UnderlyingAsset {
3828
4184
  'tempo:syrupusdc' = "tempo:syrupusdc",
3829
4185
  'tempo:cusd' = "tempo:cusd",
3830
4186
  'tempo:stcusd' = "tempo:stcusd",
4187
+ 'tempo:sofid' = "tempo:sofid",
3831
4188
  'ttempo:pathusd' = "ttempo:pathusd",
3832
4189
  'ttempo:alphausd' = "ttempo:alphausd",
3833
4190
  'ttempo:betausd' = "ttempo:betausd",
@@ -3838,8 +4195,16 @@ export declare enum UnderlyingAsset {
3838
4195
  'ttempo:stggousd' = "ttempo:stggousd",
3839
4196
  'ttempo:stgscaasacme' = "ttempo:stgscaasacme",
3840
4197
  'ttempo:scaasacme' = "ttempo:scaasacme",
4198
+ 'ttempo:sofid' = "ttempo:sofid",
4199
+ 'ttempo:stgsofid' = "ttempo:stgsofid",
3841
4200
  'tprividiumeth:USB-ESCROW-D' = "tprividiumeth:USB-ESCROW-D",
3842
4201
  'tprividiumeth:tMMF' = "tprividiumeth:tMMF",
4202
+ 'arcusdc:eurc' = "arcusdc:eurc",
4203
+ 'arcusdc:usyc' = "arcusdc:usyc",
4204
+ 'scrolleth:scr' = "scrolleth:scr",
4205
+ 'bobaeth:boba' = "bobaeth:boba",
4206
+ 'bobaeth:usdt' = "bobaeth:usdt",
4207
+ 'katanaeth:kat' = "katanaeth:kat",
3843
4208
  AED = "aed",
3844
4209
  AUD = "aud",
3845
4210
  CAD = "cad",