@gearbox-protocol/sdk 11.5.1 → 11.6.1

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 (52) hide show
  1. package/dist/cjs/abi/router/kelpLRTDepositPoolWorker.js +541 -0
  2. package/dist/cjs/permissionless/bindings/instance-manager.js +11 -0
  3. package/dist/cjs/plugins/adapters/AdaptersPlugin.js +8 -0
  4. package/dist/cjs/plugins/adapters/abi/actionAbi.js +6 -0
  5. package/dist/cjs/plugins/adapters/abi/conctructorAbi.js +14 -0
  6. package/dist/cjs/plugins/adapters/abi/conctructorAbiPatterns.js +15 -0
  7. package/dist/cjs/plugins/adapters/contracts/KelpLRTDepositPoolAdapterContract.js +45 -0
  8. package/dist/cjs/plugins/adapters/contracts/KelpLRTWithdrawalManagerAdapterContract.js +49 -0
  9. package/dist/cjs/plugins/adapters/contracts/MellowDepositQueueAdapterContract.js +51 -0
  10. package/dist/cjs/plugins/adapters/contracts/MellowRedeemQueueAdapterContract.js +48 -0
  11. package/dist/cjs/plugins/adapters/contracts/index.js +8 -0
  12. package/dist/cjs/plugins/adapters/types.js +4 -0
  13. package/dist/cjs/sdk/chain/chains.js +37 -4
  14. package/dist/cjs/sdk/constants/address-provider.js +2 -1
  15. package/dist/cjs/sdk/constants/addresses.js +8 -4
  16. package/dist/cjs/sdk/constants/networks.js +4 -2
  17. package/dist/cjs/sdk/router/RouterV300Contract.js +2 -1
  18. package/dist/cjs/sdk/sdk-gov-legacy/contracts/contracts.js +74 -37
  19. package/dist/cjs/sdk/sdk-gov-legacy/tokens/token.js +4 -2
  20. package/dist/cjs/sdk/sdk-gov-legacy/tokens/tokenData.js +2 -1
  21. package/dist/cjs/sdk/sdk-legacy/core/endpoint.js +2 -1
  22. package/dist/esm/abi/router/kelpLRTDepositPoolWorker.js +517 -0
  23. package/dist/esm/permissionless/bindings/instance-manager.js +11 -0
  24. package/dist/esm/plugins/adapters/AdaptersPlugin.js +12 -0
  25. package/dist/esm/plugins/adapters/abi/actionAbi.js +6 -0
  26. package/dist/esm/plugins/adapters/abi/conctructorAbi.js +16 -0
  27. package/dist/esm/plugins/adapters/abi/conctructorAbiPatterns.js +13 -0
  28. package/dist/esm/plugins/adapters/contracts/KelpLRTDepositPoolAdapterContract.js +21 -0
  29. package/dist/esm/plugins/adapters/contracts/KelpLRTWithdrawalManagerAdapterContract.js +25 -0
  30. package/dist/esm/plugins/adapters/contracts/MellowDepositQueueAdapterContract.js +27 -0
  31. package/dist/esm/plugins/adapters/contracts/MellowRedeemQueueAdapterContract.js +24 -0
  32. package/dist/esm/plugins/adapters/contracts/index.js +4 -0
  33. package/dist/esm/plugins/adapters/types.js +4 -0
  34. package/dist/esm/sdk/chain/chains.js +37 -4
  35. package/dist/esm/sdk/constants/address-provider.js +2 -1
  36. package/dist/esm/sdk/constants/addresses.js +8 -4
  37. package/dist/esm/sdk/constants/networks.js +4 -2
  38. package/dist/esm/sdk/router/RouterV300Contract.js +2 -1
  39. package/dist/esm/sdk/sdk-gov-legacy/contracts/contracts.js +74 -37
  40. package/dist/esm/sdk/sdk-gov-legacy/tokens/token.js +4 -2
  41. package/dist/esm/sdk/sdk-gov-legacy/tokens/tokenData.js +2 -1
  42. package/dist/esm/sdk/sdk-legacy/core/endpoint.js +2 -1
  43. package/dist/types/abi/router/kelpLRTDepositPoolWorker.d.ts +726 -0
  44. package/dist/types/plugins/adapters/abi/conctructorAbiPatterns.d.ts +23 -0
  45. package/dist/types/plugins/adapters/contracts/KelpLRTDepositPoolAdapterContract.d.ts +11 -0
  46. package/dist/types/plugins/adapters/contracts/KelpLRTWithdrawalManagerAdapterContract.d.ts +14 -0
  47. package/dist/types/plugins/adapters/contracts/MellowDepositQueueAdapterContract.d.ts +13 -0
  48. package/dist/types/plugins/adapters/contracts/MellowRedeemQueueAdapterContract.d.ts +12 -0
  49. package/dist/types/plugins/adapters/contracts/index.d.ts +4 -0
  50. package/dist/types/plugins/adapters/types.d.ts +5 -1
  51. package/dist/types/sdk/chain/chains.d.ts +2 -1
  52. package/package.json +1 -1
