@enzymefinance/environment 6.3.79 → 6.3.80
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/cjs/adapters.js +3 -3
- package/dist/cjs/adapters.js.map +1 -1
- package/dist/cjs/assets/arbitrum.js +1 -3
- package/dist/cjs/assets/arbitrum.js.map +1 -1
- package/dist/cjs/assets/ethereum.js +84 -270
- package/dist/cjs/assets/ethereum.js.map +1 -1
- package/dist/cjs/assets/polygon.js +24 -74
- package/dist/cjs/assets/polygon.js.map +1 -1
- package/dist/cjs/assets.js +1 -17
- package/dist/cjs/assets.js.map +1 -1
- package/dist/cjs/deployments/arbitrum.js +2 -26
- package/dist/cjs/deployments/arbitrum.js.map +1 -1
- package/dist/cjs/deployments/base.js +2 -26
- package/dist/cjs/deployments/base.js.map +1 -1
- package/dist/cjs/deployments/ethereum.js +2 -28
- package/dist/cjs/deployments/ethereum.js.map +1 -1
- package/dist/cjs/deployments/polygon.js +2 -26
- package/dist/cjs/deployments/polygon.js.map +1 -1
- package/dist/cjs/deployments/testnet.js +1 -13
- package/dist/cjs/deployments/testnet.js.map +1 -1
- package/dist/cjs/price-feeds.js +1 -4
- package/dist/cjs/price-feeds.js.map +1 -1
- package/dist/cjs/protocols.js +0 -1
- package/dist/cjs/protocols.js.map +1 -1
- package/dist/cjs/releases.js.map +1 -1
- package/dist/dts/assets/arbitrum.d.ts.map +1 -1
- package/dist/dts/assets/ethereum.d.ts.map +1 -1
- package/dist/dts/assets/polygon.d.ts.map +1 -1
- package/dist/dts/assets.d.ts +3 -77
- package/dist/dts/assets.d.ts.map +1 -1
- package/dist/dts/contracts.d.ts +0 -12
- package/dist/dts/contracts.d.ts.map +1 -1
- package/dist/dts/deployments/arbitrum.d.ts.map +1 -1
- package/dist/dts/deployments/base.d.ts.map +1 -1
- package/dist/dts/deployments/ethereum.d.ts.map +1 -1
- package/dist/dts/deployments/polygon.d.ts.map +1 -1
- package/dist/dts/deployments/testnet.d.ts.map +1 -1
- package/dist/dts/price-feeds.d.ts +1 -29
- package/dist/dts/price-feeds.d.ts.map +1 -1
- package/dist/dts/protocols.d.ts +0 -1
- package/dist/dts/protocols.d.ts.map +1 -1
- package/dist/dts/releases.d.ts +0 -14
- package/dist/dts/releases.d.ts.map +1 -1
- package/dist/esm/adapters.js +3 -3
- package/dist/esm/adapters.js.map +1 -1
- package/dist/esm/assets/arbitrum.js +1 -3
- package/dist/esm/assets/arbitrum.js.map +1 -1
- package/dist/esm/assets/ethereum.js +85 -271
- package/dist/esm/assets/ethereum.js.map +1 -1
- package/dist/esm/assets/polygon.js +25 -75
- package/dist/esm/assets/polygon.js.map +1 -1
- package/dist/esm/assets.js +0 -16
- package/dist/esm/assets.js.map +1 -1
- package/dist/esm/deployments/arbitrum.js +2 -26
- package/dist/esm/deployments/arbitrum.js.map +1 -1
- package/dist/esm/deployments/base.js +2 -26
- package/dist/esm/deployments/base.js.map +1 -1
- package/dist/esm/deployments/ethereum.js +2 -28
- package/dist/esm/deployments/ethereum.js.map +1 -1
- package/dist/esm/deployments/polygon.js +2 -26
- package/dist/esm/deployments/polygon.js.map +1 -1
- package/dist/esm/deployments/testnet.js +1 -13
- package/dist/esm/deployments/testnet.js.map +1 -1
- package/dist/esm/price-feeds.js +1 -4
- package/dist/esm/price-feeds.js.map +1 -1
- package/dist/esm/protocols.js +0 -1
- package/dist/esm/protocols.js.map +1 -1
- package/dist/esm/releases.js.map +1 -1
- package/package.json +2 -2
- package/src/adapters.ts +3 -3
- package/src/assets/arbitrum.ts +1 -3
- package/src/assets/ethereum.ts +83 -275
- package/src/assets/polygon.ts +25 -103
- package/src/assets.ts +2 -88
- package/src/contracts.ts +0 -12
- package/src/deployments/arbitrum.ts +0 -24
- package/src/deployments/base.ts +0 -24
- package/src/deployments/ethereum.ts +0 -26
- package/src/deployments/polygon.ts +0 -24
- package/src/deployments/testnet.ts +0 -12
- package/src/price-feeds.ts +0 -37
- package/src/protocols.ts +0 -1
- package/src/releases.ts +0 -14
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AssetType,
|
|
1
|
+
import { AssetType, CurvePoolTemplate, CurveStakingType, Erc4626Protocol, defineAssetList } from "../assets.js";
|
|
2
2
|
import { Network } from "../networks.js";
|
|
3
3
|
import { PriceFeedType, RateAsset } from "../price-feeds.js";
|
|
4
4
|
import { releases } from "../releases.js";
|
|
@@ -241,21 +241,11 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
241
241
|
decimals: 18,
|
|
242
242
|
id: "0x05ff47afada98a98982113758878f9a8b9fdda0a",
|
|
243
243
|
name: "Balancer weETH/rETH StablePool",
|
|
244
|
-
releases: [
|
|
244
|
+
releases: [],
|
|
245
245
|
symbol: "weETH/rETH",
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
type:
|
|
249
|
-
}],
|
|
250
|
-
poolId: "0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645",
|
|
251
|
-
poolFactory: "0xdb8d758bcb971e482b2c45f7f8a7740283a1bd3a",
|
|
252
|
-
poolType: BalancerPoolType.COMPOSABLE_STABLE_V5,
|
|
253
|
-
underlyings: ["0x05ff47afada98a98982113758878f9a8b9fdda0a", "0xae78736cd615f374d3085123a210448e74fc6393", "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee"],
|
|
254
|
-
type: AssetType.BALANCER_POOL,
|
|
255
|
-
priceFeed: {
|
|
256
|
-
type: PriceFeedType.DERIVATIVE_BALANCER_V2_STABLE_POOL,
|
|
257
|
-
address: "0x438254d66e2bc576819a76a0ecb11fe41195d39f",
|
|
258
|
-
ipa: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
|
|
246
|
+
type: AssetType.PRIMITIVE,
|
|
247
|
+
priceFeed: {
|
|
248
|
+
type: PriceFeedType.NONE
|
|
259
249
|
}
|
|
260
250
|
}, {
|
|
261
251
|
decimals: 18,
|
|
@@ -838,16 +828,11 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
838
828
|
decimals: 18,
|
|
839
829
|
id: "0x253ed65fff980aee7e94a0dc57be304426048b35",
|
|
840
830
|
name: "Balancer weETH/ezETH/rswETH Gauge Deposit",
|
|
841
|
-
releases: [
|
|
831
|
+
releases: [],
|
|
842
832
|
symbol: "weETH/ezETH/rswETH-gauge",
|
|
843
|
-
|
|
844
|
-
poolType: BalancerPoolType.COMPOSABLE_STABLE_V5,
|
|
845
|
-
gaugeFactory: "0xf1665e19bc105be4edd3739f88315cc699cc5b65",
|
|
846
|
-
underlyings: ["0x848a5564158d84b8a8fb68ab5d004fae11619a54", "0xbf5495efe5db9ce00f80364c8b423567e58d2110", "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee", "0xfae103dc9cf190ed75350761e95403b7b8afa6c0"],
|
|
847
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
833
|
+
type: AssetType.PRIMITIVE,
|
|
848
834
|
priceFeed: {
|
|
849
|
-
type: PriceFeedType.
|
|
850
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348"
|
|
835
|
+
type: PriceFeedType.NONE
|
|
851
836
|
}
|
|
852
837
|
}, {
|
|
853
838
|
decimals: 18,
|
|
@@ -2505,21 +2490,11 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
2505
2490
|
decimals: 18,
|
|
2506
2491
|
id: "0x848a5564158d84b8a8fb68ab5d004fae11619a54",
|
|
2507
2492
|
name: "Balancer weETH/ezETH/rswETH",
|
|
2508
|
-
releases: [
|
|
2493
|
+
releases: [],
|
|
2509
2494
|
symbol: "weETH/ezETH/rswETH",
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
type:
|
|
2513
|
-
}],
|
|
2514
|
-
poolId: "0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a",
|
|
2515
|
-
poolFactory: "0xdb8d758bcb971e482b2c45f7f8a7740283a1bd3a",
|
|
2516
|
-
poolType: BalancerPoolType.COMPOSABLE_STABLE_V5,
|
|
2517
|
-
underlyings: ["0x848a5564158d84b8a8fb68ab5d004fae11619a54", "0xbf5495efe5db9ce00f80364c8b423567e58d2110", "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee", "0xfae103dc9cf190ed75350761e95403b7b8afa6c0"],
|
|
2518
|
-
type: AssetType.BALANCER_POOL,
|
|
2519
|
-
priceFeed: {
|
|
2520
|
-
type: PriceFeedType.DERIVATIVE_BALANCER_V2_STABLE_POOL,
|
|
2521
|
-
address: "0x438254d66e2bc576819a76a0ecb11fe41195d39f",
|
|
2522
|
-
ipa: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
|
|
2495
|
+
type: AssetType.PRIMITIVE,
|
|
2496
|
+
priceFeed: {
|
|
2497
|
+
type: PriceFeedType.NONE
|
|
2523
2498
|
}
|
|
2524
2499
|
}, {
|
|
2525
2500
|
decimals: 18,
|
|
@@ -2845,13 +2820,12 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
2845
2820
|
decimals: 8,
|
|
2846
2821
|
id: "0x95b4ef2869ebd94beb4eee400a99824bf5dc325b",
|
|
2847
2822
|
name: "Compound Maker",
|
|
2848
|
-
releases: [
|
|
2823
|
+
releases: [encore],
|
|
2849
2824
|
symbol: "cMKR",
|
|
2850
2825
|
type: AssetType.COMPOUND_V2,
|
|
2851
2826
|
underlying: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
2852
2827
|
priceFeed: {
|
|
2853
|
-
type: PriceFeedType.
|
|
2854
|
-
address: "0x6254e0538abbb668eac89d5e5bee27a9d0e62bbe"
|
|
2828
|
+
type: PriceFeedType.NONE
|
|
2855
2829
|
}
|
|
2856
2830
|
}, {
|
|
2857
2831
|
decimals: 18,
|
|
@@ -2915,13 +2889,11 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
2915
2889
|
decimals: 18,
|
|
2916
2890
|
id: "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3",
|
|
2917
2891
|
name: "Magic Internet Money",
|
|
2918
|
-
releases: [
|
|
2892
|
+
releases: [encore],
|
|
2919
2893
|
symbol: "MIM",
|
|
2920
2894
|
type: AssetType.PRIMITIVE,
|
|
2921
2895
|
priceFeed: {
|
|
2922
|
-
type: PriceFeedType.
|
|
2923
|
-
aggregator: "0x7a364e8770418566e3eb2001a96116e6138eb32f",
|
|
2924
|
-
rateAsset: RateAsset.USD
|
|
2896
|
+
type: PriceFeedType.NONE
|
|
2925
2897
|
}
|
|
2926
2898
|
}, {
|
|
2927
2899
|
decimals: 18,
|
|
@@ -2999,39 +2971,32 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
2999
2971
|
decimals: 18,
|
|
3000
2972
|
id: "0xe24933aa6dfb66a32df7ea897a1818ecaabd54e1",
|
|
3001
2973
|
name: "ZeroLend Staked USDe",
|
|
3002
|
-
releases: [
|
|
2974
|
+
releases: [],
|
|
3003
2975
|
symbol: "z0sUSDe",
|
|
3004
|
-
type: AssetType.
|
|
3005
|
-
underlying: "0x9d39a5de30e57443bff2a8307a4256c8797a3497",
|
|
2976
|
+
type: AssetType.PRIMITIVE,
|
|
3006
2977
|
priceFeed: {
|
|
3007
|
-
type: PriceFeedType.
|
|
3008
|
-
aggregator: "0xb99d174ed06c83588af997c8859f93e83dd4733f",
|
|
3009
|
-
rateAsset: RateAsset.USD
|
|
2978
|
+
type: PriceFeedType.NONE
|
|
3010
2979
|
}
|
|
3011
2980
|
}, {
|
|
3012
2981
|
decimals: 18,
|
|
3013
2982
|
id: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
3014
2983
|
name: "Maker",
|
|
3015
|
-
releases: [
|
|
2984
|
+
releases: [encore, phoenix],
|
|
3016
2985
|
symbol: "MKR",
|
|
3017
2986
|
type: AssetType.PRIMITIVE,
|
|
3018
2987
|
priceFeed: {
|
|
3019
|
-
type: PriceFeedType.
|
|
3020
|
-
aggregator: "0x24551a8fb2a7211a25a17b1481f043a8a8adc7f2",
|
|
3021
|
-
rateAsset: RateAsset.ETH
|
|
2988
|
+
type: PriceFeedType.NONE
|
|
3022
2989
|
}
|
|
3023
2990
|
}, {
|
|
3024
2991
|
decimals: 18,
|
|
3025
2992
|
id: "0x8a458a9dc9048e005d22849f470891b840296619",
|
|
3026
2993
|
name: "Aave Ethereum MKR",
|
|
3027
|
-
releases: [
|
|
2994
|
+
releases: [],
|
|
3028
2995
|
symbol: "aEthMKR",
|
|
3029
2996
|
type: AssetType.AAVE_V3,
|
|
3030
2997
|
underlying: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
3031
2998
|
priceFeed: {
|
|
3032
|
-
type: PriceFeedType.
|
|
3033
|
-
aggregator: "0x24551a8fb2a7211a25a17b1481f043a8a8adc7f2",
|
|
3034
|
-
rateAsset: RateAsset.ETH
|
|
2999
|
+
type: PriceFeedType.NONE
|
|
3035
3000
|
}
|
|
3036
3001
|
}, {
|
|
3037
3002
|
decimals: 18,
|
|
@@ -3981,13 +3946,12 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
3981
3946
|
decimals: 18,
|
|
3982
3947
|
id: "0xc2adda861f89bbb333c90c492cb837741916a225",
|
|
3983
3948
|
name: "Uniswap MKR/ETH Pool",
|
|
3984
|
-
releases: [
|
|
3949
|
+
releases: [encore, phoenix],
|
|
3985
3950
|
symbol: "UNI-V2",
|
|
3986
3951
|
type: AssetType.UNISWAP_V2_POOL,
|
|
3987
3952
|
underlyings: ["0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
3988
3953
|
priceFeed: {
|
|
3989
|
-
type: PriceFeedType.
|
|
3990
|
-
address: "0xdbc1162ea1ab770f0ba5fb494e0010e68351e3b0"
|
|
3954
|
+
type: PriceFeedType.NONE
|
|
3991
3955
|
}
|
|
3992
3956
|
}, {
|
|
3993
3957
|
decimals: 18,
|
|
@@ -4034,14 +3998,12 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
4034
3998
|
decimals: 18,
|
|
4035
3999
|
id: "0xc713e5e149d5d0715dcd1c156a020976e7e56b88",
|
|
4036
4000
|
name: "Aave MKR",
|
|
4037
|
-
releases: [
|
|
4001
|
+
releases: [encore, phoenix],
|
|
4038
4002
|
symbol: "aMKR",
|
|
4039
4003
|
type: AssetType.AAVE_V2,
|
|
4040
4004
|
underlying: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
4041
4005
|
priceFeed: {
|
|
4042
|
-
type: PriceFeedType.
|
|
4043
|
-
aggregator: "0x24551a8fb2a7211a25a17b1481f043a8a8adc7f2",
|
|
4044
|
-
rateAsset: RateAsset.ETH
|
|
4006
|
+
type: PriceFeedType.NONE
|
|
4045
4007
|
}
|
|
4046
4008
|
}, {
|
|
4047
4009
|
decimals: 18,
|
|
@@ -4058,16 +4020,11 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
4058
4020
|
decimals: 18,
|
|
4059
4021
|
id: "0xc859bf9d7b8c557bbd229565124c2c09269f3aef",
|
|
4060
4022
|
name: "Balancer weETH/rETH Gauge Deposit",
|
|
4061
|
-
releases: [
|
|
4023
|
+
releases: [],
|
|
4062
4024
|
symbol: "weETH/rETH-gauge",
|
|
4063
|
-
|
|
4064
|
-
poolType: BalancerPoolType.COMPOSABLE_STABLE_V5,
|
|
4065
|
-
gaugeFactory: "0xf1665e19bc105be4edd3739f88315cc699cc5b65",
|
|
4066
|
-
underlyings: ["0x05ff47afada98a98982113758878f9a8b9fdda0a", "0xae78736cd615f374d3085123a210448e74fc6393", "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee"],
|
|
4067
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
4025
|
+
type: AssetType.PRIMITIVE,
|
|
4068
4026
|
priceFeed: {
|
|
4069
|
-
type: PriceFeedType.
|
|
4070
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348"
|
|
4027
|
+
type: PriceFeedType.NONE
|
|
4071
4028
|
}
|
|
4072
4029
|
}, {
|
|
4073
4030
|
decimals: 18,
|
|
@@ -5637,17 +5594,11 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5637
5594
|
decimals: 18,
|
|
5638
5595
|
id: "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56",
|
|
5639
5596
|
name: "Balancer 80 BAL 20 WETH",
|
|
5640
|
-
releases: [
|
|
5597
|
+
releases: [],
|
|
5641
5598
|
symbol: "B-80BAL-20WETH",
|
|
5642
|
-
|
|
5643
|
-
poolId: "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56000200000000000000000014",
|
|
5644
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
5645
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5646
|
-
underlyings: ["0xba100000625a3754423978a60c9317c58a424e3d", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5647
|
-
type: AssetType.BALANCER_POOL,
|
|
5599
|
+
type: AssetType.PRIMITIVE,
|
|
5648
5600
|
priceFeed: {
|
|
5649
|
-
type: PriceFeedType.
|
|
5650
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286"
|
|
5601
|
+
type: PriceFeedType.NONE
|
|
5651
5602
|
}
|
|
5652
5603
|
}, {
|
|
5653
5604
|
decimals: 18,
|
|
@@ -5655,15 +5606,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5655
5606
|
name: "Balancer 50OHM-25DAI-25WETH",
|
|
5656
5607
|
releases: [],
|
|
5657
5608
|
symbol: "50OHM-25DAI-25WETH",
|
|
5658
|
-
|
|
5659
|
-
token: "0x852cf729def9beb9de2f18c97a0ea6bf93a7df8b",
|
|
5660
|
-
type: BalancerStakingType.GAUGE
|
|
5661
|
-
}],
|
|
5662
|
-
poolId: "0xc45d42f801105e861e86658648e3678ad7aa70f900010000000000000000011e",
|
|
5663
|
-
poolFactory: "0x8e9aa87e45e92bad84d5f8dd1bff34fb92637de9",
|
|
5664
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5665
|
-
underlyings: ["0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", "0x6b175474e89094c44da98b954eedeac495271d0f", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5666
|
-
type: AssetType.BALANCER_POOL,
|
|
5609
|
+
type: AssetType.PRIMITIVE,
|
|
5667
5610
|
priceFeed: {
|
|
5668
5611
|
type: PriceFeedType.NONE
|
|
5669
5612
|
}
|
|
@@ -5673,11 +5616,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5673
5616
|
name: "Balancer 50OHM-25DAI-25WETH Gauge Deposit",
|
|
5674
5617
|
releases: [],
|
|
5675
5618
|
symbol: "50OHM-25DAI-25WETH-gauge",
|
|
5676
|
-
|
|
5677
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5678
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
5679
|
-
underlyings: ["0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", "0x6b175474e89094c44da98b954eedeac495271d0f", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5680
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5619
|
+
type: AssetType.PRIMITIVE,
|
|
5681
5620
|
priceFeed: {
|
|
5682
5621
|
type: PriceFeedType.NONE
|
|
5683
5622
|
}
|
|
@@ -5687,15 +5626,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5687
5626
|
name: "Balancer 80 GNO 20 WETH",
|
|
5688
5627
|
releases: [],
|
|
5689
5628
|
symbol: "B-80GNO-20WETH",
|
|
5690
|
-
|
|
5691
|
-
token: "0xcb664132622f29943f67fa56ccfd1e24cc8b4995",
|
|
5692
|
-
type: BalancerStakingType.GAUGE
|
|
5693
|
-
}],
|
|
5694
|
-
poolId: "0xf4c0dd9b82da36c07605df83c8a416f11724d88b000200000000000000000026",
|
|
5695
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
5696
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5697
|
-
underlyings: ["0x6810e776880c02933d47db1b9fc05908e5386b96", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5698
|
-
type: AssetType.BALANCER_POOL,
|
|
5629
|
+
type: AssetType.PRIMITIVE,
|
|
5699
5630
|
priceFeed: {
|
|
5700
5631
|
type: PriceFeedType.NONE
|
|
5701
5632
|
}
|
|
@@ -5705,11 +5636,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5705
5636
|
name: "Balancer B-80GNO-20WETH Gauge Deposit",
|
|
5706
5637
|
releases: [],
|
|
5707
5638
|
symbol: "B-80GNO-20WETH-gauge",
|
|
5708
|
-
|
|
5709
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5710
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
5711
|
-
underlyings: ["0x6810e776880c02933d47db1b9fc05908e5386b96", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5712
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5639
|
+
type: AssetType.PRIMITIVE,
|
|
5713
5640
|
priceFeed: {
|
|
5714
5641
|
type: PriceFeedType.NONE
|
|
5715
5642
|
}
|
|
@@ -5717,35 +5644,21 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5717
5644
|
decimals: 18,
|
|
5718
5645
|
id: "0xa6f548df93de924d73be7d25dc02554c6bd66db5",
|
|
5719
5646
|
name: "Balancer 50 WBTC 50 WETH",
|
|
5720
|
-
releases: [
|
|
5647
|
+
releases: [],
|
|
5721
5648
|
symbol: "B-50WBTC-50WETH",
|
|
5722
|
-
|
|
5723
|
-
token: "0x4e3c048be671852277ad6ce29fd5207aa12fabff",
|
|
5724
|
-
type: BalancerStakingType.GAUGE
|
|
5725
|
-
}],
|
|
5726
|
-
poolId: "0xa6f548df93de924d73be7d25dc02554c6bd66db500020000000000000000000e",
|
|
5727
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
5728
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5729
|
-
underlyings: ["0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5730
|
-
type: AssetType.BALANCER_POOL,
|
|
5649
|
+
type: AssetType.PRIMITIVE,
|
|
5731
5650
|
priceFeed: {
|
|
5732
|
-
type: PriceFeedType.
|
|
5733
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286"
|
|
5651
|
+
type: PriceFeedType.NONE
|
|
5734
5652
|
}
|
|
5735
5653
|
}, {
|
|
5736
5654
|
decimals: 18,
|
|
5737
5655
|
id: "0x4e3c048be671852277ad6ce29fd5207aa12fabff",
|
|
5738
5656
|
name: "Balancer B-50WBTC-50WETH Gauge Deposit",
|
|
5739
|
-
releases: [
|
|
5657
|
+
releases: [],
|
|
5740
5658
|
symbol: "B-50WBTC-50WETH-gauge",
|
|
5741
|
-
|
|
5742
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5743
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
5744
|
-
underlyings: ["0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5745
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5659
|
+
type: AssetType.PRIMITIVE,
|
|
5746
5660
|
priceFeed: {
|
|
5747
|
-
type: PriceFeedType.
|
|
5748
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348"
|
|
5661
|
+
type: PriceFeedType.NONE
|
|
5749
5662
|
}
|
|
5750
5663
|
}, {
|
|
5751
5664
|
decimals: 18,
|
|
@@ -5761,35 +5674,21 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5761
5674
|
decimals: 18,
|
|
5762
5675
|
id: "0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8",
|
|
5763
5676
|
name: "Balancer 50 USDC 50 WETH",
|
|
5764
|
-
releases: [
|
|
5677
|
+
releases: [],
|
|
5765
5678
|
symbol: "B-50USDC-50WETH",
|
|
5766
|
-
|
|
5767
|
-
token: "0x9ab7b0c7b154f626451c9e8a68dc04f58fb6e5ce",
|
|
5768
|
-
type: BalancerStakingType.GAUGE
|
|
5769
|
-
}],
|
|
5770
|
-
poolId: "0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019",
|
|
5771
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
5772
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5773
|
-
underlyings: ["0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5774
|
-
type: AssetType.BALANCER_POOL,
|
|
5679
|
+
type: AssetType.PRIMITIVE,
|
|
5775
5680
|
priceFeed: {
|
|
5776
|
-
type: PriceFeedType.
|
|
5777
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286"
|
|
5681
|
+
type: PriceFeedType.NONE
|
|
5778
5682
|
}
|
|
5779
5683
|
}, {
|
|
5780
5684
|
decimals: 18,
|
|
5781
5685
|
id: "0x9ab7b0c7b154f626451c9e8a68dc04f58fb6e5ce",
|
|
5782
5686
|
name: "Balancer B-50USDC-50WETH Gauge Deposit",
|
|
5783
|
-
releases: [
|
|
5687
|
+
releases: [],
|
|
5784
5688
|
symbol: "B-50USDC-50WETH-gauge",
|
|
5785
|
-
|
|
5786
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5787
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
5788
|
-
underlyings: ["0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5789
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5689
|
+
type: AssetType.PRIMITIVE,
|
|
5790
5690
|
priceFeed: {
|
|
5791
|
-
type: PriceFeedType.
|
|
5792
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348"
|
|
5691
|
+
type: PriceFeedType.NONE
|
|
5793
5692
|
}
|
|
5794
5693
|
}, {
|
|
5795
5694
|
decimals: 18,
|
|
@@ -5820,15 +5719,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5820
5719
|
name: "Balancer 50wstETH-50LDO",
|
|
5821
5720
|
releases: [],
|
|
5822
5721
|
symbol: "50WSTETH-50LDO",
|
|
5823
|
-
|
|
5824
|
-
token: "0xc2c2304e163e1ab53de2eeb08820a0b592bec20b",
|
|
5825
|
-
type: BalancerStakingType.GAUGE
|
|
5826
|
-
}],
|
|
5827
|
-
poolId: "0x6a5ead5433a50472642cd268e584dafa5a394490000200000000000000000366",
|
|
5828
|
-
poolFactory: "0xcc508a455f5b0073973107db6a878ddbdab957bc",
|
|
5829
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5830
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"],
|
|
5831
|
-
type: AssetType.BALANCER_POOL,
|
|
5722
|
+
type: AssetType.PRIMITIVE,
|
|
5832
5723
|
priceFeed: {
|
|
5833
5724
|
type: PriceFeedType.NONE
|
|
5834
5725
|
}
|
|
@@ -5838,11 +5729,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5838
5729
|
name: "Balancer 50WSTETH-50LDO Gauge Deposit",
|
|
5839
5730
|
releases: [],
|
|
5840
5731
|
symbol: "50WSTETH-50LDO-gauge",
|
|
5841
|
-
|
|
5842
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5843
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
5844
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"],
|
|
5845
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5732
|
+
type: AssetType.PRIMITIVE,
|
|
5846
5733
|
priceFeed: {
|
|
5847
5734
|
type: PriceFeedType.NONE
|
|
5848
5735
|
}
|
|
@@ -5850,35 +5737,21 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5850
5737
|
decimals: 18,
|
|
5851
5738
|
id: "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5",
|
|
5852
5739
|
name: "Balancer 50wstETH-LDO",
|
|
5853
|
-
releases: [
|
|
5740
|
+
releases: [],
|
|
5854
5741
|
symbol: "50wstETH-50LDO",
|
|
5855
|
-
|
|
5856
|
-
token: "0x95201b61ef19c867da0d093df20021e1a559452c",
|
|
5857
|
-
type: BalancerStakingType.GAUGE
|
|
5858
|
-
}],
|
|
5859
|
-
poolId: "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465",
|
|
5860
|
-
poolFactory: "0x5dd94da3644ddd055fcf6b3e1aa310bb7801eb8b",
|
|
5861
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5862
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"],
|
|
5863
|
-
type: AssetType.BALANCER_POOL,
|
|
5742
|
+
type: AssetType.PRIMITIVE,
|
|
5864
5743
|
priceFeed: {
|
|
5865
|
-
type: PriceFeedType.
|
|
5866
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286"
|
|
5744
|
+
type: PriceFeedType.NONE
|
|
5867
5745
|
}
|
|
5868
5746
|
}, {
|
|
5869
5747
|
decimals: 18,
|
|
5870
5748
|
id: "0x95201b61ef19c867da0d093df20021e1a559452c",
|
|
5871
5749
|
name: "Balancer 50wstETH-50LDO Gauge Deposit",
|
|
5872
|
-
releases: [
|
|
5750
|
+
releases: [],
|
|
5873
5751
|
symbol: "50wstETH-50LDO-gauge",
|
|
5874
|
-
|
|
5875
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5876
|
-
gaugeFactory: "0xf1665e19bc105be4edd3739f88315cc699cc5b65",
|
|
5877
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"],
|
|
5878
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5752
|
+
type: AssetType.PRIMITIVE,
|
|
5879
5753
|
priceFeed: {
|
|
5880
|
-
type: PriceFeedType.
|
|
5881
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348"
|
|
5754
|
+
type: PriceFeedType.NONE
|
|
5882
5755
|
}
|
|
5883
5756
|
}, {
|
|
5884
5757
|
decimals: 18,
|
|
@@ -5894,35 +5767,21 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5894
5767
|
decimals: 18,
|
|
5895
5768
|
id: "0xbf96189eee9357a95c7719f4f5047f76bde804e5",
|
|
5896
5769
|
name: "Balancer 80 LDO 20 WETH",
|
|
5897
|
-
releases: [
|
|
5770
|
+
releases: [],
|
|
5898
5771
|
symbol: "B-80LDO-20WETH",
|
|
5899
|
-
|
|
5900
|
-
token: "0x942cb1ed80d3ff8028b3dd726e0e2a9671bc6202",
|
|
5901
|
-
type: BalancerStakingType.GAUGE
|
|
5902
|
-
}],
|
|
5903
|
-
poolId: "0xbf96189eee9357a95c7719f4f5047f76bde804e5000200000000000000000087",
|
|
5904
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
5905
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5906
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5907
|
-
type: AssetType.BALANCER_POOL,
|
|
5772
|
+
type: AssetType.PRIMITIVE,
|
|
5908
5773
|
priceFeed: {
|
|
5909
|
-
type: PriceFeedType.
|
|
5910
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286"
|
|
5774
|
+
type: PriceFeedType.NONE
|
|
5911
5775
|
}
|
|
5912
5776
|
}, {
|
|
5913
5777
|
decimals: 18,
|
|
5914
5778
|
id: "0x942cb1ed80d3ff8028b3dd726e0e2a9671bc6202",
|
|
5915
5779
|
name: "Balancer B-80LDO-20WETH Gauge Deposit",
|
|
5916
|
-
releases: [
|
|
5780
|
+
releases: [],
|
|
5917
5781
|
symbol: "B-80LDO-20WETH-gauge",
|
|
5918
|
-
|
|
5919
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5920
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
5921
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5922
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5782
|
+
type: AssetType.PRIMITIVE,
|
|
5923
5783
|
priceFeed: {
|
|
5924
|
-
type: PriceFeedType.
|
|
5925
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348"
|
|
5784
|
+
type: PriceFeedType.NONE
|
|
5926
5785
|
}
|
|
5927
5786
|
}, {
|
|
5928
5787
|
decimals: 18,
|
|
@@ -5938,17 +5797,11 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5938
5797
|
decimals: 18,
|
|
5939
5798
|
id: "0xaac98ee71d4f8a156b6abaa6844cdb7789d086ce",
|
|
5940
5799
|
name: "Balancer 60 MKR 40 WETH",
|
|
5941
|
-
releases: [
|
|
5800
|
+
releases: [],
|
|
5942
5801
|
symbol: "B-60MKR-40WETH",
|
|
5943
|
-
|
|
5944
|
-
poolId: "0xaac98ee71d4f8a156b6abaa6844cdb7789d086ce00020000000000000000001b",
|
|
5945
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
5946
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5947
|
-
underlyings: ["0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5948
|
-
type: AssetType.BALANCER_POOL,
|
|
5802
|
+
type: AssetType.PRIMITIVE,
|
|
5949
5803
|
priceFeed: {
|
|
5950
|
-
type: PriceFeedType.
|
|
5951
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286"
|
|
5804
|
+
type: PriceFeedType.NONE
|
|
5952
5805
|
}
|
|
5953
5806
|
}, {
|
|
5954
5807
|
decimals: 18,
|
|
@@ -5956,12 +5809,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5956
5809
|
name: "80NATION-20WETH",
|
|
5957
5810
|
releases: [],
|
|
5958
5811
|
symbol: "80NATION-20WETH",
|
|
5959
|
-
|
|
5960
|
-
poolId: "0x0bf37157d30dfe6f56757dcadff01aed83b08cd600020000000000000000019a",
|
|
5961
|
-
poolFactory: "0x8e9aa87e45e92bad84d5f8dd1bff34fb92637de9",
|
|
5962
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
5963
|
-
underlyings: ["0x333a4823466879eef910a04d473505da62142069", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
5964
|
-
type: AssetType.BALANCER_POOL,
|
|
5812
|
+
type: AssetType.PRIMITIVE,
|
|
5965
5813
|
priceFeed: {
|
|
5966
5814
|
type: PriceFeedType.NONE
|
|
5967
5815
|
}
|
|
@@ -5995,36 +5843,21 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
5995
5843
|
decimals: 18,
|
|
5996
5844
|
id: "0x32296969ef14eb0c6d29669c550d4a0449130230",
|
|
5997
5845
|
name: "Balancer stETH Stable Pool",
|
|
5998
|
-
releases: [
|
|
5846
|
+
releases: [],
|
|
5999
5847
|
symbol: "B-stETH-STABLE",
|
|
6000
|
-
|
|
6001
|
-
|
|
6002
|
-
type:
|
|
6003
|
-
}],
|
|
6004
|
-
poolId: "0x32296969ef14eb0c6d29669c550d4a0449130230000200000000000000000080",
|
|
6005
|
-
poolFactory: "0x67d27634e44793fe63c467035e31ea8635117cd4",
|
|
6006
|
-
poolType: BalancerPoolType.META_STABLE,
|
|
6007
|
-
underlyings: ["0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6008
|
-
type: AssetType.BALANCER_POOL,
|
|
6009
|
-
priceFeed: {
|
|
6010
|
-
type: PriceFeedType.DERIVATIVE_BALANCER_V2_STABLE_POOL,
|
|
6011
|
-
address: "0x438254d66e2bc576819a76a0ecb11fe41195d39f",
|
|
6012
|
-
ipa: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
|
|
5848
|
+
type: AssetType.PRIMITIVE,
|
|
5849
|
+
priceFeed: {
|
|
5850
|
+
type: PriceFeedType.NONE
|
|
6013
5851
|
}
|
|
6014
5852
|
}, {
|
|
6015
5853
|
decimals: 18,
|
|
6016
5854
|
id: "0xcd4722b7c24c29e0413bdcd9e51404b4539d14ae",
|
|
6017
5855
|
name: "Balancer B-stETH-STABLE Gauge Deposit",
|
|
6018
|
-
releases: [
|
|
5856
|
+
releases: [],
|
|
6019
5857
|
symbol: "B-stETH-STABLE-gauge",
|
|
6020
|
-
|
|
6021
|
-
poolType: BalancerPoolType.META_STABLE,
|
|
6022
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6023
|
-
underlyings: ["0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6024
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5858
|
+
type: AssetType.PRIMITIVE,
|
|
6025
5859
|
priceFeed: {
|
|
6026
|
-
type: PriceFeedType.
|
|
6027
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348"
|
|
5860
|
+
type: PriceFeedType.NONE
|
|
6028
5861
|
}
|
|
6029
5862
|
}, {
|
|
6030
5863
|
decimals: 18,
|
|
@@ -6068,36 +5901,21 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
6068
5901
|
decimals: 18,
|
|
6069
5902
|
id: "0x1e19cf2d73a72ef1332c882f20534b6519be0276",
|
|
6070
5903
|
name: "Balancer rETH Stable Pool",
|
|
6071
|
-
releases: [
|
|
5904
|
+
releases: [],
|
|
6072
5905
|
symbol: "B-rETH-STABLE",
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
type:
|
|
6076
|
-
}],
|
|
6077
|
-
poolId: "0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112",
|
|
6078
|
-
poolFactory: "0x67d27634e44793fe63c467035e31ea8635117cd4",
|
|
6079
|
-
poolType: BalancerPoolType.META_STABLE,
|
|
6080
|
-
underlyings: ["0xae78736cd615f374d3085123a210448e74fc6393", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6081
|
-
type: AssetType.BALANCER_POOL,
|
|
6082
|
-
priceFeed: {
|
|
6083
|
-
type: PriceFeedType.DERIVATIVE_BALANCER_V2_STABLE_POOL,
|
|
6084
|
-
address: "0x438254d66e2bc576819a76a0ecb11fe41195d39f",
|
|
6085
|
-
ipa: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
|
|
5906
|
+
type: AssetType.PRIMITIVE,
|
|
5907
|
+
priceFeed: {
|
|
5908
|
+
type: PriceFeedType.NONE
|
|
6086
5909
|
}
|
|
6087
5910
|
}, {
|
|
6088
5911
|
decimals: 18,
|
|
6089
5912
|
id: "0x79ef6103a513951a3b25743db509e267685726b7",
|
|
6090
5913
|
name: "Balancer B-rETH-STABLE Gauge Deposit",
|
|
6091
|
-
releases: [
|
|
5914
|
+
releases: [],
|
|
6092
5915
|
symbol: "B-rETH-STABLE-gauge",
|
|
6093
|
-
|
|
6094
|
-
poolType: BalancerPoolType.META_STABLE,
|
|
6095
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6096
|
-
underlyings: ["0xae78736cd615f374d3085123a210448e74fc6393", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6097
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
5916
|
+
type: AssetType.PRIMITIVE,
|
|
6098
5917
|
priceFeed: {
|
|
6099
|
-
type: PriceFeedType.
|
|
6100
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348"
|
|
5918
|
+
type: PriceFeedType.NONE
|
|
6101
5919
|
}
|
|
6102
5920
|
}, {
|
|
6103
5921
|
decimals: 18,
|
|
@@ -6855,8 +6673,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
6855
6673
|
name: "ZeroLend PT Lombard LBTC 27MAR2025",
|
|
6856
6674
|
releases: [],
|
|
6857
6675
|
symbol: "z0PT-LBTC-27MAR2025",
|
|
6858
|
-
type: AssetType.
|
|
6859
|
-
underlying: "0xec5a52c685cc3ad79a6a347abace330d69e0b1ed",
|
|
6676
|
+
type: AssetType.PRIMITIVE,
|
|
6860
6677
|
priceFeed: {
|
|
6861
6678
|
type: PriceFeedType.NONE
|
|
6862
6679
|
}
|
|
@@ -6866,8 +6683,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
6866
6683
|
name: "ZeroLend PT Ethena sUSDE 27MAR2025",
|
|
6867
6684
|
releases: [],
|
|
6868
6685
|
symbol: "z0PT-sUSDE-27MAR2025",
|
|
6869
|
-
type: AssetType.
|
|
6870
|
-
underlying: "0xe00bd3df25fb187d6abbb620b3dfd19839947b81",
|
|
6686
|
+
type: AssetType.PRIMITIVE,
|
|
6871
6687
|
priceFeed: {
|
|
6872
6688
|
type: PriceFeedType.NONE
|
|
6873
6689
|
}
|
|
@@ -6877,8 +6693,7 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
6877
6693
|
name: "ZeroLend PT Ethena USDe 27MAR2025",
|
|
6878
6694
|
releases: [],
|
|
6879
6695
|
symbol: "z0PT-USDe-27MAR2025",
|
|
6880
|
-
type: AssetType.
|
|
6881
|
-
underlying: "0x8a47b431a7d947c6a3ed6e42d501803615a97eaa",
|
|
6696
|
+
type: AssetType.PRIMITIVE,
|
|
6882
6697
|
priceFeed: {
|
|
6883
6698
|
type: PriceFeedType.NONE
|
|
6884
6699
|
}
|
|
@@ -6910,10 +6725,9 @@ export default /*#__PURE__*/defineAssetList(Network.ETHEREUM, [{
|
|
|
6910
6725
|
symbol: "z0PT-corn-eBTC-27MAR2025",
|
|
6911
6726
|
name: "ZeroLend PT Corn ether.fi eBTC 27MAR2025",
|
|
6912
6727
|
id: "0xe2e3075c8962010e0d0b3a945c4671cc652ad5b7",
|
|
6913
|
-
type: AssetType.
|
|
6728
|
+
type: AssetType.PRIMITIVE,
|
|
6914
6729
|
releases: [],
|
|
6915
6730
|
decimals: 8,
|
|
6916
|
-
underlying: "0x44a7876ca99460ef3218bf08b5f52e2dbe199566",
|
|
6917
6731
|
priceFeed: {
|
|
6918
6732
|
type: PriceFeedType.NONE
|
|
6919
6733
|
}
|