@enzymefinance/environment 6.3.78 → 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 +2 -4
- 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 +2 -4
- 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 +2 -4
- 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
package/src/assets/ethereum.ts
CHANGED
|
@@ -1,12 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
AssetType,
|
|
3
|
-
BalancerPoolType,
|
|
4
|
-
BalancerStakingType,
|
|
5
|
-
CurvePoolTemplate,
|
|
6
|
-
CurveStakingType,
|
|
7
|
-
Erc4626Protocol,
|
|
8
|
-
defineAssetList,
|
|
9
|
-
} from "../assets.js";
|
|
1
|
+
import { AssetType, CurvePoolTemplate, CurveStakingType, Erc4626Protocol, defineAssetList } from "../assets.js";
|
|
10
2
|
import { Network } from "../networks.js";
|
|
11
3
|
import { PriceFeedType, RateAsset } from "../price-feeds.js";
|
|
12
4
|
import { releases } from "../releases.js";
|
|
@@ -262,22 +254,11 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
262
254
|
decimals: 18,
|
|
263
255
|
id: "0x05ff47afada98a98982113758878f9a8b9fdda0a",
|
|
264
256
|
name: "Balancer weETH/rETH StablePool",
|
|
265
|
-
releases: [
|
|
257
|
+
releases: [],
|
|
266
258
|
symbol: "weETH/rETH",
|
|
267
|
-
|
|
268
|
-
poolId: "0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645",
|
|
269
|
-
poolFactory: "0xdb8d758bcb971e482b2c45f7f8a7740283a1bd3a",
|
|
270
|
-
poolType: BalancerPoolType.COMPOSABLE_STABLE_V5,
|
|
271
|
-
underlyings: [
|
|
272
|
-
"0x05ff47afada98a98982113758878f9a8b9fdda0a",
|
|
273
|
-
"0xae78736cd615f374d3085123a210448e74fc6393",
|
|
274
|
-
"0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee",
|
|
275
|
-
],
|
|
276
|
-
type: AssetType.BALANCER_POOL,
|
|
259
|
+
type: AssetType.PRIMITIVE,
|
|
277
260
|
priceFeed: {
|
|
278
|
-
type: PriceFeedType.
|
|
279
|
-
address: "0x438254d66e2bc576819a76a0ecb11fe41195d39f",
|
|
280
|
-
ipa: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
261
|
+
type: PriceFeedType.NONE,
|
|
281
262
|
},
|
|
282
263
|
},
|
|
283
264
|
{
|
|
@@ -908,21 +889,11 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
908
889
|
decimals: 18,
|
|
909
890
|
id: "0x253ed65fff980aee7e94a0dc57be304426048b35",
|
|
910
891
|
name: "Balancer weETH/ezETH/rswETH Gauge Deposit",
|
|
911
|
-
releases: [
|
|
892
|
+
releases: [],
|
|
912
893
|
symbol: "weETH/ezETH/rswETH-gauge",
|
|
913
|
-
|
|
914
|
-
poolType: BalancerPoolType.COMPOSABLE_STABLE_V5,
|
|
915
|
-
gaugeFactory: "0xf1665e19bc105be4edd3739f88315cc699cc5b65",
|
|
916
|
-
underlyings: [
|
|
917
|
-
"0x848a5564158d84b8a8fb68ab5d004fae11619a54",
|
|
918
|
-
"0xbf5495efe5db9ce00f80364c8b423567e58d2110",
|
|
919
|
-
"0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee",
|
|
920
|
-
"0xfae103dc9cf190ed75350761e95403b7b8afa6c0",
|
|
921
|
-
],
|
|
922
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
894
|
+
type: AssetType.PRIMITIVE,
|
|
923
895
|
priceFeed: {
|
|
924
|
-
type: PriceFeedType.
|
|
925
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348",
|
|
896
|
+
type: PriceFeedType.NONE,
|
|
926
897
|
},
|
|
927
898
|
},
|
|
928
899
|
{
|
|
@@ -2706,23 +2677,11 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
2706
2677
|
decimals: 18,
|
|
2707
2678
|
id: "0x848a5564158d84b8a8fb68ab5d004fae11619a54",
|
|
2708
2679
|
name: "Balancer weETH/ezETH/rswETH",
|
|
2709
|
-
releases: [
|
|
2680
|
+
releases: [],
|
|
2710
2681
|
symbol: "weETH/ezETH/rswETH",
|
|
2711
|
-
|
|
2712
|
-
poolId: "0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a",
|
|
2713
|
-
poolFactory: "0xdb8d758bcb971e482b2c45f7f8a7740283a1bd3a",
|
|
2714
|
-
poolType: BalancerPoolType.COMPOSABLE_STABLE_V5,
|
|
2715
|
-
underlyings: [
|
|
2716
|
-
"0x848a5564158d84b8a8fb68ab5d004fae11619a54",
|
|
2717
|
-
"0xbf5495efe5db9ce00f80364c8b423567e58d2110",
|
|
2718
|
-
"0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee",
|
|
2719
|
-
"0xfae103dc9cf190ed75350761e95403b7b8afa6c0",
|
|
2720
|
-
],
|
|
2721
|
-
type: AssetType.BALANCER_POOL,
|
|
2682
|
+
type: AssetType.PRIMITIVE,
|
|
2722
2683
|
priceFeed: {
|
|
2723
|
-
type: PriceFeedType.
|
|
2724
|
-
address: "0x438254d66e2bc576819a76a0ecb11fe41195d39f",
|
|
2725
|
-
ipa: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
2684
|
+
type: PriceFeedType.NONE,
|
|
2726
2685
|
},
|
|
2727
2686
|
},
|
|
2728
2687
|
{
|
|
@@ -3073,13 +3032,12 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
3073
3032
|
decimals: 8,
|
|
3074
3033
|
id: "0x95b4ef2869ebd94beb4eee400a99824bf5dc325b",
|
|
3075
3034
|
name: "Compound Maker",
|
|
3076
|
-
releases: [
|
|
3035
|
+
releases: [encore],
|
|
3077
3036
|
symbol: "cMKR",
|
|
3078
3037
|
type: AssetType.COMPOUND_V2,
|
|
3079
3038
|
underlying: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
3080
3039
|
priceFeed: {
|
|
3081
|
-
type: PriceFeedType.
|
|
3082
|
-
address: "0x6254e0538abbb668eac89d5e5bee27a9d0e62bbe",
|
|
3040
|
+
type: PriceFeedType.NONE,
|
|
3083
3041
|
},
|
|
3084
3042
|
},
|
|
3085
3043
|
{
|
|
@@ -3149,13 +3107,11 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
3149
3107
|
decimals: 18,
|
|
3150
3108
|
id: "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3",
|
|
3151
3109
|
name: "Magic Internet Money",
|
|
3152
|
-
releases: [
|
|
3110
|
+
releases: [encore],
|
|
3153
3111
|
symbol: "MIM",
|
|
3154
3112
|
type: AssetType.PRIMITIVE,
|
|
3155
3113
|
priceFeed: {
|
|
3156
|
-
type: PriceFeedType.
|
|
3157
|
-
aggregator: "0x7a364e8770418566e3eb2001a96116e6138eb32f",
|
|
3158
|
-
rateAsset: RateAsset.USD,
|
|
3114
|
+
type: PriceFeedType.NONE,
|
|
3159
3115
|
},
|
|
3160
3116
|
},
|
|
3161
3117
|
{
|
|
@@ -3240,41 +3196,34 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
3240
3196
|
decimals: 18,
|
|
3241
3197
|
id: "0xe24933aa6dfb66a32df7ea897a1818ecaabd54e1",
|
|
3242
3198
|
name: "ZeroLend Staked USDe",
|
|
3243
|
-
releases: [
|
|
3199
|
+
releases: [],
|
|
3244
3200
|
symbol: "z0sUSDe",
|
|
3245
|
-
type: AssetType.
|
|
3246
|
-
underlying: "0x9d39a5de30e57443bff2a8307a4256c8797a3497",
|
|
3201
|
+
type: AssetType.PRIMITIVE,
|
|
3247
3202
|
priceFeed: {
|
|
3248
|
-
type: PriceFeedType.
|
|
3249
|
-
aggregator: "0xb99d174ed06c83588af997c8859f93e83dd4733f",
|
|
3250
|
-
rateAsset: RateAsset.USD,
|
|
3203
|
+
type: PriceFeedType.NONE,
|
|
3251
3204
|
},
|
|
3252
3205
|
},
|
|
3253
3206
|
{
|
|
3254
3207
|
decimals: 18,
|
|
3255
3208
|
id: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
3256
3209
|
name: "Maker",
|
|
3257
|
-
releases: [
|
|
3210
|
+
releases: [encore, phoenix],
|
|
3258
3211
|
symbol: "MKR",
|
|
3259
3212
|
type: AssetType.PRIMITIVE,
|
|
3260
3213
|
priceFeed: {
|
|
3261
|
-
type: PriceFeedType.
|
|
3262
|
-
aggregator: "0x24551a8fb2a7211a25a17b1481f043a8a8adc7f2",
|
|
3263
|
-
rateAsset: RateAsset.ETH,
|
|
3214
|
+
type: PriceFeedType.NONE,
|
|
3264
3215
|
},
|
|
3265
3216
|
},
|
|
3266
3217
|
{
|
|
3267
3218
|
decimals: 18,
|
|
3268
3219
|
id: "0x8a458a9dc9048e005d22849f470891b840296619",
|
|
3269
3220
|
name: "Aave Ethereum MKR",
|
|
3270
|
-
releases: [
|
|
3221
|
+
releases: [],
|
|
3271
3222
|
symbol: "aEthMKR",
|
|
3272
3223
|
type: AssetType.AAVE_V3,
|
|
3273
3224
|
underlying: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
3274
3225
|
priceFeed: {
|
|
3275
|
-
type: PriceFeedType.
|
|
3276
|
-
aggregator: "0x24551a8fb2a7211a25a17b1481f043a8a8adc7f2",
|
|
3277
|
-
rateAsset: RateAsset.ETH,
|
|
3226
|
+
type: PriceFeedType.NONE,
|
|
3278
3227
|
},
|
|
3279
3228
|
},
|
|
3280
3229
|
{
|
|
@@ -4306,13 +4255,12 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
4306
4255
|
decimals: 18,
|
|
4307
4256
|
id: "0xc2adda861f89bbb333c90c492cb837741916a225",
|
|
4308
4257
|
name: "Uniswap MKR/ETH Pool",
|
|
4309
|
-
releases: [
|
|
4258
|
+
releases: [encore, phoenix],
|
|
4310
4259
|
symbol: "UNI-V2",
|
|
4311
4260
|
type: AssetType.UNISWAP_V2_POOL,
|
|
4312
4261
|
underlyings: ["0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
4313
4262
|
priceFeed: {
|
|
4314
|
-
type: PriceFeedType.
|
|
4315
|
-
address: "0xdbc1162ea1ab770f0ba5fb494e0010e68351e3b0",
|
|
4263
|
+
type: PriceFeedType.NONE,
|
|
4316
4264
|
},
|
|
4317
4265
|
},
|
|
4318
4266
|
{
|
|
@@ -4364,14 +4312,12 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
4364
4312
|
decimals: 18,
|
|
4365
4313
|
id: "0xc713e5e149d5d0715dcd1c156a020976e7e56b88",
|
|
4366
4314
|
name: "Aave MKR",
|
|
4367
|
-
releases: [
|
|
4315
|
+
releases: [encore, phoenix],
|
|
4368
4316
|
symbol: "aMKR",
|
|
4369
4317
|
type: AssetType.AAVE_V2,
|
|
4370
4318
|
underlying: "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
4371
4319
|
priceFeed: {
|
|
4372
|
-
type: PriceFeedType.
|
|
4373
|
-
aggregator: "0x24551a8fb2a7211a25a17b1481f043a8a8adc7f2",
|
|
4374
|
-
rateAsset: RateAsset.ETH,
|
|
4320
|
+
type: PriceFeedType.NONE,
|
|
4375
4321
|
},
|
|
4376
4322
|
},
|
|
4377
4323
|
{
|
|
@@ -4390,20 +4336,11 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
4390
4336
|
decimals: 18,
|
|
4391
4337
|
id: "0xc859bf9d7b8c557bbd229565124c2c09269f3aef",
|
|
4392
4338
|
name: "Balancer weETH/rETH Gauge Deposit",
|
|
4393
|
-
releases: [
|
|
4339
|
+
releases: [],
|
|
4394
4340
|
symbol: "weETH/rETH-gauge",
|
|
4395
|
-
|
|
4396
|
-
poolType: BalancerPoolType.COMPOSABLE_STABLE_V5,
|
|
4397
|
-
gaugeFactory: "0xf1665e19bc105be4edd3739f88315cc699cc5b65",
|
|
4398
|
-
underlyings: [
|
|
4399
|
-
"0x05ff47afada98a98982113758878f9a8b9fdda0a",
|
|
4400
|
-
"0xae78736cd615f374d3085123a210448e74fc6393",
|
|
4401
|
-
"0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee",
|
|
4402
|
-
],
|
|
4403
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
4341
|
+
type: AssetType.PRIMITIVE,
|
|
4404
4342
|
priceFeed: {
|
|
4405
|
-
type: PriceFeedType.
|
|
4406
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348",
|
|
4343
|
+
type: PriceFeedType.NONE,
|
|
4407
4344
|
},
|
|
4408
4345
|
},
|
|
4409
4346
|
{
|
|
@@ -6096,17 +6033,11 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6096
6033
|
decimals: 18,
|
|
6097
6034
|
id: "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56",
|
|
6098
6035
|
name: "Balancer 80 BAL 20 WETH",
|
|
6099
|
-
releases: [
|
|
6036
|
+
releases: [],
|
|
6100
6037
|
symbol: "B-80BAL-20WETH",
|
|
6101
|
-
|
|
6102
|
-
poolId: "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56000200000000000000000014",
|
|
6103
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
6104
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6105
|
-
underlyings: ["0xba100000625a3754423978a60c9317c58a424e3d", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6106
|
-
type: AssetType.BALANCER_POOL,
|
|
6038
|
+
type: AssetType.PRIMITIVE,
|
|
6107
6039
|
priceFeed: {
|
|
6108
|
-
type: PriceFeedType.
|
|
6109
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286",
|
|
6040
|
+
type: PriceFeedType.NONE,
|
|
6110
6041
|
},
|
|
6111
6042
|
},
|
|
6112
6043
|
{
|
|
@@ -6115,16 +6046,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6115
6046
|
name: "Balancer 50OHM-25DAI-25WETH",
|
|
6116
6047
|
releases: [],
|
|
6117
6048
|
symbol: "50OHM-25DAI-25WETH",
|
|
6118
|
-
|
|
6119
|
-
poolId: "0xc45d42f801105e861e86658648e3678ad7aa70f900010000000000000000011e",
|
|
6120
|
-
poolFactory: "0x8e9aa87e45e92bad84d5f8dd1bff34fb92637de9",
|
|
6121
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6122
|
-
underlyings: [
|
|
6123
|
-
"0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5",
|
|
6124
|
-
"0x6b175474e89094c44da98b954eedeac495271d0f",
|
|
6125
|
-
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
6126
|
-
],
|
|
6127
|
-
type: AssetType.BALANCER_POOL,
|
|
6049
|
+
type: AssetType.PRIMITIVE,
|
|
6128
6050
|
priceFeed: {
|
|
6129
6051
|
type: PriceFeedType.NONE,
|
|
6130
6052
|
},
|
|
@@ -6135,15 +6057,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6135
6057
|
name: "Balancer 50OHM-25DAI-25WETH Gauge Deposit",
|
|
6136
6058
|
releases: [],
|
|
6137
6059
|
symbol: "50OHM-25DAI-25WETH-gauge",
|
|
6138
|
-
|
|
6139
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6140
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6141
|
-
underlyings: [
|
|
6142
|
-
"0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5",
|
|
6143
|
-
"0x6b175474e89094c44da98b954eedeac495271d0f",
|
|
6144
|
-
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
6145
|
-
],
|
|
6146
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6060
|
+
type: AssetType.PRIMITIVE,
|
|
6147
6061
|
priceFeed: {
|
|
6148
6062
|
type: PriceFeedType.NONE,
|
|
6149
6063
|
},
|
|
@@ -6154,17 +6068,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6154
6068
|
name: "Balancer 80 GNO 20 WETH",
|
|
6155
6069
|
releases: [],
|
|
6156
6070
|
symbol: "B-80GNO-20WETH",
|
|
6157
|
-
|
|
6158
|
-
{
|
|
6159
|
-
token: "0xcb664132622f29943f67fa56ccfd1e24cc8b4995",
|
|
6160
|
-
type: BalancerStakingType.GAUGE,
|
|
6161
|
-
},
|
|
6162
|
-
],
|
|
6163
|
-
poolId: "0xf4c0dd9b82da36c07605df83c8a416f11724d88b000200000000000000000026",
|
|
6164
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
6165
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6166
|
-
underlyings: ["0x6810e776880c02933d47db1b9fc05908e5386b96", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6167
|
-
type: AssetType.BALANCER_POOL,
|
|
6071
|
+
type: AssetType.PRIMITIVE,
|
|
6168
6072
|
priceFeed: {
|
|
6169
6073
|
type: PriceFeedType.NONE,
|
|
6170
6074
|
},
|
|
@@ -6175,11 +6079,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6175
6079
|
name: "Balancer B-80GNO-20WETH Gauge Deposit",
|
|
6176
6080
|
releases: [],
|
|
6177
6081
|
symbol: "B-80GNO-20WETH-gauge",
|
|
6178
|
-
|
|
6179
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6180
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6181
|
-
underlyings: ["0x6810e776880c02933d47db1b9fc05908e5386b96", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6182
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6082
|
+
type: AssetType.PRIMITIVE,
|
|
6183
6083
|
priceFeed: {
|
|
6184
6084
|
type: PriceFeedType.NONE,
|
|
6185
6085
|
},
|
|
@@ -6188,33 +6088,22 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6188
6088
|
decimals: 18,
|
|
6189
6089
|
id: "0xa6f548df93de924d73be7d25dc02554c6bd66db5",
|
|
6190
6090
|
name: "Balancer 50 WBTC 50 WETH",
|
|
6191
|
-
releases: [
|
|
6091
|
+
releases: [],
|
|
6192
6092
|
symbol: "B-50WBTC-50WETH",
|
|
6193
|
-
|
|
6194
|
-
poolId: "0xa6f548df93de924d73be7d25dc02554c6bd66db500020000000000000000000e",
|
|
6195
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
6196
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6197
|
-
underlyings: ["0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6198
|
-
type: AssetType.BALANCER_POOL,
|
|
6093
|
+
type: AssetType.PRIMITIVE,
|
|
6199
6094
|
priceFeed: {
|
|
6200
|
-
type: PriceFeedType.
|
|
6201
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286",
|
|
6095
|
+
type: PriceFeedType.NONE,
|
|
6202
6096
|
},
|
|
6203
6097
|
},
|
|
6204
6098
|
{
|
|
6205
6099
|
decimals: 18,
|
|
6206
6100
|
id: "0x4e3c048be671852277ad6ce29fd5207aa12fabff",
|
|
6207
6101
|
name: "Balancer B-50WBTC-50WETH Gauge Deposit",
|
|
6208
|
-
releases: [
|
|
6102
|
+
releases: [],
|
|
6209
6103
|
symbol: "B-50WBTC-50WETH-gauge",
|
|
6210
|
-
|
|
6211
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6212
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6213
|
-
underlyings: ["0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6214
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6104
|
+
type: AssetType.PRIMITIVE,
|
|
6215
6105
|
priceFeed: {
|
|
6216
|
-
type: PriceFeedType.
|
|
6217
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348",
|
|
6106
|
+
type: PriceFeedType.NONE,
|
|
6218
6107
|
},
|
|
6219
6108
|
},
|
|
6220
6109
|
{
|
|
@@ -6232,33 +6121,22 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6232
6121
|
decimals: 18,
|
|
6233
6122
|
id: "0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8",
|
|
6234
6123
|
name: "Balancer 50 USDC 50 WETH",
|
|
6235
|
-
releases: [
|
|
6124
|
+
releases: [],
|
|
6236
6125
|
symbol: "B-50USDC-50WETH",
|
|
6237
|
-
|
|
6238
|
-
poolId: "0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019",
|
|
6239
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
6240
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6241
|
-
underlyings: ["0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6242
|
-
type: AssetType.BALANCER_POOL,
|
|
6126
|
+
type: AssetType.PRIMITIVE,
|
|
6243
6127
|
priceFeed: {
|
|
6244
|
-
type: PriceFeedType.
|
|
6245
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286",
|
|
6128
|
+
type: PriceFeedType.NONE,
|
|
6246
6129
|
},
|
|
6247
6130
|
},
|
|
6248
6131
|
{
|
|
6249
6132
|
decimals: 18,
|
|
6250
6133
|
id: "0x9ab7b0c7b154f626451c9e8a68dc04f58fb6e5ce",
|
|
6251
6134
|
name: "Balancer B-50USDC-50WETH Gauge Deposit",
|
|
6252
|
-
releases: [
|
|
6135
|
+
releases: [],
|
|
6253
6136
|
symbol: "B-50USDC-50WETH-gauge",
|
|
6254
|
-
|
|
6255
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6256
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6257
|
-
underlyings: ["0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6258
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6137
|
+
type: AssetType.PRIMITIVE,
|
|
6259
6138
|
priceFeed: {
|
|
6260
|
-
type: PriceFeedType.
|
|
6261
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348",
|
|
6139
|
+
type: PriceFeedType.NONE,
|
|
6262
6140
|
},
|
|
6263
6141
|
},
|
|
6264
6142
|
{
|
|
@@ -6292,12 +6170,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6292
6170
|
name: "Balancer 50wstETH-50LDO",
|
|
6293
6171
|
releases: [],
|
|
6294
6172
|
symbol: "50WSTETH-50LDO",
|
|
6295
|
-
|
|
6296
|
-
poolId: "0x6a5ead5433a50472642cd268e584dafa5a394490000200000000000000000366",
|
|
6297
|
-
poolFactory: "0xcc508a455f5b0073973107db6a878ddbdab957bc",
|
|
6298
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6299
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"],
|
|
6300
|
-
type: AssetType.BALANCER_POOL,
|
|
6173
|
+
type: AssetType.PRIMITIVE,
|
|
6301
6174
|
priceFeed: {
|
|
6302
6175
|
type: PriceFeedType.NONE,
|
|
6303
6176
|
},
|
|
@@ -6308,11 +6181,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6308
6181
|
name: "Balancer 50WSTETH-50LDO Gauge Deposit",
|
|
6309
6182
|
releases: [],
|
|
6310
6183
|
symbol: "50WSTETH-50LDO-gauge",
|
|
6311
|
-
|
|
6312
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6313
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6314
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"],
|
|
6315
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6184
|
+
type: AssetType.PRIMITIVE,
|
|
6316
6185
|
priceFeed: {
|
|
6317
6186
|
type: PriceFeedType.NONE,
|
|
6318
6187
|
},
|
|
@@ -6321,33 +6190,22 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6321
6190
|
decimals: 18,
|
|
6322
6191
|
id: "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5",
|
|
6323
6192
|
name: "Balancer 50wstETH-LDO",
|
|
6324
|
-
releases: [
|
|
6193
|
+
releases: [],
|
|
6325
6194
|
symbol: "50wstETH-50LDO",
|
|
6326
|
-
|
|
6327
|
-
poolId: "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465",
|
|
6328
|
-
poolFactory: "0x5dd94da3644ddd055fcf6b3e1aa310bb7801eb8b",
|
|
6329
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6330
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"],
|
|
6331
|
-
type: AssetType.BALANCER_POOL,
|
|
6195
|
+
type: AssetType.PRIMITIVE,
|
|
6332
6196
|
priceFeed: {
|
|
6333
|
-
type: PriceFeedType.
|
|
6334
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286",
|
|
6197
|
+
type: PriceFeedType.NONE,
|
|
6335
6198
|
},
|
|
6336
6199
|
},
|
|
6337
6200
|
{
|
|
6338
6201
|
decimals: 18,
|
|
6339
6202
|
id: "0x95201b61ef19c867da0d093df20021e1a559452c",
|
|
6340
6203
|
name: "Balancer 50wstETH-50LDO Gauge Deposit",
|
|
6341
|
-
releases: [
|
|
6204
|
+
releases: [],
|
|
6342
6205
|
symbol: "50wstETH-50LDO-gauge",
|
|
6343
|
-
|
|
6344
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6345
|
-
gaugeFactory: "0xf1665e19bc105be4edd3739f88315cc699cc5b65",
|
|
6346
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"],
|
|
6347
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6206
|
+
type: AssetType.PRIMITIVE,
|
|
6348
6207
|
priceFeed: {
|
|
6349
|
-
type: PriceFeedType.
|
|
6350
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348",
|
|
6208
|
+
type: PriceFeedType.NONE,
|
|
6351
6209
|
},
|
|
6352
6210
|
},
|
|
6353
6211
|
{
|
|
@@ -6365,33 +6223,22 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6365
6223
|
decimals: 18,
|
|
6366
6224
|
id: "0xbf96189eee9357a95c7719f4f5047f76bde804e5",
|
|
6367
6225
|
name: "Balancer 80 LDO 20 WETH",
|
|
6368
|
-
releases: [
|
|
6226
|
+
releases: [],
|
|
6369
6227
|
symbol: "B-80LDO-20WETH",
|
|
6370
|
-
|
|
6371
|
-
poolId: "0xbf96189eee9357a95c7719f4f5047f76bde804e5000200000000000000000087",
|
|
6372
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
6373
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6374
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6375
|
-
type: AssetType.BALANCER_POOL,
|
|
6228
|
+
type: AssetType.PRIMITIVE,
|
|
6376
6229
|
priceFeed: {
|
|
6377
|
-
type: PriceFeedType.
|
|
6378
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286",
|
|
6230
|
+
type: PriceFeedType.NONE,
|
|
6379
6231
|
},
|
|
6380
6232
|
},
|
|
6381
6233
|
{
|
|
6382
6234
|
decimals: 18,
|
|
6383
6235
|
id: "0x942cb1ed80d3ff8028b3dd726e0e2a9671bc6202",
|
|
6384
6236
|
name: "Balancer B-80LDO-20WETH Gauge Deposit",
|
|
6385
|
-
releases: [
|
|
6237
|
+
releases: [],
|
|
6386
6238
|
symbol: "B-80LDO-20WETH-gauge",
|
|
6387
|
-
|
|
6388
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6389
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6390
|
-
underlyings: ["0x5a98fcbea516cf06857215779fd812ca3bef1b32", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6391
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6239
|
+
type: AssetType.PRIMITIVE,
|
|
6392
6240
|
priceFeed: {
|
|
6393
|
-
type: PriceFeedType.
|
|
6394
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348",
|
|
6241
|
+
type: PriceFeedType.NONE,
|
|
6395
6242
|
},
|
|
6396
6243
|
},
|
|
6397
6244
|
{
|
|
@@ -6409,17 +6256,11 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6409
6256
|
decimals: 18,
|
|
6410
6257
|
id: "0xaac98ee71d4f8a156b6abaa6844cdb7789d086ce",
|
|
6411
6258
|
name: "Balancer 60 MKR 40 WETH",
|
|
6412
|
-
releases: [
|
|
6259
|
+
releases: [],
|
|
6413
6260
|
symbol: "B-60MKR-40WETH",
|
|
6414
|
-
|
|
6415
|
-
poolId: "0xaac98ee71d4f8a156b6abaa6844cdb7789d086ce00020000000000000000001b",
|
|
6416
|
-
poolFactory: "0xa5bf2ddf098bb0ef6d120c98217dd6b141c74ee0",
|
|
6417
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6418
|
-
underlyings: ["0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6419
|
-
type: AssetType.BALANCER_POOL,
|
|
6261
|
+
type: AssetType.PRIMITIVE,
|
|
6420
6262
|
priceFeed: {
|
|
6421
|
-
type: PriceFeedType.
|
|
6422
|
-
address: "0x083b8f465bba2bb274e48387e3f9c56323341286",
|
|
6263
|
+
type: PriceFeedType.NONE,
|
|
6423
6264
|
},
|
|
6424
6265
|
},
|
|
6425
6266
|
{
|
|
@@ -6428,12 +6269,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6428
6269
|
name: "80NATION-20WETH",
|
|
6429
6270
|
releases: [],
|
|
6430
6271
|
symbol: "80NATION-20WETH",
|
|
6431
|
-
|
|
6432
|
-
poolId: "0x0bf37157d30dfe6f56757dcadff01aed83b08cd600020000000000000000019a",
|
|
6433
|
-
poolFactory: "0x8e9aa87e45e92bad84d5f8dd1bff34fb92637de9",
|
|
6434
|
-
poolType: BalancerPoolType.WEIGHTED,
|
|
6435
|
-
underlyings: ["0x333a4823466879eef910a04d473505da62142069", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6436
|
-
type: AssetType.BALANCER_POOL,
|
|
6272
|
+
type: AssetType.PRIMITIVE,
|
|
6437
6273
|
priceFeed: {
|
|
6438
6274
|
type: PriceFeedType.NONE,
|
|
6439
6275
|
},
|
|
@@ -6470,34 +6306,22 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6470
6306
|
decimals: 18,
|
|
6471
6307
|
id: "0x32296969ef14eb0c6d29669c550d4a0449130230",
|
|
6472
6308
|
name: "Balancer stETH Stable Pool",
|
|
6473
|
-
releases: [
|
|
6309
|
+
releases: [],
|
|
6474
6310
|
symbol: "B-stETH-STABLE",
|
|
6475
|
-
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
poolType: BalancerPoolType.META_STABLE,
|
|
6479
|
-
underlyings: ["0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6480
|
-
type: AssetType.BALANCER_POOL,
|
|
6481
|
-
priceFeed: {
|
|
6482
|
-
type: PriceFeedType.DERIVATIVE_BALANCER_V2_STABLE_POOL,
|
|
6483
|
-
address: "0x438254d66e2bc576819a76a0ecb11fe41195d39f",
|
|
6484
|
-
ipa: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
6311
|
+
type: AssetType.PRIMITIVE,
|
|
6312
|
+
priceFeed: {
|
|
6313
|
+
type: PriceFeedType.NONE,
|
|
6485
6314
|
},
|
|
6486
6315
|
},
|
|
6487
6316
|
{
|
|
6488
6317
|
decimals: 18,
|
|
6489
6318
|
id: "0xcd4722b7c24c29e0413bdcd9e51404b4539d14ae",
|
|
6490
6319
|
name: "Balancer B-stETH-STABLE Gauge Deposit",
|
|
6491
|
-
releases: [
|
|
6320
|
+
releases: [],
|
|
6492
6321
|
symbol: "B-stETH-STABLE-gauge",
|
|
6493
|
-
|
|
6494
|
-
poolType: BalancerPoolType.META_STABLE,
|
|
6495
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6496
|
-
underlyings: ["0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6497
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6322
|
+
type: AssetType.PRIMITIVE,
|
|
6498
6323
|
priceFeed: {
|
|
6499
|
-
type: PriceFeedType.
|
|
6500
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348",
|
|
6324
|
+
type: PriceFeedType.NONE,
|
|
6501
6325
|
},
|
|
6502
6326
|
},
|
|
6503
6327
|
{
|
|
@@ -6545,34 +6369,22 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
6545
6369
|
decimals: 18,
|
|
6546
6370
|
id: "0x1e19cf2d73a72ef1332c882f20534b6519be0276",
|
|
6547
6371
|
name: "Balancer rETH Stable Pool",
|
|
6548
|
-
releases: [
|
|
6372
|
+
releases: [],
|
|
6549
6373
|
symbol: "B-rETH-STABLE",
|
|
6550
|
-
|
|
6551
|
-
|
|
6552
|
-
|
|
6553
|
-
poolType: BalancerPoolType.META_STABLE,
|
|
6554
|
-
underlyings: ["0xae78736cd615f374d3085123a210448e74fc6393", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6555
|
-
type: AssetType.BALANCER_POOL,
|
|
6556
|
-
priceFeed: {
|
|
6557
|
-
type: PriceFeedType.DERIVATIVE_BALANCER_V2_STABLE_POOL,
|
|
6558
|
-
address: "0x438254d66e2bc576819a76a0ecb11fe41195d39f",
|
|
6559
|
-
ipa: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
6374
|
+
type: AssetType.PRIMITIVE,
|
|
6375
|
+
priceFeed: {
|
|
6376
|
+
type: PriceFeedType.NONE,
|
|
6560
6377
|
},
|
|
6561
6378
|
},
|
|
6562
6379
|
{
|
|
6563
6380
|
decimals: 18,
|
|
6564
6381
|
id: "0x79ef6103a513951a3b25743db509e267685726b7",
|
|
6565
6382
|
name: "Balancer B-rETH-STABLE Gauge Deposit",
|
|
6566
|
-
releases: [
|
|
6383
|
+
releases: [],
|
|
6567
6384
|
symbol: "B-rETH-STABLE-gauge",
|
|
6568
|
-
|
|
6569
|
-
poolType: BalancerPoolType.META_STABLE,
|
|
6570
|
-
gaugeFactory: "0x4e7bbd911cf1efa442bc1b2e9ea01ffe785412ec",
|
|
6571
|
-
underlyings: ["0xae78736cd615f374d3085123a210448e74fc6393", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"],
|
|
6572
|
-
type: AssetType.BALANCER_POOL_GAUGE,
|
|
6385
|
+
type: AssetType.PRIMITIVE,
|
|
6573
6386
|
priceFeed: {
|
|
6574
|
-
type: PriceFeedType.
|
|
6575
|
-
address: "0x312ce4bde393ff246b27c890b97ade37fedaa348",
|
|
6387
|
+
type: PriceFeedType.NONE,
|
|
6576
6388
|
},
|
|
6577
6389
|
},
|
|
6578
6390
|
{
|
|
@@ -7394,8 +7206,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
7394
7206
|
name: "ZeroLend PT Lombard LBTC 27MAR2025",
|
|
7395
7207
|
releases: [],
|
|
7396
7208
|
symbol: "z0PT-LBTC-27MAR2025",
|
|
7397
|
-
type: AssetType.
|
|
7398
|
-
underlying: "0xec5a52c685cc3ad79a6a347abace330d69e0b1ed",
|
|
7209
|
+
type: AssetType.PRIMITIVE,
|
|
7399
7210
|
priceFeed: {
|
|
7400
7211
|
type: PriceFeedType.NONE,
|
|
7401
7212
|
},
|
|
@@ -7406,8 +7217,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
7406
7217
|
name: "ZeroLend PT Ethena sUSDE 27MAR2025",
|
|
7407
7218
|
releases: [],
|
|
7408
7219
|
symbol: "z0PT-sUSDE-27MAR2025",
|
|
7409
|
-
type: AssetType.
|
|
7410
|
-
underlying: "0xe00bd3df25fb187d6abbb620b3dfd19839947b81",
|
|
7220
|
+
type: AssetType.PRIMITIVE,
|
|
7411
7221
|
priceFeed: {
|
|
7412
7222
|
type: PriceFeedType.NONE,
|
|
7413
7223
|
},
|
|
@@ -7418,8 +7228,7 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
7418
7228
|
name: "ZeroLend PT Ethena USDe 27MAR2025",
|
|
7419
7229
|
releases: [],
|
|
7420
7230
|
symbol: "z0PT-USDe-27MAR2025",
|
|
7421
|
-
type: AssetType.
|
|
7422
|
-
underlying: "0x8a47b431a7d947c6a3ed6e42d501803615a97eaa",
|
|
7231
|
+
type: AssetType.PRIMITIVE,
|
|
7423
7232
|
priceFeed: {
|
|
7424
7233
|
type: PriceFeedType.NONE,
|
|
7425
7234
|
},
|
|
@@ -7454,10 +7263,9 @@ export default defineAssetList(Network.ETHEREUM, [
|
|
|
7454
7263
|
symbol: "z0PT-corn-eBTC-27MAR2025",
|
|
7455
7264
|
name: "ZeroLend PT Corn ether.fi eBTC 27MAR2025",
|
|
7456
7265
|
id: "0xe2e3075c8962010e0d0b3a945c4671cc652ad5b7",
|
|
7457
|
-
type: AssetType.
|
|
7266
|
+
type: AssetType.PRIMITIVE,
|
|
7458
7267
|
releases: [],
|
|
7459
7268
|
decimals: 8,
|
|
7460
|
-
underlying: "0x44a7876ca99460ef3218bf08b5f52e2dbe199566",
|
|
7461
7269
|
priceFeed: {
|
|
7462
7270
|
type: PriceFeedType.NONE,
|
|
7463
7271
|
},
|