@@ -836,7 +836,8 @@ const contractsByNetwork = {
836
836
  Etherlink: {},
837
837
  Hemi: {},
838
838
  Lisk: {},
839
- Plasma: {}
839
+ Plasma: {},
840
+ Somnia: {}
840
841
  };
841
842
  const UNISWAP_V3_QUOTER = "0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6";
842
843
  const CAMELOT_V3_QUOTER = "0x0Fc73040b26E9bC8514fA028D998E73A254Fa76E";
@@ -949,7 +950,8 @@ const contractParams = {
949
950
  Etherlink: import_constants.NOT_DEPLOYED,
950
951
  Hemi: import_constants.NOT_DEPLOYED,
951
952
  Lisk: import_constants.NOT_DEPLOYED,
952
- Plasma: import_constants.NOT_DEPLOYED
953
+ Plasma: import_constants.NOT_DEPLOYED,
954
+ Somnia: import_constants.NOT_DEPLOYED
953
955
  },
954
956
  tokens: ["WETH", "STETH"],
955
957
  lpToken: "steCRV"
@@ -974,7 +976,8 @@ const contractParams = {
974
976
  Etherlink: import_constants.NOT_DEPLOYED,
975
977
  Hemi: import_constants.NOT_DEPLOYED,
976
978
  Lisk: import_constants.NOT_DEPLOYED,
977
- Plasma: import_constants.NOT_DEPLOYED
979
+ Plasma: import_constants.NOT_DEPLOYED,
980
+ Somnia: import_constants.NOT_DEPLOYED
978
981
  },
979
982
  tokens: ["WETH", "wstETH"],
980
983
  lpToken: "wstETHCRV"
@@ -999,7 +1002,8 @@ const contractParams = {
999
1002
  Etherlink: import_constants.NOT_DEPLOYED,
1000
1003
  Hemi: import_constants.NOT_DEPLOYED,
1001
1004
  Lisk: import_constants.NOT_DEPLOYED,
1002
- Plasma: import_constants.NOT_DEPLOYED
1005
+ Plasma: import_constants.NOT_DEPLOYED,
1006
+ Somnia: import_constants.NOT_DEPLOYED
1003
1007
  },
1004
1008
  tokens: ["GEAR", "WETH"],
1005
1009
  lpToken: "GEAR"
@@ -1536,7 +1540,8 @@ const contractParams = {
1536
1540
  Etherlink: import_constants.NOT_DEPLOYED,
1537
1541
  Hemi: import_constants.NOT_DEPLOYED,
1538
1542
  Lisk: import_constants.NOT_DEPLOYED,
1539
- Plasma: import_constants.NOT_DEPLOYED
1543
+ Plasma: import_constants.NOT_DEPLOYED,
1544
+ Somnia: import_constants.NOT_DEPLOYED
1540
1545
  }
1541
1546
  }
1542
1547
  ]
