@enzymefinance/environment 6.3.80 → 6.3.82
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 +4 -4
- package/dist/cjs/adapters.js.map +1 -1
- package/dist/cjs/assets/ethereum.js +64 -64
- package/dist/cjs/assets/ethereum.js.map +1 -1
- package/dist/cjs/assets.js +0 -1
- package/dist/cjs/assets.js.map +1 -1
- package/dist/cjs/deployments/arbitrum.js +0 -8
- package/dist/cjs/deployments/arbitrum.js.map +1 -1
- package/dist/cjs/deployments/base.js +0 -8
- package/dist/cjs/deployments/base.js.map +1 -1
- package/dist/cjs/deployments/ethereum.js +2 -18
- package/dist/cjs/deployments/ethereum.js.map +1 -1
- package/dist/cjs/deployments/polygon.js +0 -8
- package/dist/cjs/deployments/polygon.js.map +1 -1
- package/dist/cjs/deployments/testnet.js +0 -6
- package/dist/cjs/deployments/testnet.js.map +1 -1
- package/dist/cjs/exchanges.js +0 -2
- package/dist/cjs/exchanges.js.map +1 -1
- package/dist/cjs/releases.js.map +1 -1
- package/dist/dts/assets.d.ts +1 -5
- package/dist/dts/assets.d.ts.map +1 -1
- package/dist/dts/contracts.d.ts +0 -14
- 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/exchanges.d.ts +0 -2
- package/dist/dts/exchanges.d.ts.map +1 -1
- package/dist/dts/releases.d.ts +0 -2
- package/dist/dts/releases.d.ts.map +1 -1
- package/dist/esm/adapters.js +4 -4
- package/dist/esm/adapters.js.map +1 -1
- package/dist/esm/assets/ethereum.js +64 -64
- package/dist/esm/assets/ethereum.js.map +1 -1
- package/dist/esm/assets.js +0 -1
- package/dist/esm/assets.js.map +1 -1
- package/dist/esm/deployments/arbitrum.js +0 -8
- package/dist/esm/deployments/arbitrum.js.map +1 -1
- package/dist/esm/deployments/base.js +0 -8
- package/dist/esm/deployments/base.js.map +1 -1
- package/dist/esm/deployments/ethereum.js +2 -18
- package/dist/esm/deployments/ethereum.js.map +1 -1
- package/dist/esm/deployments/polygon.js +0 -8
- package/dist/esm/deployments/polygon.js.map +1 -1
- package/dist/esm/deployments/testnet.js +0 -6
- package/dist/esm/deployments/testnet.js.map +1 -1
- package/dist/esm/exchanges.js +0 -2
- package/dist/esm/exchanges.js.map +1 -1
- package/dist/esm/releases.js.map +1 -1
- package/package.json +2 -2
- package/src/adapters.ts +4 -4
- package/src/assets/ethereum.ts +64 -64
- package/src/assets.ts +0 -6
- package/src/contracts.ts +0 -14
- package/src/deployments/arbitrum.ts +0 -8
- package/src/deployments/base.ts +0 -8
- package/src/deployments/ethereum.ts +0 -16
- package/src/deployments/polygon.ts +0 -8
- package/src/deployments/testnet.ts +0 -6
- package/src/exchanges.ts +0 -2
- package/src/releases.ts +0 -2
package/dist/cjs/adapters.js
CHANGED
|
@@ -188,7 +188,7 @@ const knownAdapterDefinitions = {
|
|
|
188
188
|
type: AdapterType.PARASWAP_V4
|
|
189
189
|
},
|
|
190
190
|
[AdapterType.PARASWAP_V5]: {
|
|
191
|
-
contractName:
|
|
191
|
+
contractName: undefined,
|
|
192
192
|
name: "ParaSwap V5",
|
|
193
193
|
type: AdapterType.PARASWAP_V5
|
|
194
194
|
},
|
|
@@ -213,7 +213,7 @@ const knownAdapterDefinitions = {
|
|
|
213
213
|
type: AdapterType.SWELL_STAKING
|
|
214
214
|
},
|
|
215
215
|
[AdapterType.SYNTHETIX]: {
|
|
216
|
-
contractName:
|
|
216
|
+
contractName: undefined,
|
|
217
217
|
name: "Synthetix",
|
|
218
218
|
type: AdapterType.SYNTHETIX
|
|
219
219
|
},
|
|
@@ -228,7 +228,7 @@ const knownAdapterDefinitions = {
|
|
|
228
228
|
type: AdapterType.TRACKED_ASSETS
|
|
229
229
|
},
|
|
230
230
|
[AdapterType.UNISWAP_V2]: {
|
|
231
|
-
contractName:
|
|
231
|
+
contractName: undefined,
|
|
232
232
|
name: "Uniswap V2 Swap",
|
|
233
233
|
type: AdapterType.UNISWAP_V2
|
|
234
234
|
},
|
|
@@ -248,7 +248,7 @@ const knownAdapterDefinitions = {
|
|
|
248
248
|
type: AdapterType.YEARN_VAULT_V2
|
|
249
249
|
},
|
|
250
250
|
[AdapterType.ZERO_EX_V2]: {
|
|
251
|
-
contractName:
|
|
251
|
+
contractName: undefined,
|
|
252
252
|
name: "0x V2",
|
|
253
253
|
type: AdapterType.ZERO_EX_V2
|
|
254
254
|
},
|
package/dist/cjs/adapters.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapters.js","names":["_viem","require","_utils","AdapterType","exports","isAdapterDefinition","adapter","isAddress","address","name","type","Object","values","map","value","toString","includes","isInContracts","contractName","contracts","getAdaptersForRelease","adapterDefinitions","reduce","acc","isAddressEqual","zeroAddress","toLowerCase","knownAdapterDefinitions","AAVE_V2","AAVE_V3","ALPHA_HOMORA_V1","undefined","AURA","BALANCER_V2","BEBOP_BLEND","COMPOUND_V2","COMPOUND_V3","CONVEX","CURVE_EXCHANGE","CURVE_LIQUIDITY","CURVE_LIQUIDITY_AAVE","CURVE_LIQUIDITY_EURS","CURVE_LIQUIDITY_SETH","CURVE_LIQUIDITY_STETH","ENZYME_V4_VAULT","ERC_4626","IDLE","KYBER_NETWORK","OLYMPUS_V2","ONE_INCH_V5","PARASWAP_V4","PARASWAP_V5","PARASWAP_V6","PENDLE_V2","POOLTOGETHER_V4","SWELL_STAKING","SYNTHETIX","THREE_ONE_THIRD","TRACKED_ASSETS","UNISWAP_V2","UNISWAP_V2_LIQUIDITY","UNISWAP_V3","YEARN_VAULT_V2","ZERO_EX_V2","ZERO_EX_V4","ZERO_EX_V4_PMM_KYC","ZERO_LEND_LRT_BTC_AAVE_V3","ZERO_LEND_RWA_STABLECOINS_AAVE_V3","unknownAdapterDefinitions","UNKNOWN"],"sources":["../../src/adapters.ts"],"sourcesContent":[null],"mappings":"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
|
|
1
|
+
{"version":3,"file":"adapters.js","names":["_viem","require","_utils","AdapterType","exports","isAdapterDefinition","adapter","isAddress","address","name","type","Object","values","map","value","toString","includes","isInContracts","contractName","contracts","getAdaptersForRelease","adapterDefinitions","reduce","acc","isAddressEqual","zeroAddress","toLowerCase","knownAdapterDefinitions","AAVE_V2","AAVE_V3","ALPHA_HOMORA_V1","undefined","AURA","BALANCER_V2","BEBOP_BLEND","COMPOUND_V2","COMPOUND_V3","CONVEX","CURVE_EXCHANGE","CURVE_LIQUIDITY","CURVE_LIQUIDITY_AAVE","CURVE_LIQUIDITY_EURS","CURVE_LIQUIDITY_SETH","CURVE_LIQUIDITY_STETH","ENZYME_V4_VAULT","ERC_4626","IDLE","KYBER_NETWORK","OLYMPUS_V2","ONE_INCH_V5","PARASWAP_V4","PARASWAP_V5","PARASWAP_V6","PENDLE_V2","POOLTOGETHER_V4","SWELL_STAKING","SYNTHETIX","THREE_ONE_THIRD","TRACKED_ASSETS","UNISWAP_V2","UNISWAP_V2_LIQUIDITY","UNISWAP_V3","YEARN_VAULT_V2","ZERO_EX_V2","ZERO_EX_V4","ZERO_EX_V4_PMM_KYC","ZERO_LEND_LRT_BTC_AAVE_V3","ZERO_LEND_RWA_STABLECOINS_AAVE_V3","unknownAdapterDefinitions","UNKNOWN"],"sources":["../../src/adapters.ts"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|
|
@@ -199,7 +199,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
199
199
|
name: "Synth sRUNE",
|
|
200
200
|
releases: [],
|
|
201
201
|
symbol: "sRUNE",
|
|
202
|
-
type: _assets.AssetType.
|
|
202
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
203
203
|
priceFeed: {
|
|
204
204
|
type: _priceFeeds.PriceFeedType.NONE
|
|
205
205
|
}
|
|
@@ -392,7 +392,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
392
392
|
name: "Synth sCHF",
|
|
393
393
|
releases: [],
|
|
394
394
|
symbol: "sCHF",
|
|
395
|
-
type: _assets.AssetType.
|
|
395
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
396
396
|
priceFeed: {
|
|
397
397
|
type: _priceFeeds.PriceFeedType.NONE
|
|
398
398
|
}
|
|
@@ -402,7 +402,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
402
402
|
name: "Synth iREN",
|
|
403
403
|
releases: [],
|
|
404
404
|
symbol: "iREN",
|
|
405
|
-
type: _assets.AssetType.
|
|
405
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
406
406
|
priceFeed: {
|
|
407
407
|
type: _priceFeeds.PriceFeedType.NONE
|
|
408
408
|
}
|
|
@@ -469,7 +469,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
469
469
|
name: "Synth iDEFI",
|
|
470
470
|
releases: [],
|
|
471
471
|
symbol: "iDEFI",
|
|
472
|
-
type: _assets.AssetType.
|
|
472
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
473
473
|
priceFeed: {
|
|
474
474
|
type: _priceFeeds.PriceFeedType.NONE
|
|
475
475
|
}
|
|
@@ -502,7 +502,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
502
502
|
name: "Synth sDOT",
|
|
503
503
|
releases: [],
|
|
504
504
|
symbol: "sDOT",
|
|
505
|
-
type: _assets.AssetType.
|
|
505
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
506
506
|
priceFeed: {
|
|
507
507
|
type: _priceFeeds.PriceFeedType.NONE
|
|
508
508
|
}
|
|
@@ -512,7 +512,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
512
512
|
name: "Synth iAAVE",
|
|
513
513
|
releases: [],
|
|
514
514
|
symbol: "iAAVE",
|
|
515
|
-
type: _assets.AssetType.
|
|
515
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
516
516
|
priceFeed: {
|
|
517
517
|
type: _priceFeeds.PriceFeedType.NONE
|
|
518
518
|
}
|
|
@@ -770,7 +770,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
770
770
|
name: "Synth sETC",
|
|
771
771
|
releases: [],
|
|
772
772
|
symbol: "sETC",
|
|
773
|
-
type: _assets.AssetType.
|
|
773
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
774
774
|
priceFeed: {
|
|
775
775
|
type: _priceFeeds.PriceFeedType.NONE
|
|
776
776
|
}
|
|
@@ -804,7 +804,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
804
804
|
name: "Synth sFTSE",
|
|
805
805
|
releases: [],
|
|
806
806
|
symbol: "sFTSE",
|
|
807
|
-
type: _assets.AssetType.
|
|
807
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
808
808
|
priceFeed: {
|
|
809
809
|
type: _priceFeeds.PriceFeedType.NONE
|
|
810
810
|
}
|
|
@@ -846,7 +846,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
846
846
|
name: "Synth sXAU",
|
|
847
847
|
releases: [],
|
|
848
848
|
symbol: "sXAU",
|
|
849
|
-
type: _assets.AssetType.
|
|
849
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
850
850
|
priceFeed: {
|
|
851
851
|
type: _priceFeeds.PriceFeedType.NONE
|
|
852
852
|
}
|
|
@@ -868,7 +868,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
868
868
|
name: "Synth iXRP",
|
|
869
869
|
releases: [],
|
|
870
870
|
symbol: "iXRP",
|
|
871
|
-
type: _assets.AssetType.
|
|
871
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
872
872
|
priceFeed: {
|
|
873
873
|
type: _priceFeeds.PriceFeedType.NONE
|
|
874
874
|
}
|
|
@@ -957,7 +957,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
957
957
|
name: "Synth iLINK",
|
|
958
958
|
releases: [],
|
|
959
959
|
symbol: "iLINK",
|
|
960
|
-
type: _assets.AssetType.
|
|
960
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
961
961
|
priceFeed: {
|
|
962
962
|
type: _priceFeeds.PriceFeedType.NONE
|
|
963
963
|
}
|
|
@@ -967,7 +967,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
967
967
|
name: "Synth sXTZ",
|
|
968
968
|
releases: [],
|
|
969
969
|
symbol: "sXTZ",
|
|
970
|
-
type: _assets.AssetType.
|
|
970
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
971
971
|
priceFeed: {
|
|
972
972
|
type: _priceFeeds.PriceFeedType.NONE
|
|
973
973
|
}
|
|
@@ -1011,7 +1011,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1011
1011
|
name: "Synth sUNI",
|
|
1012
1012
|
releases: [],
|
|
1013
1013
|
symbol: "sUNI",
|
|
1014
|
-
type: _assets.AssetType.
|
|
1014
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1015
1015
|
priceFeed: {
|
|
1016
1016
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1017
1017
|
}
|
|
@@ -1092,7 +1092,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1092
1092
|
name: "Synth iCEX",
|
|
1093
1093
|
releases: [],
|
|
1094
1094
|
symbol: "iCEX",
|
|
1095
|
-
type: _assets.AssetType.
|
|
1095
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1096
1096
|
priceFeed: {
|
|
1097
1097
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1098
1098
|
}
|
|
@@ -1202,7 +1202,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1202
1202
|
name: "Synth iUNI",
|
|
1203
1203
|
releases: [],
|
|
1204
1204
|
symbol: "iUNI",
|
|
1205
|
-
type: _assets.AssetType.
|
|
1205
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1206
1206
|
priceFeed: {
|
|
1207
1207
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1208
1208
|
}
|
|
@@ -1212,7 +1212,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1212
1212
|
name: "Synth sBCH",
|
|
1213
1213
|
releases: [],
|
|
1214
1214
|
symbol: "sBCH",
|
|
1215
|
-
type: _assets.AssetType.
|
|
1215
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1216
1216
|
priceFeed: {
|
|
1217
1217
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1218
1218
|
}
|
|
@@ -1545,7 +1545,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1545
1545
|
name: "Synth iDOT",
|
|
1546
1546
|
releases: [],
|
|
1547
1547
|
symbol: "iDOT",
|
|
1548
|
-
type: _assets.AssetType.
|
|
1548
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1549
1549
|
priceFeed: {
|
|
1550
1550
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1551
1551
|
}
|
|
@@ -1617,7 +1617,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1617
1617
|
name: "Synth iXMR",
|
|
1618
1618
|
releases: [],
|
|
1619
1619
|
symbol: "iXMR",
|
|
1620
|
-
type: _assets.AssetType.
|
|
1620
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1621
1621
|
priceFeed: {
|
|
1622
1622
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1623
1623
|
}
|
|
@@ -1829,7 +1829,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1829
1829
|
name: "Synth sXMR",
|
|
1830
1830
|
releases: [],
|
|
1831
1831
|
symbol: "sXMR",
|
|
1832
|
-
type: _assets.AssetType.
|
|
1832
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1833
1833
|
priceFeed: {
|
|
1834
1834
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1835
1835
|
}
|
|
@@ -1871,7 +1871,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1871
1871
|
name: "Synth iYFI",
|
|
1872
1872
|
releases: [],
|
|
1873
1873
|
symbol: "iYFI",
|
|
1874
|
-
type: _assets.AssetType.
|
|
1874
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1875
1875
|
priceFeed: {
|
|
1876
1876
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1877
1877
|
}
|
|
@@ -1900,7 +1900,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1900
1900
|
name: "Synth sNFLX",
|
|
1901
1901
|
releases: [],
|
|
1902
1902
|
symbol: "sNFLX",
|
|
1903
|
-
type: _assets.AssetType.
|
|
1903
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1904
1904
|
priceFeed: {
|
|
1905
1905
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1906
1906
|
}
|
|
@@ -1969,7 +1969,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
1969
1969
|
name: "Synth sETH",
|
|
1970
1970
|
releases: [],
|
|
1971
1971
|
symbol: "sETH",
|
|
1972
|
-
type: _assets.AssetType.
|
|
1972
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
1973
1973
|
priceFeed: {
|
|
1974
1974
|
type: _priceFeeds.PriceFeedType.NONE
|
|
1975
1975
|
}
|
|
@@ -2025,7 +2025,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2025
2025
|
name: "Synth sBNB",
|
|
2026
2026
|
releases: [],
|
|
2027
2027
|
symbol: "sBNB",
|
|
2028
|
-
type: _assets.AssetType.
|
|
2028
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2029
2029
|
priceFeed: {
|
|
2030
2030
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2031
2031
|
}
|
|
@@ -2035,7 +2035,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2035
2035
|
name: "Synth iCOMP",
|
|
2036
2036
|
releases: [],
|
|
2037
2037
|
symbol: "iCOMP",
|
|
2038
|
-
type: _assets.AssetType.
|
|
2038
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2039
2039
|
priceFeed: {
|
|
2040
2040
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2041
2041
|
}
|
|
@@ -2118,7 +2118,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2118
2118
|
name: "Synth sXAG",
|
|
2119
2119
|
releases: [],
|
|
2120
2120
|
symbol: "sXAG",
|
|
2121
|
-
type: _assets.AssetType.
|
|
2121
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2122
2122
|
priceFeed: {
|
|
2123
2123
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2124
2124
|
}
|
|
@@ -2215,7 +2215,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2215
2215
|
name: "Synth sOIL",
|
|
2216
2216
|
releases: [],
|
|
2217
2217
|
symbol: "sOIL",
|
|
2218
|
-
type: _assets.AssetType.
|
|
2218
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2219
2219
|
priceFeed: {
|
|
2220
2220
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2221
2221
|
}
|
|
@@ -2316,7 +2316,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2316
2316
|
name: "Synth sAAPL",
|
|
2317
2317
|
releases: [],
|
|
2318
2318
|
symbol: "sAAPL",
|
|
2319
|
-
type: _assets.AssetType.
|
|
2319
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2320
2320
|
priceFeed: {
|
|
2321
2321
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2322
2322
|
}
|
|
@@ -2326,7 +2326,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2326
2326
|
name: "Synth sNIKKEI",
|
|
2327
2327
|
releases: [],
|
|
2328
2328
|
symbol: "sNIKKEI",
|
|
2329
|
-
type: _assets.AssetType.
|
|
2329
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2330
2330
|
priceFeed: {
|
|
2331
2331
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2332
2332
|
}
|
|
@@ -2346,7 +2346,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2346
2346
|
name: "Synth iLTC",
|
|
2347
2347
|
releases: [],
|
|
2348
2348
|
symbol: "iLTC",
|
|
2349
|
-
type: _assets.AssetType.
|
|
2349
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2350
2350
|
priceFeed: {
|
|
2351
2351
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2352
2352
|
}
|
|
@@ -2573,7 +2573,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2573
2573
|
name: "Synth sEOS",
|
|
2574
2574
|
releases: [],
|
|
2575
2575
|
symbol: "sEOS",
|
|
2576
|
-
type: _assets.AssetType.
|
|
2576
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2577
2577
|
priceFeed: {
|
|
2578
2578
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2579
2579
|
}
|
|
@@ -2615,7 +2615,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2615
2615
|
name: "Synth iADA",
|
|
2616
2616
|
releases: [],
|
|
2617
2617
|
symbol: "iADA",
|
|
2618
|
-
type: _assets.AssetType.
|
|
2618
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2619
2619
|
priceFeed: {
|
|
2620
2620
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2621
2621
|
}
|
|
@@ -2706,7 +2706,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2706
2706
|
name: "Synth iXTZ",
|
|
2707
2707
|
releases: [],
|
|
2708
2708
|
symbol: "iXTZ",
|
|
2709
|
-
type: _assets.AssetType.
|
|
2709
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2710
2710
|
priceFeed: {
|
|
2711
2711
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2712
2712
|
}
|
|
@@ -2780,7 +2780,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2780
2780
|
name: "Synth sTSLA",
|
|
2781
2781
|
releases: [],
|
|
2782
2782
|
symbol: "sTSLA",
|
|
2783
|
-
type: _assets.AssetType.
|
|
2783
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2784
2784
|
priceFeed: {
|
|
2785
2785
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2786
2786
|
}
|
|
@@ -2865,7 +2865,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2865
2865
|
name: "Synth sGBP",
|
|
2866
2866
|
releases: [],
|
|
2867
2867
|
symbol: "sGBP",
|
|
2868
|
-
type: _assets.AssetType.
|
|
2868
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2869
2869
|
priceFeed: {
|
|
2870
2870
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2871
2871
|
}
|
|
@@ -2887,7 +2887,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2887
2887
|
name: "Synth sYFI",
|
|
2888
2888
|
releases: [],
|
|
2889
2889
|
symbol: "sYFI",
|
|
2890
|
-
type: _assets.AssetType.
|
|
2890
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2891
2891
|
priceFeed: {
|
|
2892
2892
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2893
2893
|
}
|
|
@@ -2946,7 +2946,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
2946
2946
|
name: "Synth sAMZN",
|
|
2947
2947
|
releases: [],
|
|
2948
2948
|
symbol: "sAMZN",
|
|
2949
|
-
type: _assets.AssetType.
|
|
2949
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
2950
2950
|
priceFeed: {
|
|
2951
2951
|
type: _priceFeeds.PriceFeedType.NONE
|
|
2952
2952
|
}
|
|
@@ -3182,7 +3182,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
3182
3182
|
name: "Synth sXRP",
|
|
3183
3183
|
releases: [],
|
|
3184
3184
|
symbol: "sXRP",
|
|
3185
|
-
type: _assets.AssetType.
|
|
3185
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
3186
3186
|
priceFeed: {
|
|
3187
3187
|
type: _priceFeeds.PriceFeedType.NONE
|
|
3188
3188
|
}
|
|
@@ -3268,7 +3268,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
3268
3268
|
name: "Synth iOIL",
|
|
3269
3269
|
releases: [],
|
|
3270
3270
|
symbol: "iOIL",
|
|
3271
|
-
type: _assets.AssetType.
|
|
3271
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
3272
3272
|
priceFeed: {
|
|
3273
3273
|
type: _priceFeeds.PriceFeedType.NONE
|
|
3274
3274
|
}
|
|
@@ -3326,7 +3326,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
3326
3326
|
name: "Synth iETH",
|
|
3327
3327
|
releases: [],
|
|
3328
3328
|
symbol: "iETH",
|
|
3329
|
-
type: _assets.AssetType.
|
|
3329
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
3330
3330
|
priceFeed: {
|
|
3331
3331
|
type: _priceFeeds.PriceFeedType.NONE
|
|
3332
3332
|
}
|
|
@@ -3473,7 +3473,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
3473
3473
|
name: "Synth iBNB",
|
|
3474
3474
|
releases: [],
|
|
3475
3475
|
symbol: "iBNB",
|
|
3476
|
-
type: _assets.AssetType.
|
|
3476
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
3477
3477
|
priceFeed: {
|
|
3478
3478
|
type: _priceFeeds.PriceFeedType.NONE
|
|
3479
3479
|
}
|
|
@@ -3754,7 +3754,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
3754
3754
|
name: "Synth sLINK",
|
|
3755
3755
|
releases: [],
|
|
3756
3756
|
symbol: "sLINK",
|
|
3757
|
-
type: _assets.AssetType.
|
|
3757
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
3758
3758
|
priceFeed: {
|
|
3759
3759
|
type: _priceFeeds.PriceFeedType.NONE
|
|
3760
3760
|
}
|
|
@@ -3895,7 +3895,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
3895
3895
|
name: "Synth sLTC",
|
|
3896
3896
|
releases: [],
|
|
3897
3897
|
symbol: "sLTC",
|
|
3898
|
-
type: _assets.AssetType.
|
|
3898
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
3899
3899
|
priceFeed: {
|
|
3900
3900
|
type: _priceFeeds.PriceFeedType.NONE
|
|
3901
3901
|
}
|
|
@@ -3965,7 +3965,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
3965
3965
|
name: "Synth iTRX",
|
|
3966
3966
|
releases: [],
|
|
3967
3967
|
symbol: "iTRX",
|
|
3968
|
-
type: _assets.AssetType.
|
|
3968
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
3969
3969
|
priceFeed: {
|
|
3970
3970
|
type: _priceFeeds.PriceFeedType.NONE
|
|
3971
3971
|
}
|
|
@@ -3985,7 +3985,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
3985
3985
|
name: "Synth sGOOG",
|
|
3986
3986
|
releases: [],
|
|
3987
3987
|
symbol: "sGOOG",
|
|
3988
|
-
type: _assets.AssetType.
|
|
3988
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
3989
3989
|
priceFeed: {
|
|
3990
3990
|
type: _priceFeeds.PriceFeedType.NONE
|
|
3991
3991
|
}
|
|
@@ -4061,7 +4061,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4061
4061
|
name: "Synth iDASH",
|
|
4062
4062
|
releases: [],
|
|
4063
4063
|
symbol: "iDASH",
|
|
4064
|
-
type: _assets.AssetType.
|
|
4064
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4065
4065
|
priceFeed: {
|
|
4066
4066
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4067
4067
|
}
|
|
@@ -4104,7 +4104,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4104
4104
|
name: "Synth s1INCH",
|
|
4105
4105
|
releases: [],
|
|
4106
4106
|
symbol: "s1INCH",
|
|
4107
|
-
type: _assets.AssetType.
|
|
4107
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4108
4108
|
priceFeed: {
|
|
4109
4109
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4110
4110
|
}
|
|
@@ -4215,7 +4215,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4215
4215
|
name: "Synth sAAVE",
|
|
4216
4216
|
releases: [],
|
|
4217
4217
|
symbol: "sAAVE",
|
|
4218
|
-
type: _assets.AssetType.
|
|
4218
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4219
4219
|
priceFeed: {
|
|
4220
4220
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4221
4221
|
}
|
|
@@ -4225,7 +4225,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4225
4225
|
name: "Synth sREN",
|
|
4226
4226
|
releases: [],
|
|
4227
4227
|
symbol: "sREN",
|
|
4228
|
-
type: _assets.AssetType.
|
|
4228
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4229
4229
|
priceFeed: {
|
|
4230
4230
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4231
4231
|
}
|
|
@@ -4257,7 +4257,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4257
4257
|
name: "Synth sCRV",
|
|
4258
4258
|
releases: [],
|
|
4259
4259
|
symbol: "sCRV",
|
|
4260
|
-
type: _assets.AssetType.
|
|
4260
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4261
4261
|
priceFeed: {
|
|
4262
4262
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4263
4263
|
}
|
|
@@ -4306,7 +4306,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4306
4306
|
name: "Synth iETC",
|
|
4307
4307
|
releases: [],
|
|
4308
4308
|
symbol: "iETC",
|
|
4309
|
-
type: _assets.AssetType.
|
|
4309
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4310
4310
|
priceFeed: {
|
|
4311
4311
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4312
4312
|
}
|
|
@@ -4328,7 +4328,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4328
4328
|
name: "Synth iBTC",
|
|
4329
4329
|
releases: [],
|
|
4330
4330
|
symbol: "iBTC",
|
|
4331
|
-
type: _assets.AssetType.
|
|
4331
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4332
4332
|
priceFeed: {
|
|
4333
4333
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4334
4334
|
}
|
|
@@ -4373,7 +4373,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4373
4373
|
name: "Synth sEUR",
|
|
4374
4374
|
releases: [],
|
|
4375
4375
|
symbol: "sEUR",
|
|
4376
|
-
type: _assets.AssetType.
|
|
4376
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4377
4377
|
priceFeed: {
|
|
4378
4378
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4379
4379
|
}
|
|
@@ -4581,7 +4581,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4581
4581
|
name: "Synth sDEFI",
|
|
4582
4582
|
releases: [],
|
|
4583
4583
|
symbol: "sDEFI",
|
|
4584
|
-
type: _assets.AssetType.
|
|
4584
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4585
4585
|
priceFeed: {
|
|
4586
4586
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4587
4587
|
}
|
|
@@ -4630,7 +4630,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4630
4630
|
name: "Synth sADA",
|
|
4631
4631
|
releases: [],
|
|
4632
4632
|
symbol: "sADA",
|
|
4633
|
-
type: _assets.AssetType.
|
|
4633
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4634
4634
|
priceFeed: {
|
|
4635
4635
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4636
4636
|
}
|
|
@@ -4674,7 +4674,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4674
4674
|
name: "Synth sCEX",
|
|
4675
4675
|
releases: [],
|
|
4676
4676
|
symbol: "sCEX",
|
|
4677
|
-
type: _assets.AssetType.
|
|
4677
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4678
4678
|
priceFeed: {
|
|
4679
4679
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4680
4680
|
}
|
|
@@ -4684,7 +4684,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4684
4684
|
name: "Synth sCOMP",
|
|
4685
4685
|
releases: [],
|
|
4686
4686
|
symbol: "sCOMP",
|
|
4687
|
-
type: _assets.AssetType.
|
|
4687
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4688
4688
|
priceFeed: {
|
|
4689
4689
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4690
4690
|
}
|
|
@@ -4773,7 +4773,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4773
4773
|
name: "Synth sTRX",
|
|
4774
4774
|
releases: [],
|
|
4775
4775
|
symbol: "sTRX",
|
|
4776
|
-
type: _assets.AssetType.
|
|
4776
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4777
4777
|
priceFeed: {
|
|
4778
4778
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4779
4779
|
}
|
|
@@ -4805,7 +4805,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4805
4805
|
name: "Synth sAUD",
|
|
4806
4806
|
releases: [],
|
|
4807
4807
|
symbol: "sAUD",
|
|
4808
|
-
type: _assets.AssetType.
|
|
4808
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4809
4809
|
priceFeed: {
|
|
4810
4810
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4811
4811
|
}
|
|
@@ -4826,7 +4826,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4826
4826
|
name: "Synth iEOS",
|
|
4827
4827
|
releases: [],
|
|
4828
4828
|
symbol: "iEOS",
|
|
4829
|
-
type: _assets.AssetType.
|
|
4829
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4830
4830
|
priceFeed: {
|
|
4831
4831
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4832
4832
|
}
|
|
@@ -4836,7 +4836,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4836
4836
|
name: "Synth sFB",
|
|
4837
4837
|
releases: [],
|
|
4838
4838
|
symbol: "sFB",
|
|
4839
|
-
type: _assets.AssetType.
|
|
4839
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4840
4840
|
priceFeed: {
|
|
4841
4841
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4842
4842
|
}
|
|
@@ -4881,7 +4881,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4881
4881
|
name: "Synth sJPY",
|
|
4882
4882
|
releases: [],
|
|
4883
4883
|
symbol: "sJPY",
|
|
4884
|
-
type: _assets.AssetType.
|
|
4884
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4885
4885
|
priceFeed: {
|
|
4886
4886
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4887
4887
|
}
|
|
@@ -4907,7 +4907,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
4907
4907
|
name: "Synth iBCH",
|
|
4908
4908
|
releases: [],
|
|
4909
4909
|
symbol: "iBCH",
|
|
4910
|
-
type: _assets.AssetType.
|
|
4910
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
4911
4911
|
priceFeed: {
|
|
4912
4912
|
type: _priceFeeds.PriceFeedType.NONE
|
|
4913
4913
|
}
|
|
@@ -5038,7 +5038,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
5038
5038
|
name: "Synth sBTC",
|
|
5039
5039
|
releases: [],
|
|
5040
5040
|
symbol: "sBTC",
|
|
5041
|
-
type: _assets.AssetType.
|
|
5041
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
5042
5042
|
priceFeed: {
|
|
5043
5043
|
type: _priceFeeds.PriceFeedType.NONE
|
|
5044
5044
|
}
|
|
@@ -5048,7 +5048,7 @@ var _default = exports.default = /*#__PURE__*/(0, _assets.defineAssetList)(_netw
|
|
|
5048
5048
|
name: "Synth sDASH",
|
|
5049
5049
|
releases: [],
|
|
5050
5050
|
symbol: "sDASH",
|
|
5051
|
-
type: _assets.AssetType.
|
|
5051
|
+
type: _assets.AssetType.PRIMITIVE,
|
|
5052
5052
|
priceFeed: {
|
|
5053
5053
|
type: _priceFeeds.PriceFeedType.NONE
|
|
5054
5054
|
}
|