@@ -1565,7 +1570,8 @@ const contractParams = {
1565
1570
  Etherlink: import_constants.NOT_DEPLOYED,
1566
1571
  Hemi: import_constants.NOT_DEPLOYED,
1567
1572
  Lisk: import_constants.NOT_DEPLOYED,
1568
- Plasma: import_constants.NOT_DEPLOYED
1573
+ Plasma: import_constants.NOT_DEPLOYED,
1574
+ Somnia: import_constants.NOT_DEPLOYED
1569
1575
  }
1570
1576
  }
1571
1577
  ]
@@ -1594,7 +1600,8 @@ const contractParams = {
1594
1600
  Etherlink: import_constants.NOT_DEPLOYED,
1595
1601
  Hemi: import_constants.NOT_DEPLOYED,
1596
1602
  Lisk: import_constants.NOT_DEPLOYED,
1597
- Plasma: import_constants.NOT_DEPLOYED
1603
+ Plasma: import_constants.NOT_DEPLOYED,
1604
+ Somnia: import_constants.NOT_DEPLOYED
1598
1605
  }
1599
1606
  }
1600
1607
  ]
@@ -1623,7 +1630,8 @@ const contractParams = {
1623
1630
  Etherlink: import_constants.NOT_DEPLOYED,
1624
1631
  Hemi: import_constants.NOT_DEPLOYED,
1625
1632
  Lisk: import_constants.NOT_DEPLOYED,
1626
- Plasma: import_constants.NOT_DEPLOYED
1633
+ Plasma: import_constants.NOT_DEPLOYED,
1634
+ Somnia: import_constants.NOT_DEPLOYED
1627
1635
  }
1628
1636
  }
1629
1637
  ]
@@ -1651,7 +1659,8 @@ const contractParams = {
1651
1659
  Etherlink: import_constants.NOT_DEPLOYED,
1652
1660
  Hemi: import_constants.NOT_DEPLOYED,
1653
1661
  Lisk: import_constants.NOT_DEPLOYED,
1654
- Plasma: import_constants.NOT_DEPLOYED
1662
+ Plasma: import_constants.NOT_DEPLOYED,
1663
+ Somnia: import_constants.NOT_DEPLOYED
1655
1664
  }
1656
1665
  }
1657
1666
  ]
@@ -1679,7 +1688,8 @@ const contractParams = {
1679
1688
  Etherlink: import_constants.NOT_DEPLOYED,
1680
1689
  Hemi: import_constants.NOT_DEPLOYED,
1681
1690
  Lisk: import_constants.NOT_DEPLOYED,
1682
- Plasma: import_constants.NOT_DEPLOYED
1691
+ Plasma: import_constants.NOT_DEPLOYED,
1692
+ Somnia: import_constants.NOT_DEPLOYED
1683
1693
  }
1684
1694
  }
1685
1695
  ]
@@ -1714,7 +1724,8 @@ const contractParams = {
1714
1724
  Etherlink: import_constants.NOT_DEPLOYED,
1715
1725
  Hemi: import_constants.NOT_DEPLOYED,
1716
1726
  Lisk: import_constants.NOT_DEPLOYED,
1717
- Plasma: import_constants.NOT_DEPLOYED
1727
+ Plasma: import_constants.NOT_DEPLOYED,
1728
+ Somnia: import_constants.NOT_DEPLOYED
1718
1729
  }
1719
1730
  }
1720
1731
  ]
@@ -1742,7 +1753,8 @@ const contractParams = {
1742
1753
  Etherlink: import_constants.NOT_DEPLOYED,
1743
1754
  Hemi: import_constants.NOT_DEPLOYED,
1744
1755
  Lisk: import_constants.NOT_DEPLOYED,
1745
- Plasma: import_constants.NOT_DEPLOYED
1756
+ Plasma: import_constants.NOT_DEPLOYED,
1757
+ Somnia: import_constants.NOT_DEPLOYED
1746
1758
  }
1747
1759
  }
1748
1760
  ]
@@ -1770,7 +1782,8 @@ const contractParams = {
1770
1782
  Etherlink: import_constants.NOT_DEPLOYED,
1771
1783
  Hemi: import_constants.NOT_DEPLOYED,
1772
1784
  Lisk: import_constants.NOT_DEPLOYED,
1773
- Plasma: import_constants.NOT_DEPLOYED
1785
+ Plasma: import_constants.NOT_DEPLOYED,
1786
+ Somnia: import_constants.NOT_DEPLOYED
1774
1787
  }
1775
1788
  }
1776
1789
  ]
@@ -1798,7 +1811,8 @@ const contractParams = {
1798
1811
  Etherlink: import_constants.NOT_DEPLOYED,
1799
1812
  Hemi: import_constants.NOT_DEPLOYED,
1800
1813
  Lisk: import_constants.NOT_DEPLOYED,
1801
- Plasma: import_constants.NOT_DEPLOYED
1814
+ Plasma: import_constants.NOT_DEPLOYED,
1815
+ Somnia: import_constants.NOT_DEPLOYED
1802
1816
  }
1803
1817
  }
1804
1818
  ]
@@ -1826,7 +1840,8 @@ const contractParams = {
1826
1840
  Etherlink: import_constants.NOT_DEPLOYED,
1827
1841
  Hemi: import_constants.NOT_DEPLOYED,
1828
1842
  Lisk: import_constants.NOT_DEPLOYED,
1829
- Plasma: import_constants.NOT_DEPLOYED
1843
+ Plasma: import_constants.NOT_DEPLOYED,
1844
+ Somnia: import_constants.NOT_DEPLOYED
1830
1845
  }
1831
1846
  }
1832
1847
  ]
@@ -1854,7 +1869,8 @@ const contractParams = {
1854
1869
  Etherlink: import_constants.NOT_DEPLOYED,
1855
1870
  Hemi: import_constants.NOT_DEPLOYED,
1856
1871
  Lisk: import_constants.NOT_DEPLOYED,
1857
- Plasma: import_constants.NOT_DEPLOYED
1872
+ Plasma: import_constants.NOT_DEPLOYED,
1873
+ Somnia: import_constants.NOT_DEPLOYED
1858
1874
  }
1859
1875
  }
1860
1876
  ]
@@ -1882,7 +1898,8 @@ const contractParams = {
1882
1898
  Etherlink: import_constants.NOT_DEPLOYED,
1883
1899
  Hemi: import_constants.NOT_DEPLOYED,
1884
1900
  Lisk: import_constants.NOT_DEPLOYED,
1885
- Plasma: import_constants.NOT_DEPLOYED
1901
+ Plasma: import_constants.NOT_DEPLOYED,
1902
+ Somnia: import_constants.NOT_DEPLOYED
1886
1903
  }
1887
1904
  }
1888
1905
  ]
@@ -1910,7 +1927,8 @@ const contractParams = {
1910
1927
  Etherlink: import_constants.NOT_DEPLOYED,
1911
1928
  Hemi: import_constants.NOT_DEPLOYED,
1912
1929
  Lisk: import_constants.NOT_DEPLOYED,
1913
- Plasma: import_constants.NOT_DEPLOYED
1930
+ Plasma: import_constants.NOT_DEPLOYED,
1931
+ Somnia: import_constants.NOT_DEPLOYED
1914
1932
  }
1915
1933
  }
1916
1934
  ]
@@ -1955,7 +1973,8 @@ const contractParams = {
1955
1973
  Etherlink: import_constants.NOT_DEPLOYED,
1956
1974
  Hemi: import_constants.NOT_DEPLOYED,
1957
1975
  Lisk: import_constants.NOT_DEPLOYED,
1958
- Plasma: import_constants.NOT_DEPLOYED
1976
+ Plasma: import_constants.NOT_DEPLOYED,
1977
+ Somnia: import_constants.NOT_DEPLOYED
1959
1978
  }
1960
1979
  }
1961
1980
  ]
@@ -1983,7 +2002,8 @@ const contractParams = {
1983
2002
  Etherlink: import_constants.NOT_DEPLOYED,
1984
2003
  Hemi: import_constants.NOT_DEPLOYED,
1985
2004
  Lisk: import_constants.NOT_DEPLOYED,
1986
- Plasma: import_constants.NOT_DEPLOYED
2005
+ Plasma: import_constants.NOT_DEPLOYED,
2006
+ Somnia: import_constants.NOT_DEPLOYED
1987
2007
  }
1988
2008
  }
1989
2009
  ]
@@ -2011,7 +2031,8 @@ const contractParams = {
2011
2031
  Etherlink: import_constants.NOT_DEPLOYED,
2012
2032
  Hemi: import_constants.NOT_DEPLOYED,
2013
2033
  Lisk: import_constants.NOT_DEPLOYED,
2014
- Plasma: import_constants.NOT_DEPLOYED
2034
+ Plasma: import_constants.NOT_DEPLOYED,
2035
+ Somnia: import_constants.NOT_DEPLOYED
2015
2036
  }
2016
2037
  },
2017
2038
  {
@@ -2031,7 +2052,8 @@ const contractParams = {
2031
2052
  Etherlink: import_constants.NOT_DEPLOYED,
2032
2053
  Hemi: import_constants.NOT_DEPLOYED,
2033
2054
  Lisk: import_constants.NOT_DEPLOYED,
2034
- Plasma: import_constants.NOT_DEPLOYED
2055
+ Plasma: import_constants.NOT_DEPLOYED,
2056
+ Somnia: import_constants.NOT_DEPLOYED
2035
2057
  }
2036
2058
  }
2037
2059
  ]
@@ -2059,7 +2081,8 @@ const contractParams = {
2059
2081
  Etherlink: import_constants.NOT_DEPLOYED,
2060
2082
  Hemi: import_constants.NOT_DEPLOYED,
2061
2083
  Lisk: import_constants.NOT_DEPLOYED,
2062
- Plasma: import_constants.NOT_DEPLOYED
2084
+ Plasma: import_constants.NOT_DEPLOYED,
2085
+ Somnia: import_constants.NOT_DEPLOYED
2063
2086
  }
2064
2087
  },
2065
2088
  {
@@ -2079,7 +2102,8 @@ const contractParams = {
2079
2102
  Etherlink: import_constants.NOT_DEPLOYED,
2080
2103
  Hemi: import_constants.NOT_DEPLOYED,
2081
2104
  Lisk: import_constants.NOT_DEPLOYED,
2082
- Plasma: import_constants.NOT_DEPLOYED
2105
+ Plasma: import_constants.NOT_DEPLOYED,
2106
+ Somnia: import_constants.NOT_DEPLOYED
2083
2107
  }
2084
2108
  }
2085
2109
  ]
@@ -2107,7 +2131,8 @@ const contractParams = {
2107
2131
  Etherlink: import_constants.NOT_DEPLOYED,
2108
2132
  Hemi: import_constants.NOT_DEPLOYED,
2109
2133
  Lisk: import_constants.NOT_DEPLOYED,
2110
- Plasma: import_constants.NOT_DEPLOYED
2134
+ Plasma: import_constants.NOT_DEPLOYED,
2135
+ Somnia: import_constants.NOT_DEPLOYED
2111
2136
  }
2112
2137
  },
2113
2138
  {
@@ -2127,7 +2152,8 @@ const contractParams = {
2127
2152
  Etherlink: import_constants.NOT_DEPLOYED,
2128
2153
  Hemi: import_constants.NOT_DEPLOYED,
2129
2154
  Lisk: import_constants.NOT_DEPLOYED,
2130
- Plasma: import_constants.NOT_DEPLOYED
2155
+ Plasma: import_constants.NOT_DEPLOYED,
2156
+ Somnia: import_constants.NOT_DEPLOYED
2131
2157
  }
2132
2158
  }
2133
2159
  ]
@@ -2155,7 +2181,8 @@ const contractParams = {
2155
2181
  Etherlink: import_constants.NOT_DEPLOYED,
2156
2182
  Hemi: import_constants.NOT_DEPLOYED,
2157
2183
  Lisk: import_constants.NOT_DEPLOYED,
2158
- Plasma: import_constants.NOT_DEPLOYED
2184
+ Plasma: import_constants.NOT_DEPLOYED,
2185
+ Somnia: import_constants.NOT_DEPLOYED
2159
2186
  }
2160
2187
  },
2161
2188
  {
@@ -2175,7 +2202,8 @@ const contractParams = {
2175
2202
  Etherlink: import_constants.NOT_DEPLOYED,
2176
2203
  Hemi: import_constants.NOT_DEPLOYED,
2177
2204
  Lisk: import_constants.NOT_DEPLOYED,
2178
- Plasma: import_constants.NOT_DEPLOYED
2205
+ Plasma: import_constants.NOT_DEPLOYED,
2206
+ Somnia: import_constants.NOT_DEPLOYED
2179
2207
  }
2180
2208
  }
2181
2209
  ]
@@ -2203,7 +2231,8 @@ const contractParams = {
2203
2231
  Etherlink: import_constants.NOT_DEPLOYED,
2204
2232
  Hemi: import_constants.NOT_DEPLOYED,
2205
2233
  Lisk: import_constants.NOT_DEPLOYED,
2206
- Plasma: import_constants.NOT_DEPLOYED
2234
+ Plasma: import_constants.NOT_DEPLOYED,
2235
+ Somnia: import_constants.NOT_DEPLOYED
2207
2236
  }
2208
2237
  },
2209
2238
  {
@@ -2223,7 +2252,8 @@ const contractParams = {
2223
2252
  Etherlink: import_constants.NOT_DEPLOYED,
2224
2253
  Hemi: import_constants.NOT_DEPLOYED,
2225
2254
  Lisk: import_constants.NOT_DEPLOYED,
2226
- Plasma: import_constants.NOT_DEPLOYED
2255
+ Plasma: import_constants.NOT_DEPLOYED,
2256
+ Somnia: import_constants.NOT_DEPLOYED
2227
2257
  }
2228
2258
  }
2229
2259
  ]
@@ -2251,7 +2281,8 @@ const contractParams = {
2251
2281
  Etherlink: import_constants.NOT_DEPLOYED,
2252
2282
  Hemi: import_constants.NOT_DEPLOYED,
2253
2283
  Lisk: import_constants.NOT_DEPLOYED,
2254
- Plasma: import_constants.NOT_DEPLOYED
2284
+ Plasma: import_constants.NOT_DEPLOYED,
2285
+ Somnia: import_constants.NOT_DEPLOYED
2255
2286
  }
2256
2287
  },
2257
2288
  {
@@ -2271,7 +2302,8 @@ const contractParams = {
2271
2302
  Etherlink: import_constants.NOT_DEPLOYED,
2272
2303
  Hemi: import_constants.NOT_DEPLOYED,
2273
2304
  Lisk: import_constants.NOT_DEPLOYED,
2274
- Plasma: import_constants.NOT_DEPLOYED
2305
+ Plasma: import_constants.NOT_DEPLOYED,
2306
+ Somnia: import_constants.NOT_DEPLOYED
2275
2307
  }
2276
2308
  }
2277
2309
  ]
@@ -2299,7 +2331,8 @@ const contractParams = {
2299
2331
  Etherlink: import_constants.NOT_DEPLOYED,
2300
2332
  Hemi: import_constants.NOT_DEPLOYED,
2301
2333
  Lisk: import_constants.NOT_DEPLOYED,
2302
- Plasma: import_constants.NOT_DEPLOYED
2334
+ Plasma: import_constants.NOT_DEPLOYED,
2335
+ Somnia: import_constants.NOT_DEPLOYED
2303
2336
  }
2304
2337
  },
2305
2338
  {
@@ -2319,7 +2352,8 @@ const contractParams = {
2319
2352
  Etherlink: import_constants.NOT_DEPLOYED,
2320
2353
  Hemi: import_constants.NOT_DEPLOYED,
2321
2354
  Lisk: import_constants.NOT_DEPLOYED,
2322
- Plasma: import_constants.NOT_DEPLOYED
2355
+ Plasma: import_constants.NOT_DEPLOYED,
2356
+ Somnia: import_constants.NOT_DEPLOYED
2323
2357
  }
2324
2358
  }
2325
2359
  ]
@@ -2344,7 +2378,8 @@ const contractParams = {
2344
2378
  Etherlink: import_constants.NOT_DEPLOYED,
2345
2379
  Hemi: import_constants.NOT_DEPLOYED,
2346
2380
  Lisk: import_constants.NOT_DEPLOYED,
2347
- Plasma: import_constants.NOT_DEPLOYED
2381
+ Plasma: import_constants.NOT_DEPLOYED,
2382
+ Somnia: import_constants.NOT_DEPLOYED
2348
2383
  },
2349
2384
  lpToken: "steCRV"
2350
2385
  },
@@ -2377,7 +2412,8 @@ const contractParams = {
2377
2412
  Etherlink: import_constants.NOT_DEPLOYED,
2378
2413
  Hemi: import_constants.NOT_DEPLOYED,
2379
2414
  Lisk: import_constants.NOT_DEPLOYED,
2380
- Plasma: import_constants.NOT_DEPLOYED
2415
+ Plasma: import_constants.NOT_DEPLOYED,
2416
+ Somnia: import_constants.NOT_DEPLOYED
2381
2417
  }
2382
2418
  },
2383
2419
  BALANCER_V3_ROUTER: {
@@ -2399,7 +2435,8 @@ const contractParams = {
2399
2435
  Etherlink: import_constants.NOT_DEPLOYED,
2400
2436
  Hemi: import_constants.NOT_DEPLOYED,
2401
2437
  Lisk: import_constants.NOT_DEPLOYED,
2402
- Plasma: import_constants.NOT_DEPLOYED
2438
+ Plasma: import_constants.NOT_DEPLOYED,
2439
+ Somnia: import_constants.NOT_DEPLOYED
2403
2440
  }
2404
2441
  },
2405
2442
  AAVE_V2_LENDING_POOL: {
@@ -572,7 +572,8 @@ const tokenDataByNetwork = {
572
572
  wstETH: "0x76D8de471F54aAA87784119c60Df1bbFc852C415",
573
573
  lskETH: "0x1b10E2270780858923cdBbC9B5423e29fffD1A44"
574
574
  },
575
- Plasma: {}
575
+ Plasma: {},
576
+ Somnia: {}
576
577
  };
577
578
  const tickerInfoTokensByNetwork = {
578
579
  Mainnet: {
@@ -974,7 +975,8 @@ const tickerInfoTokensByNetwork = {
974
975
  Etherlink: {},
975
976
  Hemi: {},
976
977
  Lisk: {},
977
- Plasma: {}
978
+ Plasma: {},
979
+ Somnia: {}
978
980
  };
979
981
  const tokenSymbolByAddress = Object.entries(tokenDataByNetwork).reduce(
980
982
  (acc, [, tokens]) => ({
@@ -61,7 +61,8 @@ const connectors = {
61
61
  Etherlink: [],
62
62
  Hemi: [],
63
63
  Lisk: [],
64
- Plasma: []
64
+ Plasma: [],
65
+ Somnia: []
65
66
  };
66
67
  function getConnectors(networkType) {
67
68
  return connectors[networkType].map((e) => {
@@ -45,7 +45,8 @@ const TESTNET_CHAINS = {
45
45
  Etherlink: 7890,
46
46
  Hemi: 7891,
47
47
  Lisk: 7892,
48
- Plasma: 7893
48
+ Plasma: 7893,
49
+ Somnia: 7894
49
50
  };
50
51
  const CHAINS_BY_ID = import_mappers.TypedObjectUtils.swapKeyValue(TESTNET_CHAINS);
51
52
  const MAINNET_BY_TESTNET_ID = import_mappers.TypedObjectUtils.entries(TESTNET_CHAINS).reduce((acc, [n, testnetId]) => {