@alphafi/alphafi-sdk 0.0.107 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +378 -130
- package/dist/cjs/core/index.d.ts +159 -0
- package/dist/cjs/core/index.d.ts.map +1 -0
- package/dist/cjs/core/index.js +253 -0
- package/dist/cjs/core/index.js.map +1 -0
- package/dist/cjs/core/types.d.ts +135 -0
- package/dist/cjs/core/types.d.ts.map +1 -0
- package/dist/cjs/core/types.js +7 -0
- package/dist/cjs/core/types.js.map +1 -0
- package/dist/cjs/index.d.ts +7 -46
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js +8 -166
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/models/blockchain.d.ts +45 -0
- package/dist/cjs/models/blockchain.d.ts.map +1 -0
- package/dist/cjs/models/blockchain.js +237 -0
- package/dist/cjs/models/blockchain.js.map +1 -0
- package/dist/cjs/models/coinInfoProvider.d.ts +23 -0
- package/dist/cjs/models/coinInfoProvider.d.ts.map +1 -0
- package/dist/cjs/models/coinInfoProvider.js +87 -0
- package/dist/cjs/models/coinInfoProvider.js.map +1 -0
- package/dist/cjs/models/index.d.ts +3 -0
- package/dist/cjs/models/index.d.ts.map +1 -0
- package/dist/cjs/models/index.js +8 -0
- package/dist/cjs/models/index.js.map +1 -0
- package/dist/cjs/models/portfolio.d.ts +21 -0
- package/dist/cjs/models/portfolio.d.ts.map +1 -0
- package/dist/cjs/models/portfolio.js +173 -0
- package/dist/cjs/models/portfolio.js.map +1 -0
- package/dist/cjs/models/protocol.d.ts +25 -0
- package/dist/cjs/models/protocol.d.ts.map +1 -0
- package/dist/cjs/models/protocol.js +141 -0
- package/dist/cjs/models/protocol.js.map +1 -0
- package/dist/cjs/models/strategyContext.d.ts +150 -0
- package/dist/cjs/models/strategyContext.d.ts.map +1 -0
- package/dist/cjs/models/strategyContext.js +829 -0
- package/dist/cjs/models/strategyContext.js.map +1 -0
- package/dist/cjs/models/swap.d.ts +11 -0
- package/dist/cjs/models/swap.d.ts.map +1 -0
- package/dist/cjs/models/swap.js +60 -0
- package/dist/cjs/models/swap.js.map +1 -0
- package/dist/cjs/models/types.d.ts +145 -0
- package/dist/cjs/models/types.d.ts.map +1 -0
- package/dist/cjs/models/types.js.map +1 -0
- package/dist/cjs/strategies/alphaVault.d.ts +279 -0
- package/dist/cjs/strategies/alphaVault.d.ts.map +1 -0
- package/dist/cjs/strategies/alphaVault.js +891 -0
- package/dist/cjs/strategies/alphaVault.js.map +1 -0
- package/dist/cjs/strategies/autobalanceLp.d.ts +197 -0
- package/dist/cjs/strategies/autobalanceLp.d.ts.map +1 -0
- package/dist/cjs/strategies/autobalanceLp.js +567 -0
- package/dist/cjs/strategies/autobalanceLp.js.map +1 -0
- package/dist/cjs/strategies/fungibleLending.d.ts +98 -0
- package/dist/cjs/strategies/fungibleLending.d.ts.map +1 -0
- package/dist/cjs/strategies/fungibleLending.js +204 -0
- package/dist/cjs/strategies/fungibleLending.js.map +1 -0
- package/dist/cjs/strategies/fungibleLp.d.ts +165 -0
- package/dist/cjs/strategies/fungibleLp.d.ts.map +1 -0
- package/dist/cjs/strategies/fungibleLp.js +398 -0
- package/dist/cjs/strategies/fungibleLp.js.map +1 -0
- package/dist/cjs/strategies/index.d.ts +26 -0
- package/dist/cjs/strategies/index.d.ts.map +1 -0
- package/dist/cjs/strategies/index.js +24 -0
- package/dist/cjs/strategies/index.js.map +1 -0
- package/dist/cjs/strategies/lending.d.ts +155 -0
- package/dist/cjs/strategies/lending.d.ts.map +1 -0
- package/dist/cjs/strategies/lending.js +828 -0
- package/dist/cjs/strategies/lending.js.map +1 -0
- package/dist/cjs/strategies/looping.d.ts +176 -0
- package/dist/cjs/strategies/looping.d.ts.map +1 -0
- package/dist/cjs/strategies/looping.js +978 -0
- package/dist/cjs/strategies/looping.js.map +1 -0
- package/dist/cjs/strategies/lp.d.ts +207 -0
- package/dist/cjs/strategies/lp.d.ts.map +1 -0
- package/dist/cjs/strategies/lp.js +1452 -0
- package/dist/cjs/strategies/lp.js.map +1 -0
- package/dist/cjs/strategies/lyf.d.ts +207 -0
- package/dist/cjs/strategies/lyf.d.ts.map +1 -0
- package/dist/cjs/strategies/lyf.js +649 -0
- package/dist/cjs/strategies/lyf.js.map +1 -0
- package/dist/cjs/strategies/singleAssetLooping.d.ts +152 -0
- package/dist/cjs/strategies/singleAssetLooping.d.ts.map +1 -0
- package/dist/cjs/strategies/singleAssetLooping.js +631 -0
- package/dist/cjs/strategies/singleAssetLooping.js.map +1 -0
- package/dist/cjs/strategies/slushLending.d.ts +131 -0
- package/dist/cjs/strategies/slushLending.d.ts.map +1 -0
- package/dist/cjs/strategies/slushLending.js +392 -0
- package/dist/cjs/strategies/slushLending.js.map +1 -0
- package/dist/cjs/strategies/strategy.d.ts +198 -0
- package/dist/cjs/strategies/strategy.d.ts.map +1 -0
- package/dist/cjs/strategies/strategy.js +196 -0
- package/dist/cjs/strategies/strategy.js.map +1 -0
- package/dist/cjs/utils/cache.d.ts +98 -0
- package/dist/cjs/utils/cache.d.ts.map +1 -0
- package/dist/cjs/utils/cache.js +203 -0
- package/dist/cjs/utils/cache.js.map +1 -0
- package/dist/cjs/utils/constants.d.ts +236 -2
- package/dist/cjs/utils/constants.d.ts.map +1 -1
- package/dist/cjs/utils/constants.js +244 -107
- package/dist/cjs/utils/constants.js.map +1 -1
- package/dist/cjs/utils/poolMap.d.ts +20 -0
- package/dist/cjs/utils/poolMap.d.ts.map +1 -0
- package/dist/cjs/utils/poolMap.js +237 -0
- package/dist/cjs/utils/poolMap.js.map +1 -0
- package/dist/cjs/utils/testing-pools.d.ts +3 -0
- package/dist/cjs/utils/testing-pools.d.ts.map +1 -0
- package/dist/cjs/utils/testing-pools.js +27 -0
- package/dist/cjs/utils/testing-pools.js.map +1 -0
- package/dist/esm/core/index.d.ts +159 -0
- package/dist/esm/core/index.d.ts.map +1 -0
- package/dist/esm/core/index.js +249 -0
- package/dist/esm/core/index.js.map +1 -0
- package/dist/esm/core/types.d.ts +135 -0
- package/dist/esm/core/types.d.ts.map +1 -0
- package/dist/esm/core/types.js +6 -0
- package/dist/esm/core/types.js.map +1 -0
- package/dist/esm/index.d.ts +7 -46
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +8 -49
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/models/blockchain.d.ts +45 -0
- package/dist/esm/models/blockchain.d.ts.map +1 -0
- package/dist/esm/models/blockchain.js +233 -0
- package/dist/esm/models/blockchain.js.map +1 -0
- package/dist/esm/models/coinInfoProvider.d.ts +23 -0
- package/dist/esm/models/coinInfoProvider.d.ts.map +1 -0
- package/dist/esm/models/coinInfoProvider.js +83 -0
- package/dist/esm/models/coinInfoProvider.js.map +1 -0
- package/dist/esm/models/index.d.ts +3 -0
- package/dist/esm/models/index.d.ts.map +1 -0
- package/dist/esm/models/index.js +3 -0
- package/dist/esm/models/index.js.map +1 -0
- package/dist/esm/models/portfolio.d.ts +21 -0
- package/dist/esm/models/portfolio.d.ts.map +1 -0
- package/dist/esm/models/portfolio.js +169 -0
- package/dist/esm/models/portfolio.js.map +1 -0
- package/dist/esm/models/protocol.d.ts +25 -0
- package/dist/esm/models/protocol.d.ts.map +1 -0
- package/dist/esm/models/protocol.js +137 -0
- package/dist/esm/models/protocol.js.map +1 -0
- package/dist/esm/models/strategyContext.d.ts +150 -0
- package/dist/esm/models/strategyContext.d.ts.map +1 -0
- package/dist/esm/models/strategyContext.js +825 -0
- package/dist/esm/models/strategyContext.js.map +1 -0
- package/dist/esm/models/swap.d.ts +11 -0
- package/dist/esm/models/swap.d.ts.map +1 -0
- package/dist/esm/models/swap.js +58 -0
- package/dist/esm/models/swap.js.map +1 -0
- package/dist/esm/models/types.d.ts +145 -0
- package/dist/esm/models/types.d.ts.map +1 -0
- package/dist/esm/models/types.js.map +1 -0
- package/dist/esm/strategies/alphaVault.d.ts +279 -0
- package/dist/esm/strategies/alphaVault.d.ts.map +1 -0
- package/dist/esm/strategies/alphaVault.js +887 -0
- package/dist/esm/strategies/alphaVault.js.map +1 -0
- package/dist/esm/strategies/autobalanceLp.d.ts +197 -0
- package/dist/esm/strategies/autobalanceLp.d.ts.map +1 -0
- package/dist/esm/strategies/autobalanceLp.js +562 -0
- package/dist/esm/strategies/autobalanceLp.js.map +1 -0
- package/dist/esm/strategies/fungibleLending.d.ts +98 -0
- package/dist/esm/strategies/fungibleLending.d.ts.map +1 -0
- package/dist/esm/strategies/fungibleLending.js +200 -0
- package/dist/esm/strategies/fungibleLending.js.map +1 -0
- package/dist/esm/strategies/fungibleLp.d.ts +165 -0
- package/dist/esm/strategies/fungibleLp.d.ts.map +1 -0
- package/dist/esm/strategies/fungibleLp.js +393 -0
- package/dist/esm/strategies/fungibleLp.js.map +1 -0
- package/dist/esm/strategies/index.d.ts +26 -0
- package/dist/esm/strategies/index.d.ts.map +1 -0
- package/dist/esm/strategies/index.js +18 -0
- package/dist/esm/strategies/index.js.map +1 -0
- package/dist/esm/strategies/lending.d.ts +155 -0
- package/dist/esm/strategies/lending.d.ts.map +1 -0
- package/dist/esm/strategies/lending.js +824 -0
- package/dist/esm/strategies/lending.js.map +1 -0
- package/dist/esm/strategies/looping.d.ts +176 -0
- package/dist/esm/strategies/looping.d.ts.map +1 -0
- package/dist/esm/strategies/looping.js +974 -0
- package/dist/esm/strategies/looping.js.map +1 -0
- package/dist/esm/strategies/lp.d.ts +207 -0
- package/dist/esm/strategies/lp.d.ts.map +1 -0
- package/dist/esm/strategies/lp.js +1447 -0
- package/dist/esm/strategies/lp.js.map +1 -0
- package/dist/esm/strategies/lyf.d.ts +207 -0
- package/dist/esm/strategies/lyf.d.ts.map +1 -0
- package/dist/esm/strategies/lyf.js +644 -0
- package/dist/esm/strategies/lyf.js.map +1 -0
- package/dist/esm/strategies/singleAssetLooping.d.ts +152 -0
- package/dist/esm/strategies/singleAssetLooping.d.ts.map +1 -0
- package/dist/esm/strategies/singleAssetLooping.js +627 -0
- package/dist/esm/strategies/singleAssetLooping.js.map +1 -0
- package/dist/esm/strategies/slushLending.d.ts +131 -0
- package/dist/esm/strategies/slushLending.d.ts.map +1 -0
- package/dist/esm/strategies/slushLending.js +388 -0
- package/dist/esm/strategies/slushLending.js.map +1 -0
- package/dist/esm/strategies/strategy.d.ts +198 -0
- package/dist/esm/strategies/strategy.d.ts.map +1 -0
- package/dist/esm/strategies/strategy.js +192 -0
- package/dist/esm/strategies/strategy.js.map +1 -0
- package/dist/esm/utils/cache.d.ts +98 -0
- package/dist/esm/utils/cache.d.ts.map +1 -0
- package/dist/esm/utils/cache.js +198 -0
- package/dist/esm/utils/cache.js.map +1 -0
- package/dist/esm/utils/constants.d.ts +236 -2
- package/dist/esm/utils/constants.d.ts.map +1 -1
- package/dist/esm/utils/constants.js +243 -106
- package/dist/esm/utils/constants.js.map +1 -1
- package/dist/esm/utils/poolMap.d.ts +20 -0
- package/dist/esm/utils/poolMap.d.ts.map +1 -0
- package/dist/esm/utils/poolMap.js +233 -0
- package/dist/esm/utils/poolMap.js.map +1 -0
- package/dist/esm/utils/testing-pools.d.ts +3 -0
- package/dist/esm/utils/testing-pools.d.ts.map +1 -0
- package/dist/esm/utils/testing-pools.js +24 -0
- package/dist/esm/utils/testing-pools.js.map +1 -0
- package/package.json +45 -72
- package/dist/cjs/adminFunctions.d.ts +0 -33
- package/dist/cjs/adminFunctions.d.ts.map +0 -1
- package/dist/cjs/adminFunctions.js +0 -306
- package/dist/cjs/adminFunctions.js.map +0 -1
- package/dist/cjs/common/alphaTypes.d.ts +0 -110
- package/dist/cjs/common/alphaTypes.d.ts.map +0 -1
- package/dist/cjs/common/alphaTypes.js +0 -3
- package/dist/cjs/common/alphaTypes.js.map +0 -1
- package/dist/cjs/common/cetus_mainnet_config.d.ts +0 -3
- package/dist/cjs/common/cetus_mainnet_config.d.ts.map +0 -1
- package/dist/cjs/common/cetus_mainnet_config.js +0 -50
- package/dist/cjs/common/cetus_mainnet_config.js.map +0 -1
- package/dist/cjs/common/coins.d.ts +0 -6
- package/dist/cjs/common/coins.d.ts.map +0 -1
- package/dist/cjs/common/coins.js +0 -313
- package/dist/cjs/common/coins.js.map +0 -1
- package/dist/cjs/common/constants.d.ts +0 -3187
- package/dist/cjs/common/constants.d.ts.map +0 -1
- package/dist/cjs/common/constants.js +0 -2564
- package/dist/cjs/common/constants.js.map +0 -1
- package/dist/cjs/common/maps.d.ts +0 -120
- package/dist/cjs/common/maps.d.ts.map +0 -1
- package/dist/cjs/common/maps.js +0 -2527
- package/dist/cjs/common/maps.js.map +0 -1
- package/dist/cjs/common/pyth.d.ts +0 -7
- package/dist/cjs/common/pyth.d.ts.map +0 -1
- package/dist/cjs/common/pyth.js +0 -3
- package/dist/cjs/common/pyth.js.map +0 -1
- package/dist/cjs/common/types.d.ts +0 -736
- package/dist/cjs/common/types.d.ts.map +0 -1
- package/dist/cjs/common/types.js.map +0 -1
- package/dist/cjs/example.d.ts +0 -3
- package/dist/cjs/example.d.ts.map +0 -1
- package/dist/cjs/example.js +0 -42
- package/dist/cjs/example.js.map +0 -1
- package/dist/cjs/getAirdropShare.d.ts +0 -3
- package/dist/cjs/getAirdropShare.d.ts.map +0 -1
- package/dist/cjs/getAirdropShare.js +0 -10
- package/dist/cjs/getAirdropShare.js.map +0 -1
- package/dist/cjs/getAllVaults.d.ts +0 -7
- package/dist/cjs/getAllVaults.d.ts.map +0 -1
- package/dist/cjs/getAllVaults.js +0 -39
- package/dist/cjs/getAllVaults.js.map +0 -1
- package/dist/cjs/getAlphaUnlocks.d.ts +0 -15
- package/dist/cjs/getAlphaUnlocks.d.ts.map +0 -1
- package/dist/cjs/getAlphaUnlocks.js +0 -21
- package/dist/cjs/getAlphaUnlocks.js.map +0 -1
- package/dist/cjs/getAprs.d.ts +0 -14
- package/dist/cjs/getAprs.d.ts.map +0 -1
- package/dist/cjs/getAprs.js +0 -306
- package/dist/cjs/getAprs.js.map +0 -1
- package/dist/cjs/getLastAutoCompoundTime.d.ts +0 -4
- package/dist/cjs/getLastAutoCompoundTime.d.ts.map +0 -1
- package/dist/cjs/getLastAutoCompoundTime.js +0 -18
- package/dist/cjs/getLastAutoCompoundTime.js.map +0 -1
- package/dist/cjs/getRebalanceHistory.d.ts +0 -6
- package/dist/cjs/getRebalanceHistory.d.ts.map +0 -1
- package/dist/cjs/getRebalanceHistory.js +0 -26
- package/dist/cjs/getRebalanceHistory.js.map +0 -1
- package/dist/cjs/getTvls.d.ts +0 -10
- package/dist/cjs/getTvls.d.ts.map +0 -1
- package/dist/cjs/getTvls.js +0 -137
- package/dist/cjs/getTvls.js.map +0 -1
- package/dist/cjs/getVaultBalances.d.ts +0 -13
- package/dist/cjs/getVaultBalances.d.ts.map +0 -1
- package/dist/cjs/getVaultBalances.js +0 -103
- package/dist/cjs/getVaultBalances.js.map +0 -1
- package/dist/cjs/getVaults.d.ts +0 -8
- package/dist/cjs/getVaults.d.ts.map +0 -1
- package/dist/cjs/getVaults.js +0 -34
- package/dist/cjs/getVaults.js.map +0 -1
- package/dist/cjs/graphql/client.d.ts +0 -4
- package/dist/cjs/graphql/client.d.ts.map +0 -1
- package/dist/cjs/graphql/client.js +0 -14
- package/dist/cjs/graphql/client.js.map +0 -1
- package/dist/cjs/graphql/executeMutations.d.ts +0 -19
- package/dist/cjs/graphql/executeMutations.d.ts.map +0 -1
- package/dist/cjs/graphql/executeMutations.js +0 -40
- package/dist/cjs/graphql/executeMutations.js.map +0 -1
- package/dist/cjs/graphql/fetchAutoCompoundingEventsGql.d.ts +0 -28
- package/dist/cjs/graphql/fetchAutoCompoundingEventsGql.d.ts.map +0 -1
- package/dist/cjs/graphql/fetchAutoCompoundingEventsGql.js +0 -120
- package/dist/cjs/graphql/fetchAutoCompoundingEventsGql.js.map +0 -1
- package/dist/cjs/graphql/fetchData.d.ts +0 -35
- package/dist/cjs/graphql/fetchData.d.ts.map +0 -1
- package/dist/cjs/graphql/fetchData.js +0 -103
- package/dist/cjs/graphql/fetchData.js.map +0 -1
- package/dist/cjs/graphql/fetchNftHolders.d.ts +0 -4
- package/dist/cjs/graphql/fetchNftHolders.d.ts.map +0 -1
- package/dist/cjs/graphql/fetchNftHolders.js +0 -37
- package/dist/cjs/graphql/fetchNftHolders.js.map +0 -1
- package/dist/cjs/graphql/fetchReceipts.d.ts +0 -4
- package/dist/cjs/graphql/fetchReceipts.d.ts.map +0 -1
- package/dist/cjs/graphql/fetchReceipts.js +0 -38
- package/dist/cjs/graphql/fetchReceipts.js.map +0 -1
- package/dist/cjs/graphql/getMultiReceipts.d.ts +0 -4
- package/dist/cjs/graphql/getMultiReceipts.d.ts.map +0 -1
- package/dist/cjs/graphql/getMultiReceipts.js +0 -117
- package/dist/cjs/graphql/getMultiReceipts.js.map +0 -1
- package/dist/cjs/graphql/mutations.d.ts +0 -4
- package/dist/cjs/graphql/mutations.d.ts.map +0 -1
- package/dist/cjs/graphql/mutations.js +0 -33
- package/dist/cjs/graphql/mutations.js.map +0 -1
- package/dist/cjs/graphql/parseData.d.ts +0 -3
- package/dist/cjs/graphql/parseData.d.ts.map +0 -1
- package/dist/cjs/graphql/parseData.js +0 -10
- package/dist/cjs/graphql/parseData.js.map +0 -1
- package/dist/cjs/graphql/parseLockedTableId.d.ts +0 -8
- package/dist/cjs/graphql/parseLockedTableId.d.ts.map +0 -1
- package/dist/cjs/graphql/parseLockedTableId.js +0 -16
- package/dist/cjs/graphql/parseLockedTableId.js.map +0 -1
- package/dist/cjs/graphql/queries/autoCompoundEvents.d.ts +0 -2
- package/dist/cjs/graphql/queries/autoCompoundEvents.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/autoCompoundEvents.js +0 -19
- package/dist/cjs/graphql/queries/autoCompoundEvents.js.map +0 -1
- package/dist/cjs/graphql/queries/cetusPools.d.ts +0 -2
- package/dist/cjs/graphql/queries/cetusPools.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/cetusPools.js +0 -39
- package/dist/cjs/graphql/queries/cetusPools.js.map +0 -1
- package/dist/cjs/graphql/queries/getMultiReceipts.d.ts +0 -3
- package/dist/cjs/graphql/queries/getMultiReceipts.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/getMultiReceipts.js +0 -59
- package/dist/cjs/graphql/queries/getMultiReceipts.js.map +0 -1
- package/dist/cjs/graphql/queries/investors.d.ts +0 -2
- package/dist/cjs/graphql/queries/investors.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/investors.js +0 -39
- package/dist/cjs/graphql/queries/investors.js.map +0 -1
- package/dist/cjs/graphql/queries/lockedTableData.d.ts +0 -2
- package/dist/cjs/graphql/queries/lockedTableData.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/lockedTableData.js +0 -30
- package/dist/cjs/graphql/queries/lockedTableData.js.map +0 -1
- package/dist/cjs/graphql/queries/lockedTableDataFragment.d.ts +0 -2
- package/dist/cjs/graphql/queries/lockedTableDataFragment.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/lockedTableDataFragment.js +0 -24
- package/dist/cjs/graphql/queries/lockedTableDataFragment.js.map +0 -1
- package/dist/cjs/graphql/queries/nftHolders.d.ts +0 -2
- package/dist/cjs/graphql/queries/nftHolders.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/nftHolders.js +0 -23
- package/dist/cjs/graphql/queries/nftHolders.js.map +0 -1
- package/dist/cjs/graphql/queries/pools.d.ts +0 -2
- package/dist/cjs/graphql/queries/pools.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/pools.js +0 -57
- package/dist/cjs/graphql/queries/pools.js.map +0 -1
- package/dist/cjs/graphql/queries/receiptData.d.ts +0 -2
- package/dist/cjs/graphql/queries/receiptData.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/receiptData.js +0 -21
- package/dist/cjs/graphql/queries/receiptData.js.map +0 -1
- package/dist/cjs/graphql/queries/userVaultBalances.d.ts +0 -2
- package/dist/cjs/graphql/queries/userVaultBalances.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/userVaultBalances.js +0 -62
- package/dist/cjs/graphql/queries/userVaultBalances.js.map +0 -1
- package/dist/cjs/graphql/queries/userVaults.d.ts +0 -2
- package/dist/cjs/graphql/queries/userVaults.d.ts.map +0 -1
- package/dist/cjs/graphql/queries/userVaults.js +0 -62
- package/dist/cjs/graphql/queries/userVaults.js.map +0 -1
- package/dist/cjs/graphql/queries.d.ts +0 -15
- package/dist/cjs/graphql/queries.d.ts.map +0 -1
- package/dist/cjs/graphql/queries.js +0 -86
- package/dist/cjs/graphql/queries.js.map +0 -1
- package/dist/cjs/graphql/types.d.ts +0 -112
- package/dist/cjs/graphql/types.d.ts.map +0 -1
- package/dist/cjs/graphql/types.js +0 -3
- package/dist/cjs/graphql/types.js.map +0 -1
- package/dist/cjs/sui-sdk/client.d.ts +0 -44
- package/dist/cjs/sui-sdk/client.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/client.js +0 -90
- package/dist/cjs/sui-sdk/client.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchAfterTransactionEvents.d.ts +0 -10
- package/dist/cjs/sui-sdk/events/fetchAfterTransactionEvents.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchAfterTransactionEvents.js +0 -128
- package/dist/cjs/sui-sdk/events/fetchAfterTransactionEvents.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchAirdropClaimEvent.d.ts +0 -4
- package/dist/cjs/sui-sdk/events/fetchAirdropClaimEvent.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchAirdropClaimEvent.js +0 -20
- package/dist/cjs/sui-sdk/events/fetchAirdropClaimEvent.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchAutoCompoundingEvents.d.ts +0 -9
- package/dist/cjs/sui-sdk/events/fetchAutoCompoundingEvents.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchAutoCompoundingEvents.js +0 -406
- package/dist/cjs/sui-sdk/events/fetchAutoCompoundingEvents.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchCheckRatioEvents.d.ts +0 -4
- package/dist/cjs/sui-sdk/events/fetchCheckRatioEvents.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchCheckRatioEvents.js +0 -47
- package/dist/cjs/sui-sdk/events/fetchCheckRatioEvents.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchEvents.d.ts +0 -4
- package/dist/cjs/sui-sdk/events/fetchEvents.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchEvents.js +0 -453
- package/dist/cjs/sui-sdk/events/fetchEvents.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchLiquidityChangeEvents.d.ts +0 -4
- package/dist/cjs/sui-sdk/events/fetchLiquidityChangeEvents.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchLiquidityChangeEvents.js +0 -45
- package/dist/cjs/sui-sdk/events/fetchLiquidityChangeEvents.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchMultiCategoryEvents.d.ts +0 -9
- package/dist/cjs/sui-sdk/events/fetchMultiCategoryEvents.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchMultiCategoryEvents.js +0 -41
- package/dist/cjs/sui-sdk/events/fetchMultiCategoryEvents.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchRebalanceEvents.d.ts +0 -7
- package/dist/cjs/sui-sdk/events/fetchRebalanceEvents.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchRebalanceEvents.js +0 -91
- package/dist/cjs/sui-sdk/events/fetchRebalanceEvents.js.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchWithdrawV2Events.d.ts +0 -4
- package/dist/cjs/sui-sdk/events/fetchWithdrawV2Events.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/fetchWithdrawV2Events.js +0 -28
- package/dist/cjs/sui-sdk/events/fetchWithdrawV2Events.js.map +0 -1
- package/dist/cjs/sui-sdk/events/parseData.d.ts +0 -6
- package/dist/cjs/sui-sdk/events/parseData.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/parseData.js +0 -33
- package/dist/cjs/sui-sdk/events/parseData.js.map +0 -1
- package/dist/cjs/sui-sdk/events/types.d.ts +0 -238
- package/dist/cjs/sui-sdk/events/types.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/events/types.js +0 -9
- package/dist/cjs/sui-sdk/events/types.js.map +0 -1
- package/dist/cjs/sui-sdk/functions/fetchTableData.d.ts +0 -50
- package/dist/cjs/sui-sdk/functions/fetchTableData.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/functions/fetchTableData.js +0 -77
- package/dist/cjs/sui-sdk/functions/fetchTableData.js.map +0 -1
- package/dist/cjs/sui-sdk/functions/fetchUserVaultBalances.d.ts +0 -3
- package/dist/cjs/sui-sdk/functions/fetchUserVaultBalances.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/functions/fetchUserVaultBalances.js +0 -73
- package/dist/cjs/sui-sdk/functions/fetchUserVaultBalances.js.map +0 -1
- package/dist/cjs/sui-sdk/functions/fetchUserVaults.d.ts +0 -3
- package/dist/cjs/sui-sdk/functions/fetchUserVaults.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/functions/fetchUserVaults.js +0 -50
- package/dist/cjs/sui-sdk/functions/fetchUserVaults.js.map +0 -1
- package/dist/cjs/sui-sdk/functions/getPortfolioAmounts.d.ts +0 -19
- package/dist/cjs/sui-sdk/functions/getPortfolioAmounts.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/functions/getPortfolioAmounts.js +0 -314
- package/dist/cjs/sui-sdk/functions/getPortfolioAmounts.js.map +0 -1
- package/dist/cjs/sui-sdk/functions/getPositionRange.d.ts +0 -12
- package/dist/cjs/sui-sdk/functions/getPositionRange.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/functions/getPositionRange.js +0 -88
- package/dist/cjs/sui-sdk/functions/getPositionRange.js.map +0 -1
- package/dist/cjs/sui-sdk/functions/getReceipts.d.ts +0 -69
- package/dist/cjs/sui-sdk/functions/getReceipts.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/functions/getReceipts.js +0 -768
- package/dist/cjs/sui-sdk/functions/getReceipts.js.map +0 -1
- package/dist/cjs/sui-sdk/transactions/constants.d.ts +0 -4
- package/dist/cjs/sui-sdk/transactions/constants.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/transactions/constants.js +0 -90
- package/dist/cjs/sui-sdk/transactions/constants.js.map +0 -1
- package/dist/cjs/sui-sdk/transactions/fetchTransactions.d.ts +0 -5
- package/dist/cjs/sui-sdk/transactions/fetchTransactions.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/transactions/fetchTransactions.js +0 -65
- package/dist/cjs/sui-sdk/transactions/fetchTransactions.js.map +0 -1
- package/dist/cjs/sui-sdk/transactions/types.d.ts +0 -9
- package/dist/cjs/sui-sdk/transactions/types.d.ts.map +0 -1
- package/dist/cjs/sui-sdk/transactions/types.js +0 -3
- package/dist/cjs/sui-sdk/transactions/types.js.map +0 -1
- package/dist/cjs/transactions/7k.d.ts +0 -8
- package/dist/cjs/transactions/7k.d.ts.map +0 -1
- package/dist/cjs/transactions/7k.js +0 -34
- package/dist/cjs/transactions/7k.js.map +0 -1
- package/dist/cjs/transactions/alpha.d.ts +0 -6
- package/dist/cjs/transactions/alpha.d.ts.map +0 -1
- package/dist/cjs/transactions/alpha.js +0 -110
- package/dist/cjs/transactions/alpha.js.map +0 -1
- package/dist/cjs/transactions/alphaVault.d.ts +0 -33
- package/dist/cjs/transactions/alphaVault.d.ts.map +0 -1
- package/dist/cjs/transactions/alphaVault.js +0 -449
- package/dist/cjs/transactions/alphaVault.js.map +0 -1
- package/dist/cjs/transactions/alphalend.d.ts +0 -30
- package/dist/cjs/transactions/alphalend.d.ts.map +0 -1
- package/dist/cjs/transactions/alphalend.js +0 -286
- package/dist/cjs/transactions/alphalend.js.map +0 -1
- package/dist/cjs/transactions/blueRewards.d.ts +0 -15
- package/dist/cjs/transactions/blueRewards.d.ts.map +0 -1
- package/dist/cjs/transactions/blueRewards.js +0 -395
- package/dist/cjs/transactions/blueRewards.js.map +0 -1
- package/dist/cjs/transactions/bluefin.d.ts +0 -60
- package/dist/cjs/transactions/bluefin.d.ts.map +0 -1
- package/dist/cjs/transactions/bluefin.js +0 -3078
- package/dist/cjs/transactions/bluefin.js.map +0 -1
- package/dist/cjs/transactions/bucket.d.ts +0 -8
- package/dist/cjs/transactions/bucket.d.ts.map +0 -1
- package/dist/cjs/transactions/bucket.js +0 -144
- package/dist/cjs/transactions/bucket.js.map +0 -1
- package/dist/cjs/transactions/cetus.d.ts +0 -27
- package/dist/cjs/transactions/cetus.d.ts.map +0 -1
- package/dist/cjs/transactions/cetus.js +0 -466
- package/dist/cjs/transactions/cetus.js.map +0 -1
- package/dist/cjs/transactions/cetusSwap.d.ts +0 -15
- package/dist/cjs/transactions/cetusSwap.d.ts.map +0 -1
- package/dist/cjs/transactions/cetusSwap.js +0 -74
- package/dist/cjs/transactions/cetusSwap.js.map +0 -1
- package/dist/cjs/transactions/collect_rewards.d.ts +0 -11
- package/dist/cjs/transactions/collect_rewards.d.ts.map +0 -1
- package/dist/cjs/transactions/collect_rewards.js +0 -1292
- package/dist/cjs/transactions/collect_rewards.js.map +0 -1
- package/dist/cjs/transactions/deposit.d.ts +0 -15
- package/dist/cjs/transactions/deposit.d.ts.map +0 -1
- package/dist/cjs/transactions/deposit.js +0 -194
- package/dist/cjs/transactions/deposit.js.map +0 -1
- package/dist/cjs/transactions/get_navi_rewards.d.ts +0 -11
- package/dist/cjs/transactions/get_navi_rewards.d.ts.map +0 -1
- package/dist/cjs/transactions/get_navi_rewards.js +0 -39
- package/dist/cjs/transactions/get_navi_rewards.js.map +0 -1
- package/dist/cjs/transactions/navi-looping.d.ts +0 -55
- package/dist/cjs/transactions/navi-looping.d.ts.map +0 -1
- package/dist/cjs/transactions/navi-looping.js +0 -1718
- package/dist/cjs/transactions/navi-looping.js.map +0 -1
- package/dist/cjs/transactions/navi.d.ts +0 -9
- package/dist/cjs/transactions/navi.d.ts.map +0 -1
- package/dist/cjs/transactions/navi.js +0 -2541
- package/dist/cjs/transactions/navi.js.map +0 -1
- package/dist/cjs/transactions/naviOracle.d.ts +0 -5
- package/dist/cjs/transactions/naviOracle.d.ts.map +0 -1
- package/dist/cjs/transactions/naviOracle.js +0 -28
- package/dist/cjs/transactions/naviOracle.js.map +0 -1
- package/dist/cjs/transactions/newZapDeposit.d.ts +0 -19
- package/dist/cjs/transactions/newZapDeposit.d.ts.map +0 -1
- package/dist/cjs/transactions/newZapDeposit.js +0 -1622
- package/dist/cjs/transactions/newZapDeposit.js.map +0 -1
- package/dist/cjs/transactions/slush.d.ts +0 -16
- package/dist/cjs/transactions/slush.d.ts.map +0 -1
- package/dist/cjs/transactions/slush.js +0 -219
- package/dist/cjs/transactions/slush.js.map +0 -1
- package/dist/cjs/transactions/types.d.ts +0 -17
- package/dist/cjs/transactions/types.d.ts.map +0 -1
- package/dist/cjs/transactions/types.js +0 -3
- package/dist/cjs/transactions/types.js.map +0 -1
- package/dist/cjs/transactions/withdraw.d.ts +0 -9
- package/dist/cjs/transactions/withdraw.d.ts.map +0 -1
- package/dist/cjs/transactions/withdraw.js +0 -132
- package/dist/cjs/transactions/withdraw.js.map +0 -1
- package/dist/cjs/transactions/zapDeposit.d.ts +0 -6
- package/dist/cjs/transactions/zapDeposit.d.ts.map +0 -1
- package/dist/cjs/transactions/zapDeposit.js +0 -1731
- package/dist/cjs/transactions/zapDeposit.js.map +0 -1
- package/dist/cjs/types.d.ts +0 -201
- package/dist/cjs/types.d.ts.map +0 -1
- package/dist/cjs/types.js +0 -3
- package/dist/cjs/types.js.map +0 -1
- package/dist/cjs/utils/clmm/prices.d.ts +0 -20
- package/dist/cjs/utils/clmm/prices.d.ts.map +0 -1
- package/dist/cjs/utils/clmm/prices.js +0 -321
- package/dist/cjs/utils/clmm/prices.js.map +0 -1
- package/dist/cjs/utils/clmm/tokenAmountFromLiquidity.d.ts +0 -15
- package/dist/cjs/utils/clmm/tokenAmountFromLiquidity.d.ts.map +0 -1
- package/dist/cjs/utils/clmm/tokenAmountFromLiquidity.js +0 -200
- package/dist/cjs/utils/clmm/tokenAmountFromLiquidity.js.map +0 -1
- package/dist/cjs/utils/clmm/types.d.ts +0 -25
- package/dist/cjs/utils/clmm/types.d.ts.map +0 -1
- package/dist/cjs/utils/clmm/types.js +0 -3
- package/dist/cjs/utils/clmm/types.js.map +0 -1
- package/dist/cjs/utils/getReceipts.d.ts +0 -4
- package/dist/cjs/utils/getReceipts.d.ts.map +0 -1
- package/dist/cjs/utils/getReceipts.js +0 -47
- package/dist/cjs/utils/getReceipts.js.map +0 -1
- package/dist/cjs/utils/hop.d.ts +0 -16
- package/dist/cjs/utils/hop.d.ts.map +0 -1
- package/dist/cjs/utils/hop.js +0 -130
- package/dist/cjs/utils/hop.js.map +0 -1
- package/dist/cjs/utils/prices.d.ts +0 -15
- package/dist/cjs/utils/prices.d.ts.map +0 -1
- package/dist/cjs/utils/prices.js +0 -168
- package/dist/cjs/utils/prices.js.map +0 -1
- package/dist/cjs/utils/simpleCache.d.ts +0 -14
- package/dist/cjs/utils/simpleCache.d.ts.map +0 -1
- package/dist/cjs/utils/simpleCache.js +0 -92
- package/dist/cjs/utils/simpleCache.js.map +0 -1
- package/dist/cjs/utils/types.d.ts +0 -5
- package/dist/cjs/utils/types.d.ts.map +0 -1
- package/dist/cjs/utils/types.js +0 -3
- package/dist/cjs/utils/types.js.map +0 -1
- package/dist/cjs/utils/userHoldings.d.ts +0 -10
- package/dist/cjs/utils/userHoldings.d.ts.map +0 -1
- package/dist/cjs/utils/userHoldings.js +0 -229
- package/dist/cjs/utils/userHoldings.js.map +0 -1
- package/dist/cjs/vaultFunctions.d.ts +0 -8
- package/dist/cjs/vaultFunctions.d.ts.map +0 -1
- package/dist/cjs/vaultFunctions.js +0 -36
- package/dist/cjs/vaultFunctions.js.map +0 -1
- package/dist/esm/adminFunctions.d.ts +0 -33
- package/dist/esm/adminFunctions.d.ts.map +0 -1
- package/dist/esm/adminFunctions.js +0 -290
- package/dist/esm/adminFunctions.js.map +0 -1
- package/dist/esm/common/alphaTypes.d.ts +0 -110
- package/dist/esm/common/alphaTypes.d.ts.map +0 -1
- package/dist/esm/common/alphaTypes.js +0 -2
- package/dist/esm/common/alphaTypes.js.map +0 -1
- package/dist/esm/common/cetus_mainnet_config.d.ts +0 -3
- package/dist/esm/common/cetus_mainnet_config.d.ts.map +0 -1
- package/dist/esm/common/cetus_mainnet_config.js +0 -47
- package/dist/esm/common/cetus_mainnet_config.js.map +0 -1
- package/dist/esm/common/coins.d.ts +0 -6
- package/dist/esm/common/coins.d.ts.map +0 -1
- package/dist/esm/common/coins.js +0 -310
- package/dist/esm/common/coins.js.map +0 -1
- package/dist/esm/common/constants.d.ts +0 -3187
- package/dist/esm/common/constants.d.ts.map +0 -1
- package/dist/esm/common/constants.js +0 -2560
- package/dist/esm/common/constants.js.map +0 -1
- package/dist/esm/common/maps.d.ts +0 -120
- package/dist/esm/common/maps.d.ts.map +0 -1
- package/dist/esm/common/maps.js +0 -2516
- package/dist/esm/common/maps.js.map +0 -1
- package/dist/esm/common/pyth.d.ts +0 -7
- package/dist/esm/common/pyth.d.ts.map +0 -1
- package/dist/esm/common/pyth.js +0 -2
- package/dist/esm/common/pyth.js.map +0 -1
- package/dist/esm/common/types.d.ts +0 -736
- package/dist/esm/common/types.d.ts.map +0 -1
- package/dist/esm/common/types.js.map +0 -1
- package/dist/esm/example.d.ts +0 -3
- package/dist/esm/example.d.ts.map +0 -1
- package/dist/esm/example.js +0 -38
- package/dist/esm/example.js.map +0 -1
- package/dist/esm/getAirdropShare.d.ts +0 -3
- package/dist/esm/getAirdropShare.d.ts.map +0 -1
- package/dist/esm/getAirdropShare.js +0 -7
- package/dist/esm/getAirdropShare.js.map +0 -1
- package/dist/esm/getAllVaults.d.ts +0 -7
- package/dist/esm/getAllVaults.d.ts.map +0 -1
- package/dist/esm/getAllVaults.js +0 -34
- package/dist/esm/getAllVaults.js.map +0 -1
- package/dist/esm/getAlphaUnlocks.d.ts +0 -15
- package/dist/esm/getAlphaUnlocks.d.ts.map +0 -1
- package/dist/esm/getAlphaUnlocks.js +0 -18
- package/dist/esm/getAlphaUnlocks.js.map +0 -1
- package/dist/esm/getAprs.d.ts +0 -14
- package/dist/esm/getAprs.d.ts.map +0 -1
- package/dist/esm/getAprs.js +0 -297
- package/dist/esm/getAprs.js.map +0 -1
- package/dist/esm/getLastAutoCompoundTime.d.ts +0 -4
- package/dist/esm/getLastAutoCompoundTime.d.ts.map +0 -1
- package/dist/esm/getLastAutoCompoundTime.js +0 -15
- package/dist/esm/getLastAutoCompoundTime.js.map +0 -1
- package/dist/esm/getRebalanceHistory.d.ts +0 -6
- package/dist/esm/getRebalanceHistory.d.ts.map +0 -1
- package/dist/esm/getRebalanceHistory.js +0 -22
- package/dist/esm/getRebalanceHistory.js.map +0 -1
- package/dist/esm/getTvls.d.ts +0 -10
- package/dist/esm/getTvls.d.ts.map +0 -1
- package/dist/esm/getTvls.js +0 -130
- package/dist/esm/getTvls.js.map +0 -1
- package/dist/esm/getVaultBalances.d.ts +0 -13
- package/dist/esm/getVaultBalances.d.ts.map +0 -1
- package/dist/esm/getVaultBalances.js +0 -96
- package/dist/esm/getVaultBalances.js.map +0 -1
- package/dist/esm/getVaults.d.ts +0 -8
- package/dist/esm/getVaults.d.ts.map +0 -1
- package/dist/esm/getVaults.js +0 -29
- package/dist/esm/getVaults.js.map +0 -1
- package/dist/esm/graphql/client.d.ts +0 -4
- package/dist/esm/graphql/client.d.ts.map +0 -1
- package/dist/esm/graphql/client.js +0 -12
- package/dist/esm/graphql/client.js.map +0 -1
- package/dist/esm/graphql/executeMutations.d.ts +0 -19
- package/dist/esm/graphql/executeMutations.d.ts.map +0 -1
- package/dist/esm/graphql/executeMutations.js +0 -34
- package/dist/esm/graphql/executeMutations.js.map +0 -1
- package/dist/esm/graphql/fetchAutoCompoundingEventsGql.d.ts +0 -28
- package/dist/esm/graphql/fetchAutoCompoundingEventsGql.d.ts.map +0 -1
- package/dist/esm/graphql/fetchAutoCompoundingEventsGql.js +0 -117
- package/dist/esm/graphql/fetchAutoCompoundingEventsGql.js.map +0 -1
- package/dist/esm/graphql/fetchData.d.ts +0 -35
- package/dist/esm/graphql/fetchData.d.ts.map +0 -1
- package/dist/esm/graphql/fetchData.js +0 -89
- package/dist/esm/graphql/fetchData.js.map +0 -1
- package/dist/esm/graphql/fetchNftHolders.d.ts +0 -4
- package/dist/esm/graphql/fetchNftHolders.d.ts.map +0 -1
- package/dist/esm/graphql/fetchNftHolders.js +0 -33
- package/dist/esm/graphql/fetchNftHolders.js.map +0 -1
- package/dist/esm/graphql/fetchReceipts.d.ts +0 -4
- package/dist/esm/graphql/fetchReceipts.d.ts.map +0 -1
- package/dist/esm/graphql/fetchReceipts.js +0 -34
- package/dist/esm/graphql/fetchReceipts.js.map +0 -1
- package/dist/esm/graphql/getMultiReceipts.d.ts +0 -4
- package/dist/esm/graphql/getMultiReceipts.d.ts.map +0 -1
- package/dist/esm/graphql/getMultiReceipts.js +0 -114
- package/dist/esm/graphql/getMultiReceipts.js.map +0 -1
- package/dist/esm/graphql/mutations.d.ts +0 -4
- package/dist/esm/graphql/mutations.d.ts.map +0 -1
- package/dist/esm/graphql/mutations.js +0 -30
- package/dist/esm/graphql/mutations.js.map +0 -1
- package/dist/esm/graphql/parseData.d.ts +0 -3
- package/dist/esm/graphql/parseData.d.ts.map +0 -1
- package/dist/esm/graphql/parseData.js +0 -7
- package/dist/esm/graphql/parseData.js.map +0 -1
- package/dist/esm/graphql/parseLockedTableId.d.ts +0 -8
- package/dist/esm/graphql/parseLockedTableId.d.ts.map +0 -1
- package/dist/esm/graphql/parseLockedTableId.js +0 -13
- package/dist/esm/graphql/parseLockedTableId.js.map +0 -1
- package/dist/esm/graphql/queries/autoCompoundEvents.d.ts +0 -2
- package/dist/esm/graphql/queries/autoCompoundEvents.d.ts.map +0 -1
- package/dist/esm/graphql/queries/autoCompoundEvents.js +0 -16
- package/dist/esm/graphql/queries/autoCompoundEvents.js.map +0 -1
- package/dist/esm/graphql/queries/cetusPools.d.ts +0 -2
- package/dist/esm/graphql/queries/cetusPools.d.ts.map +0 -1
- package/dist/esm/graphql/queries/cetusPools.js +0 -36
- package/dist/esm/graphql/queries/cetusPools.js.map +0 -1
- package/dist/esm/graphql/queries/getMultiReceipts.d.ts +0 -3
- package/dist/esm/graphql/queries/getMultiReceipts.d.ts.map +0 -1
- package/dist/esm/graphql/queries/getMultiReceipts.js +0 -56
- package/dist/esm/graphql/queries/getMultiReceipts.js.map +0 -1
- package/dist/esm/graphql/queries/investors.d.ts +0 -2
- package/dist/esm/graphql/queries/investors.d.ts.map +0 -1
- package/dist/esm/graphql/queries/investors.js +0 -36
- package/dist/esm/graphql/queries/investors.js.map +0 -1
- package/dist/esm/graphql/queries/lockedTableData.d.ts +0 -2
- package/dist/esm/graphql/queries/lockedTableData.d.ts.map +0 -1
- package/dist/esm/graphql/queries/lockedTableData.js +0 -27
- package/dist/esm/graphql/queries/lockedTableData.js.map +0 -1
- package/dist/esm/graphql/queries/lockedTableDataFragment.d.ts +0 -2
- package/dist/esm/graphql/queries/lockedTableDataFragment.d.ts.map +0 -1
- package/dist/esm/graphql/queries/lockedTableDataFragment.js +0 -21
- package/dist/esm/graphql/queries/lockedTableDataFragment.js.map +0 -1
- package/dist/esm/graphql/queries/nftHolders.d.ts +0 -2
- package/dist/esm/graphql/queries/nftHolders.d.ts.map +0 -1
- package/dist/esm/graphql/queries/nftHolders.js +0 -20
- package/dist/esm/graphql/queries/nftHolders.js.map +0 -1
- package/dist/esm/graphql/queries/pools.d.ts +0 -2
- package/dist/esm/graphql/queries/pools.d.ts.map +0 -1
- package/dist/esm/graphql/queries/pools.js +0 -54
- package/dist/esm/graphql/queries/pools.js.map +0 -1
- package/dist/esm/graphql/queries/receiptData.d.ts +0 -2
- package/dist/esm/graphql/queries/receiptData.d.ts.map +0 -1
- package/dist/esm/graphql/queries/receiptData.js +0 -18
- package/dist/esm/graphql/queries/receiptData.js.map +0 -1
- package/dist/esm/graphql/queries/userVaultBalances.d.ts +0 -2
- package/dist/esm/graphql/queries/userVaultBalances.d.ts.map +0 -1
- package/dist/esm/graphql/queries/userVaultBalances.js +0 -59
- package/dist/esm/graphql/queries/userVaultBalances.js.map +0 -1
- package/dist/esm/graphql/queries/userVaults.d.ts +0 -2
- package/dist/esm/graphql/queries/userVaults.d.ts.map +0 -1
- package/dist/esm/graphql/queries/userVaults.js +0 -59
- package/dist/esm/graphql/queries/userVaults.js.map +0 -1
- package/dist/esm/graphql/queries.d.ts +0 -15
- package/dist/esm/graphql/queries.d.ts.map +0 -1
- package/dist/esm/graphql/queries.js +0 -83
- package/dist/esm/graphql/queries.js.map +0 -1
- package/dist/esm/graphql/types.d.ts +0 -112
- package/dist/esm/graphql/types.d.ts.map +0 -1
- package/dist/esm/graphql/types.js +0 -2
- package/dist/esm/graphql/types.js.map +0 -1
- package/dist/esm/sui-sdk/client.d.ts +0 -44
- package/dist/esm/sui-sdk/client.d.ts.map +0 -1
- package/dist/esm/sui-sdk/client.js +0 -82
- package/dist/esm/sui-sdk/client.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchAfterTransactionEvents.d.ts +0 -10
- package/dist/esm/sui-sdk/events/fetchAfterTransactionEvents.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchAfterTransactionEvents.js +0 -125
- package/dist/esm/sui-sdk/events/fetchAfterTransactionEvents.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchAirdropClaimEvent.d.ts +0 -4
- package/dist/esm/sui-sdk/events/fetchAirdropClaimEvent.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchAirdropClaimEvent.js +0 -17
- package/dist/esm/sui-sdk/events/fetchAirdropClaimEvent.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchAutoCompoundingEvents.d.ts +0 -9
- package/dist/esm/sui-sdk/events/fetchAutoCompoundingEvents.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchAutoCompoundingEvents.js +0 -401
- package/dist/esm/sui-sdk/events/fetchAutoCompoundingEvents.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchCheckRatioEvents.d.ts +0 -4
- package/dist/esm/sui-sdk/events/fetchCheckRatioEvents.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchCheckRatioEvents.js +0 -44
- package/dist/esm/sui-sdk/events/fetchCheckRatioEvents.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchEvents.d.ts +0 -4
- package/dist/esm/sui-sdk/events/fetchEvents.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchEvents.js +0 -450
- package/dist/esm/sui-sdk/events/fetchEvents.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchLiquidityChangeEvents.d.ts +0 -4
- package/dist/esm/sui-sdk/events/fetchLiquidityChangeEvents.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchLiquidityChangeEvents.js +0 -42
- package/dist/esm/sui-sdk/events/fetchLiquidityChangeEvents.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchMultiCategoryEvents.d.ts +0 -9
- package/dist/esm/sui-sdk/events/fetchMultiCategoryEvents.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchMultiCategoryEvents.js +0 -38
- package/dist/esm/sui-sdk/events/fetchMultiCategoryEvents.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchRebalanceEvents.d.ts +0 -7
- package/dist/esm/sui-sdk/events/fetchRebalanceEvents.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchRebalanceEvents.js +0 -86
- package/dist/esm/sui-sdk/events/fetchRebalanceEvents.js.map +0 -1
- package/dist/esm/sui-sdk/events/fetchWithdrawV2Events.d.ts +0 -4
- package/dist/esm/sui-sdk/events/fetchWithdrawV2Events.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/fetchWithdrawV2Events.js +0 -25
- package/dist/esm/sui-sdk/events/fetchWithdrawV2Events.js.map +0 -1
- package/dist/esm/sui-sdk/events/parseData.d.ts +0 -6
- package/dist/esm/sui-sdk/events/parseData.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/parseData.js +0 -29
- package/dist/esm/sui-sdk/events/parseData.js.map +0 -1
- package/dist/esm/sui-sdk/events/types.d.ts +0 -238
- package/dist/esm/sui-sdk/events/types.d.ts.map +0 -1
- package/dist/esm/sui-sdk/events/types.js +0 -6
- package/dist/esm/sui-sdk/events/types.js.map +0 -1
- package/dist/esm/sui-sdk/functions/fetchTableData.d.ts +0 -50
- package/dist/esm/sui-sdk/functions/fetchTableData.d.ts.map +0 -1
- package/dist/esm/sui-sdk/functions/fetchTableData.js +0 -73
- package/dist/esm/sui-sdk/functions/fetchTableData.js.map +0 -1
- package/dist/esm/sui-sdk/functions/fetchUserVaultBalances.d.ts +0 -3
- package/dist/esm/sui-sdk/functions/fetchUserVaultBalances.d.ts.map +0 -1
- package/dist/esm/sui-sdk/functions/fetchUserVaultBalances.js +0 -70
- package/dist/esm/sui-sdk/functions/fetchUserVaultBalances.js.map +0 -1
- package/dist/esm/sui-sdk/functions/fetchUserVaults.d.ts +0 -3
- package/dist/esm/sui-sdk/functions/fetchUserVaults.d.ts.map +0 -1
- package/dist/esm/sui-sdk/functions/fetchUserVaults.js +0 -47
- package/dist/esm/sui-sdk/functions/fetchUserVaults.js.map +0 -1
- package/dist/esm/sui-sdk/functions/getPortfolioAmounts.d.ts +0 -19
- package/dist/esm/sui-sdk/functions/getPortfolioAmounts.d.ts.map +0 -1
- package/dist/esm/sui-sdk/functions/getPortfolioAmounts.js +0 -303
- package/dist/esm/sui-sdk/functions/getPortfolioAmounts.js.map +0 -1
- package/dist/esm/sui-sdk/functions/getPositionRange.d.ts +0 -12
- package/dist/esm/sui-sdk/functions/getPositionRange.d.ts.map +0 -1
- package/dist/esm/sui-sdk/functions/getPositionRange.js +0 -84
- package/dist/esm/sui-sdk/functions/getPositionRange.js.map +0 -1
- package/dist/esm/sui-sdk/functions/getReceipts.d.ts +0 -69
- package/dist/esm/sui-sdk/functions/getReceipts.d.ts.map +0 -1
- package/dist/esm/sui-sdk/functions/getReceipts.js +0 -751
- package/dist/esm/sui-sdk/functions/getReceipts.js.map +0 -1
- package/dist/esm/sui-sdk/transactions/constants.d.ts +0 -4
- package/dist/esm/sui-sdk/transactions/constants.d.ts.map +0 -1
- package/dist/esm/sui-sdk/transactions/constants.js +0 -87
- package/dist/esm/sui-sdk/transactions/constants.js.map +0 -1
- package/dist/esm/sui-sdk/transactions/fetchTransactions.d.ts +0 -5
- package/dist/esm/sui-sdk/transactions/fetchTransactions.d.ts.map +0 -1
- package/dist/esm/sui-sdk/transactions/fetchTransactions.js +0 -62
- package/dist/esm/sui-sdk/transactions/fetchTransactions.js.map +0 -1
- package/dist/esm/sui-sdk/transactions/types.d.ts +0 -9
- package/dist/esm/sui-sdk/transactions/types.d.ts.map +0 -1
- package/dist/esm/sui-sdk/transactions/types.js +0 -2
- package/dist/esm/sui-sdk/transactions/types.js.map +0 -1
- package/dist/esm/transactions/7k.d.ts +0 -8
- package/dist/esm/transactions/7k.d.ts.map +0 -1
- package/dist/esm/transactions/7k.js +0 -30
- package/dist/esm/transactions/7k.js.map +0 -1
- package/dist/esm/transactions/alpha.d.ts +0 -6
- package/dist/esm/transactions/alpha.d.ts.map +0 -1
- package/dist/esm/transactions/alpha.js +0 -105
- package/dist/esm/transactions/alpha.js.map +0 -1
- package/dist/esm/transactions/alphaVault.d.ts +0 -33
- package/dist/esm/transactions/alphaVault.d.ts.map +0 -1
- package/dist/esm/transactions/alphaVault.js +0 -441
- package/dist/esm/transactions/alphaVault.js.map +0 -1
- package/dist/esm/transactions/alphalend.d.ts +0 -30
- package/dist/esm/transactions/alphalend.d.ts.map +0 -1
- package/dist/esm/transactions/alphalend.js +0 -277
- package/dist/esm/transactions/alphalend.js.map +0 -1
- package/dist/esm/transactions/blueRewards.d.ts +0 -15
- package/dist/esm/transactions/blueRewards.d.ts.map +0 -1
- package/dist/esm/transactions/blueRewards.js +0 -357
- package/dist/esm/transactions/blueRewards.js.map +0 -1
- package/dist/esm/transactions/bluefin.d.ts +0 -60
- package/dist/esm/transactions/bluefin.d.ts.map +0 -1
- package/dist/esm/transactions/bluefin.js +0 -3060
- package/dist/esm/transactions/bluefin.js.map +0 -1
- package/dist/esm/transactions/bucket.d.ts +0 -8
- package/dist/esm/transactions/bucket.d.ts.map +0 -1
- package/dist/esm/transactions/bucket.js +0 -140
- package/dist/esm/transactions/bucket.js.map +0 -1
- package/dist/esm/transactions/cetus.d.ts +0 -27
- package/dist/esm/transactions/cetus.d.ts.map +0 -1
- package/dist/esm/transactions/cetus.js +0 -457
- package/dist/esm/transactions/cetus.js.map +0 -1
- package/dist/esm/transactions/cetusSwap.d.ts +0 -15
- package/dist/esm/transactions/cetusSwap.d.ts.map +0 -1
- package/dist/esm/transactions/cetusSwap.js +0 -72
- package/dist/esm/transactions/cetusSwap.js.map +0 -1
- package/dist/esm/transactions/collect_rewards.d.ts +0 -11
- package/dist/esm/transactions/collect_rewards.d.ts.map +0 -1
- package/dist/esm/transactions/collect_rewards.js +0 -1286
- package/dist/esm/transactions/collect_rewards.js.map +0 -1
- package/dist/esm/transactions/deposit.d.ts +0 -15
- package/dist/esm/transactions/deposit.d.ts.map +0 -1
- package/dist/esm/transactions/deposit.js +0 -185
- package/dist/esm/transactions/deposit.js.map +0 -1
- package/dist/esm/transactions/get_navi_rewards.d.ts +0 -11
- package/dist/esm/transactions/get_navi_rewards.d.ts.map +0 -1
- package/dist/esm/transactions/get_navi_rewards.js +0 -36
- package/dist/esm/transactions/get_navi_rewards.js.map +0 -1
- package/dist/esm/transactions/navi-looping.d.ts +0 -55
- package/dist/esm/transactions/navi-looping.d.ts.map +0 -1
- package/dist/esm/transactions/navi-looping.js +0 -1703
- package/dist/esm/transactions/navi-looping.js.map +0 -1
- package/dist/esm/transactions/navi.d.ts +0 -9
- package/dist/esm/transactions/navi.d.ts.map +0 -1
- package/dist/esm/transactions/navi.js +0 -2537
- package/dist/esm/transactions/navi.js.map +0 -1
- package/dist/esm/transactions/naviOracle.d.ts +0 -5
- package/dist/esm/transactions/naviOracle.d.ts.map +0 -1
- package/dist/esm/transactions/naviOracle.js +0 -25
- package/dist/esm/transactions/naviOracle.js.map +0 -1
- package/dist/esm/transactions/newZapDeposit.d.ts +0 -19
- package/dist/esm/transactions/newZapDeposit.d.ts.map +0 -1
- package/dist/esm/transactions/newZapDeposit.js +0 -1617
- package/dist/esm/transactions/newZapDeposit.js.map +0 -1
- package/dist/esm/transactions/slush.d.ts +0 -16
- package/dist/esm/transactions/slush.d.ts.map +0 -1
- package/dist/esm/transactions/slush.js +0 -213
- package/dist/esm/transactions/slush.js.map +0 -1
- package/dist/esm/transactions/types.d.ts +0 -17
- package/dist/esm/transactions/types.d.ts.map +0 -1
- package/dist/esm/transactions/types.js +0 -2
- package/dist/esm/transactions/types.js.map +0 -1
- package/dist/esm/transactions/withdraw.d.ts +0 -9
- package/dist/esm/transactions/withdraw.d.ts.map +0 -1
- package/dist/esm/transactions/withdraw.js +0 -127
- package/dist/esm/transactions/withdraw.js.map +0 -1
- package/dist/esm/transactions/zapDeposit.d.ts +0 -6
- package/dist/esm/transactions/zapDeposit.d.ts.map +0 -1
- package/dist/esm/transactions/zapDeposit.js +0 -1727
- package/dist/esm/transactions/zapDeposit.js.map +0 -1
- package/dist/esm/types.d.ts +0 -201
- package/dist/esm/types.d.ts.map +0 -1
- package/dist/esm/types.js +0 -2
- package/dist/esm/types.js.map +0 -1
- package/dist/esm/utils/clmm/prices.d.ts +0 -20
- package/dist/esm/utils/clmm/prices.d.ts.map +0 -1
- package/dist/esm/utils/clmm/prices.js +0 -313
- package/dist/esm/utils/clmm/prices.js.map +0 -1
- package/dist/esm/utils/clmm/tokenAmountFromLiquidity.d.ts +0 -15
- package/dist/esm/utils/clmm/tokenAmountFromLiquidity.d.ts.map +0 -1
- package/dist/esm/utils/clmm/tokenAmountFromLiquidity.js +0 -192
- package/dist/esm/utils/clmm/tokenAmountFromLiquidity.js.map +0 -1
- package/dist/esm/utils/clmm/types.d.ts +0 -25
- package/dist/esm/utils/clmm/types.d.ts.map +0 -1
- package/dist/esm/utils/clmm/types.js +0 -2
- package/dist/esm/utils/clmm/types.js.map +0 -1
- package/dist/esm/utils/getReceipts.d.ts +0 -4
- package/dist/esm/utils/getReceipts.d.ts.map +0 -1
- package/dist/esm/utils/getReceipts.js +0 -44
- package/dist/esm/utils/getReceipts.js.map +0 -1
- package/dist/esm/utils/hop.d.ts +0 -16
- package/dist/esm/utils/hop.d.ts.map +0 -1
- package/dist/esm/utils/hop.js +0 -122
- package/dist/esm/utils/hop.js.map +0 -1
- package/dist/esm/utils/prices.d.ts +0 -15
- package/dist/esm/utils/prices.d.ts.map +0 -1
- package/dist/esm/utils/prices.js +0 -161
- package/dist/esm/utils/prices.js.map +0 -1
- package/dist/esm/utils/simpleCache.d.ts +0 -14
- package/dist/esm/utils/simpleCache.d.ts.map +0 -1
- package/dist/esm/utils/simpleCache.js +0 -88
- package/dist/esm/utils/simpleCache.js.map +0 -1
- package/dist/esm/utils/types.d.ts +0 -5
- package/dist/esm/utils/types.d.ts.map +0 -1
- package/dist/esm/utils/types.js +0 -2
- package/dist/esm/utils/types.js.map +0 -1
- package/dist/esm/utils/userHoldings.d.ts +0 -10
- package/dist/esm/utils/userHoldings.d.ts.map +0 -1
- package/dist/esm/utils/userHoldings.js +0 -223
- package/dist/esm/utils/userHoldings.js.map +0 -1
- package/dist/esm/vaultFunctions.d.ts +0 -8
- package/dist/esm/vaultFunctions.d.ts.map +0 -1
- package/dist/esm/vaultFunctions.js +0 -31
- package/dist/esm/vaultFunctions.js.map +0 -1
- package/docs/assets/hierarchy.js +0 -1
- package/docs/assets/highlight.css +0 -78
- package/docs/assets/icons.js +0 -18
- package/docs/assets/icons.svg +0 -1
- package/docs/assets/main.js +0 -60
- package/docs/assets/navigation.js +0 -1
- package/docs/assets/search.js +0 -1
- package/docs/assets/style.css +0 -1633
- package/docs/functions/addAirdropCoin.html +0 -1
- package/docs/functions/alphaLpBreakdown.html +0 -1
- package/docs/functions/cetusLpBreakdown.html +0 -1
- package/docs/functions/claimAirdropTx.html +0 -1
- package/docs/functions/claimRewardTxb.html +0 -1
- package/docs/functions/claimRewardsTxb.html +0 -1
- package/docs/functions/claimWithdrawAlphaTx.html +0 -1
- package/docs/functions/coinAmountToXTokensDoubleAsset.html +0 -1
- package/docs/functions/coinAmountToXTokensSingleAsset.html +0 -1
- package/docs/functions/coinsInPool.html +0 -1
- package/docs/functions/collectAndSwapRewardsLyf.html +0 -1
- package/docs/functions/collectAndSwapRewardsSingleLoop.html +0 -1
- package/docs/functions/collectRewardTxb.html +0 -1
- package/docs/functions/collectRewards.html +0 -1
- package/docs/functions/collectRewardsAndSwapSlush.html +0 -1
- package/docs/functions/collectUnsuppliedBalance.html +0 -1
- package/docs/functions/deposit.html +0 -1
- package/docs/functions/depositAlphaTx.html +0 -1
- package/docs/functions/depositDoubleAssetTxb.html +0 -1
- package/docs/functions/depositSingleAssetTxb.html +0 -1
- package/docs/functions/fetchAfterTransactionEvents.html +0 -1
- package/docs/functions/fetchAirdropClaimEvents.html +0 -1
- package/docs/functions/fetchAutoCompoundingEvents.html +0 -1
- package/docs/functions/fetchAutoCompoundingEventsGql.html +0 -1
- package/docs/functions/fetchCetusPools.html +0 -1
- package/docs/functions/fetchChainIdentifier.html +0 -1
- package/docs/functions/fetchCheckRatioEvents.html +0 -1
- package/docs/functions/fetchEvents.html +0 -1
- package/docs/functions/fetchLiquidityChangeEvents.html +0 -1
- package/docs/functions/fetchMultiCategoryEvents.html +0 -1
- package/docs/functions/fetchMultiReceipts.html +0 -1
- package/docs/functions/fetchNftHolders.html +0 -1
- package/docs/functions/fetchPools.html +0 -1
- package/docs/functions/fetchPortfolioData.html +0 -1
- package/docs/functions/fetchProtocolData.html +0 -1
- package/docs/functions/fetchRequiredPrices.html +0 -1
- package/docs/functions/fetchTVL.html +0 -1
- package/docs/functions/fetchTransactions.html +0 -1
- package/docs/functions/fetchUserVaultBalances.html +0 -1
- package/docs/functions/fetchUserVaults.html +0 -1
- package/docs/functions/fetchUserWalletData.html +0 -1
- package/docs/functions/fetchVoloExchangeRate.html +0 -1
- package/docs/functions/fetchWithdrawV2Events.html +0 -1
- package/docs/functions/getAirdropShare.html +0 -1
- package/docs/functions/getAllDoubleAssetVaults.html +0 -1
- package/docs/functions/getAllSingleAssetVaults.html +0 -1
- package/docs/functions/getAllVaultBalances.html +0 -1
- package/docs/functions/getAllVaults.html +0 -1
- package/docs/functions/getAlphaUnlocks.html +0 -1
- package/docs/functions/getAlphaVaultBalance.html +0 -1
- package/docs/functions/getAmounts.html +0 -1
- package/docs/functions/getApr.html +0 -1
- package/docs/functions/getAprs.html +0 -1
- package/docs/functions/getApy.html +0 -1
- package/docs/functions/getApys.html +0 -1
- package/docs/functions/getCetusInvestorTicksMap.html +0 -1
- package/docs/functions/getCetusPool.html +0 -1
- package/docs/functions/getCetusSqrtPriceMap.html +0 -1
- package/docs/functions/getCoinAmountsFromLiquidity.html +0 -1
- package/docs/functions/getConf.html +0 -1
- package/docs/functions/getCurrentTick.html +0 -1
- package/docs/functions/getDistributor.html +0 -1
- package/docs/functions/getDoubleAssetVaultBalance.html +0 -1
- package/docs/functions/getDoubleAssetVaults.html +0 -1
- package/docs/functions/getInvestor.html +0 -1
- package/docs/functions/getInvestorPoolMap.html +0 -1
- package/docs/functions/getLastAutoCompoundTime.html +0 -1
- package/docs/functions/getLatestPrices.html +0 -1
- package/docs/functions/getLiquidity.html +0 -1
- package/docs/functions/getMultiCetusPool.html +0 -1
- package/docs/functions/getMultiInvestor.html +0 -1
- package/docs/functions/getMultiLatestPrices.html +0 -1
- package/docs/functions/getMultiParentPool.html +0 -1
- package/docs/functions/getMultiPool.html +0 -1
- package/docs/functions/getMultiReceipts.html +0 -1
- package/docs/functions/getParentPool.html +0 -1
- package/docs/functions/getPool.html +0 -1
- package/docs/functions/getPoolExchangeRate.html +0 -1
- package/docs/functions/getPoolExchangeRateMap.html +0 -1
- package/docs/functions/getPoolsWeightDistribution.html +0 -1
- package/docs/functions/getPositionRange.html +0 -1
- package/docs/functions/getPositionRanges.html +0 -1
- package/docs/functions/getPositionTicks.html +0 -1
- package/docs/functions/getPriceToTick.html +0 -1
- package/docs/functions/getRebalanceCap.html +0 -1
- package/docs/functions/getRebalanceHistories.html +0 -1
- package/docs/functions/getRebalanceHistory.html +0 -1
- package/docs/functions/getReceipts.html +0 -1
- package/docs/functions/getSingleAssetVaultBalance.html +0 -1
- package/docs/functions/getSingleAssetVaults.html +0 -1
- package/docs/functions/getSlushUserTotalXtokens.html +0 -1
- package/docs/functions/getSuiClient.html +0 -3
- package/docs/functions/getSuiNodeUrl.html +0 -3
- package/docs/functions/getTVLs-1.html +0 -1
- package/docs/functions/getTickSpacing.html +0 -1
- package/docs/functions/getTickToPrice.html +0 -1
- package/docs/functions/getTvls.html +0 -1
- package/docs/functions/getVaultBalance.html +0 -1
- package/docs/functions/getVaults.html +0 -1
- package/docs/functions/getWithdrawRequestsAndUnsuppliedAmount.html +0 -1
- package/docs/functions/initiateWithdrawAlpha.html +0 -1
- package/docs/functions/lastAutocompoundTime.html +0 -1
- package/docs/functions/liquidityToTokens.html +0 -1
- package/docs/functions/migrateBoostedToLoop.html +0 -1
- package/docs/functions/multiLiquidityToTokens.html +0 -1
- package/docs/functions/multiTokensToUsd.html +0 -1
- package/docs/functions/multiXTokensToLiquidity.html +0 -1
- package/docs/functions/parseUserWalletData.html +0 -1
- package/docs/functions/pendingRewardAmount.html +0 -1
- package/docs/functions/processWithdrawRequestsManual.html +0 -1
- package/docs/functions/setCustomSuiClient.html +0 -5
- package/docs/functions/setSuiClient.html +0 -7
- package/docs/functions/setSuiNodeUrl.html +0 -5
- package/docs/functions/setWeights.html +0 -1
- package/docs/functions/slushDeposit.html +0 -1
- package/docs/functions/slushWithdraw.html +0 -1
- package/docs/functions/updateSingleTokenPrice.html +0 -1
- package/docs/functions/withdraw.html +0 -1
- package/docs/functions/withdrawAlphaTxb.html +0 -1
- package/docs/functions/withdrawTxb.html +0 -1
- package/docs/functions/zapDepositQuoteTxb.html +0 -1
- package/docs/functions/zapDepositTxb.html +0 -1
- package/docs/hierarchy.html +0 -1
- package/docs/index.html +0 -82
- package/docs/interfaces/Coin.html +0 -12
- package/docs/interfaces/CoinPair.html +0 -3
- package/docs/interfaces/CommonEventAttributes.html +0 -7
- package/docs/interfaces/NaviVoloData.html +0 -3
- package/docs/interfaces/PoolData.html +0 -8
- package/docs/interfaces/PoolWeightDistribution.html +0 -4
- package/docs/interfaces/RebalanceHistoryType.html +0 -9
- package/docs/modules.html +0 -1
- package/docs/types/AfterTransactionEventNode.html +0 -1
- package/docs/types/AirdropClaimEventNode.html +0 -1
- package/docs/types/Allocator.html +0 -3
- package/docs/types/AlphaFiDoubleAssetVault.html +0 -9
- package/docs/types/AlphaFiMultiVaultBalance.html +0 -1
- package/docs/types/AlphaFiSingleAssetVault.html +0 -7
- package/docs/types/AlphaFiVault.html +0 -1
- package/docs/types/AlphaFiVaultBalance.html +0 -1
- package/docs/types/AlphaLendInvestor.html +0 -1
- package/docs/types/AlphaPoolType.html +0 -5
- package/docs/types/AlphaReceipt.html +0 -4
- package/docs/types/AlphaReceiptFields.html +0 -11
- package/docs/types/AlphaVaultBalance.html +0 -7
- package/docs/types/AutoBalancePoolNames.html +0 -1
- package/docs/types/AutoCompoundingEventNode.html +0 -1
- package/docs/types/Bag.html +0 -3
- package/docs/types/BluefinInvestor.html +0 -1
- package/docs/types/BluefinLyfInvestor.html +0 -1
- package/docs/types/BluefinPoolType.html +0 -5
- package/docs/types/BucketInvestor.html +0 -2
- package/docs/types/CetusInvestor.html +0 -2
- package/docs/types/CetusPoolType.html +0 -5
- package/docs/types/CetusSwapOptions.html +0 -1
- package/docs/types/CoinAmounts.html +0 -3
- package/docs/types/CoinName.html +0 -1
- package/docs/types/CoinType.html +0 -1
- package/docs/types/CommonInvestorFields.html +0 -6
- package/docs/types/CreatePoolOptions.html +0 -8
- package/docs/types/Distributor.html +0 -6
- package/docs/types/DoubleAssetMultiVaultBalance.html +0 -6
- package/docs/types/DoubleAssetPoolNames.html +0 -1
- package/docs/types/DoubleAssetTokenHoldings.html +0 -5
- package/docs/types/DoubleAssetVaultBalance.html +0 -4
- package/docs/types/EventCategory.html +0 -1
- package/docs/types/EventNode.html +0 -1
- package/docs/types/GetHoldersParams.html +0 -4
- package/docs/types/GetTokenHoldingsParams.html +0 -4
- package/docs/types/GetUserTokensFromTransactionsParams.html +0 -5
- package/docs/types/GetUserTokensInUsdFromTransactionsParams.html +0 -6
- package/docs/types/GetVaultBalanceParams.html +0 -1
- package/docs/types/HoldingsObj.html +0 -4
- package/docs/types/Icon.html +0 -1
- package/docs/types/Investor.html +0 -1
- package/docs/types/LiquidityChangeEventNode.html +0 -1
- package/docs/types/LiquidityToTokensParams.html +0 -3
- package/docs/types/LiquidityToUsdParams.html +0 -6
- package/docs/types/LoopingDebt.html +0 -5
- package/docs/types/LoopingPoolNames.html +0 -1
- package/docs/types/LpBreakdownType.html +0 -6
- package/docs/types/MemberPoolDataType.html +0 -3
- package/docs/types/MemberType.html +0 -3
- package/docs/types/MultiGetVaultBalancesParams.html +0 -4
- package/docs/types/NaviInvestor.html +0 -2
- package/docs/types/ObjectTable.html +0 -1
- package/docs/types/OtherReceiptFields.html +0 -9
- package/docs/types/PoolName.html +0 -1
- package/docs/types/PoolReceipt.html +0 -1
- package/docs/types/PoolType.html +0 -5
- package/docs/types/Receipt.html +0 -5
- package/docs/types/ReceiptGQL.html +0 -6
- package/docs/types/SingleAssetMultiVaultBalance.html +0 -5
- package/docs/types/SingleAssetPoolNames.html +0 -1
- package/docs/types/SingleAssetTokenHoldings.html +0 -4
- package/docs/types/SingleAssetVaultBalance.html +0 -3
- package/docs/types/SingleGetVaultBalancesParams.html +0 -3
- package/docs/types/StrategyType.html +0 -1
- package/docs/types/SuiNetwork.html +0 -1
- package/docs/types/SwapOptions.html +0 -1
- package/docs/types/TickSpacing.html +0 -1
- package/docs/types/TotalWeightType.html +0 -3
- package/docs/types/TransactionBlockType.html +0 -6
- package/docs/types/UserPoolLiquidity.html +0 -4
- package/docs/types/UserPoolTokenHoldings.html +0 -1
- package/docs/types/UserUsdHoldings.html +0 -4
- package/docs/types/VaultBalance.html +0 -1
- package/docs/types/VecMap.html +0 -3
- package/docs/types/VoteCastEvent.html +0 -1
- package/docs/types/WithdrawV2EventNode.html +0 -1
- package/docs/variables/AUTOBALANCE_SUI_FIRST_POOLS.html +0 -1
- package/docs/variables/AUTOBALANCE_SUI_SECOND_POOLS.html +0 -1
- package/docs/variables/AUTOBALANCE_TYPE_1_POOLS.html +0 -1
- package/docs/variables/alphalendMarketIdMap.html +0 -1
- package/docs/variables/bluefinPoolMap.html +0 -1
- package/docs/variables/cetusPoolMap.html +0 -1
- package/docs/variables/coinsList.html +0 -1
- package/docs/variables/defunctPoolsSet.html +0 -1
- package/docs/variables/doubleAssetPoolCoinMap.html +0 -1
- package/docs/variables/eventCategories.html +0 -1
- package/docs/variables/ignoredWalletsForDailyRevenue.html +0 -1
- package/docs/variables/loopingAccountAddresses.html +0 -1
- package/docs/variables/loopingPoolCoinMap.html +0 -1
- package/docs/variables/naviAssetMap.html +0 -1
- package/docs/variables/naviPriceFeedMap.html +0 -1
- package/docs/variables/poolIdPoolNameMap.html +0 -1
- package/docs/variables/poolInfo.html +0 -1
- package/docs/variables/singleAssetPoolCoinMap.html +0 -1
- package/docs/variables/stableCoins.html +0 -1
- package/eslint.config.js +0 -53
- package/prettier.config.js +0 -3
- package/scripts/package-lock.json +0 -2506
- package/scripts/package.json +0 -30
- package/scripts/testRun.ts +0 -117
- package/scripts/utils.ts +0 -108
- /package/dist/cjs/{common → models}/types.js +0 -0
- /package/dist/esm/{common → models}/types.js +0 -0
package/dist/cjs/common/maps.js
DELETED
|
@@ -1,2527 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ignoredWalletsForDailyRevenue = exports.defunctPoolsSet = exports.parentPoolMap = exports.poolIdQueryInvestorMap = exports.poolIdQueryCetusPoolMap = exports.poolIdQueryPoolMap = exports.coinTypeMap = exports.poolIdPoolNameMap = exports.poolInfo = exports.naviPriceFeedMap = exports.loopingAccountAddresses = exports.bluefinPoolMap = exports.cetusPoolMap = exports.alphalendMarketIdMap = exports.naviAssetMap = exports.loopingPoolCoinMap = exports.singleAssetPoolCoinMap = exports.doubleAssetPoolCoinMap = exports.AUTOBALANCE_TYPE_1_POOLS = exports.AUTOBALANCE_SUI_SECOND_POOLS = exports.AUTOBALANCE_SUI_FIRST_POOLS = exports.stableCoins = void 0;
|
|
4
|
-
exports.coinsInPool = coinsInPool;
|
|
5
|
-
exports.getInvestorPoolMap = getInvestorPoolMap;
|
|
6
|
-
exports.getPoolExchangeRateMap = getPoolExchangeRateMap;
|
|
7
|
-
exports.getCetusSqrtPriceMap = getCetusSqrtPriceMap;
|
|
8
|
-
exports.getCetusInvestorTicksMap = getCetusInvestorTicksMap;
|
|
9
|
-
exports.getLiquidityPoolSqrtPriceMap = getLiquidityPoolSqrtPriceMap;
|
|
10
|
-
exports.getLiquidityPoolInvestorTicksMap = getLiquidityPoolInvestorTicksMap;
|
|
11
|
-
exports.getTokenPriceMap = getTokenPriceMap;
|
|
12
|
-
const constants_js_1 = require("./constants.js");
|
|
13
|
-
const client_js_1 = require("../sui-sdk/client.js");
|
|
14
|
-
const coins_js_1 = require("./coins.js");
|
|
15
|
-
const getReceipts_js_1 = require("../sui-sdk/functions/getReceipts.js");
|
|
16
|
-
const prices_js_1 = require("../utils/prices.js");
|
|
17
|
-
exports.stableCoins = [
|
|
18
|
-
"USDT",
|
|
19
|
-
"WUSDT",
|
|
20
|
-
"USDC",
|
|
21
|
-
"WUSDC",
|
|
22
|
-
"USDY",
|
|
23
|
-
"WUSDY",
|
|
24
|
-
"AUSD",
|
|
25
|
-
"BUCK",
|
|
26
|
-
"SUIUSDT",
|
|
27
|
-
];
|
|
28
|
-
exports.AUTOBALANCE_SUI_FIRST_POOLS = [
|
|
29
|
-
"BLUEFIN-AUTOBALANCE-SUI-USDC",
|
|
30
|
-
"BLUEFIN-AUTOBALANCE-SUI-LBTC",
|
|
31
|
-
"BLUEFIN-AUTOBALANCE-SUI-USDC-175",
|
|
32
|
-
];
|
|
33
|
-
exports.AUTOBALANCE_SUI_SECOND_POOLS = [
|
|
34
|
-
"BLUEFIN-AUTOBALANCE-DEEP-SUI",
|
|
35
|
-
"BLUEFIN-AUTOBALANCE-BLUE-SUI",
|
|
36
|
-
"BLUEFIN-AUTOBALANCE-DEEP-SUI-175",
|
|
37
|
-
"BLUEFIN-AUTOBALANCE-WAL-SUI",
|
|
38
|
-
];
|
|
39
|
-
exports.AUTOBALANCE_TYPE_1_POOLS = [
|
|
40
|
-
"BLUEFIN-AUTOBALANCE-USDT-USDC",
|
|
41
|
-
"BLUEFIN-AUTOBALANCE-SUIUSDT-USDC",
|
|
42
|
-
"BLUEFIN-AUTOBALANCE-DEEP-BLUE",
|
|
43
|
-
"BLUEFIN-AUTOBALANCE-WAL-USDC",
|
|
44
|
-
"BLUEFIN-AUTOBALANCE-SUIUSDT-USDC-ZERO-ZERO",
|
|
45
|
-
"BLUEFIN-AUTOBALANCE-XBTC-SUIBTC",
|
|
46
|
-
];
|
|
47
|
-
exports.doubleAssetPoolCoinMap = {
|
|
48
|
-
"USDT-WUSDC": { coin1: "USDT", coin2: "WUSDC" },
|
|
49
|
-
"ALPHA-SUI": { coin1: "ALPHA", coin2: "SUI" },
|
|
50
|
-
"HASUI-SUI": { coin1: "HASUI", coin2: "SUI" },
|
|
51
|
-
"USDY-WUSDC": { coin1: "USDY", coin2: "WUSDC" },
|
|
52
|
-
"WUSDC-SUI": { coin1: "WUSDC", coin2: "SUI" },
|
|
53
|
-
"WETH-WUSDC": { coin1: "WETH", coin2: "WUSDC" },
|
|
54
|
-
"WUSDC-WBTC": { coin1: "WUSDC", coin2: "WBTC" },
|
|
55
|
-
"NAVX-SUI": { coin1: "NAVX", coin2: "SUI" },
|
|
56
|
-
"BUCK-WUSDC": { coin1: "BUCK", coin2: "WUSDC" },
|
|
57
|
-
"CETUS-SUI": { coin1: "CETUS", coin2: "SUI" },
|
|
58
|
-
"ALPHA-WUSDC": { coin1: "ALPHA", coin2: "WUSDC" },
|
|
59
|
-
"WSOL-WUSDC": { coin1: "WSOL", coin2: "WUSDC" },
|
|
60
|
-
"SCA-SUI": { coin1: "SCA", coin2: "SUI" },
|
|
61
|
-
"USDC-SUI": { coin1: "USDC", coin2: "SUI" },
|
|
62
|
-
"USDC-USDT": { coin1: "USDC", coin2: "USDT" },
|
|
63
|
-
"ALPHA-USDC": { coin1: "ALPHA", coin2: "USDC" },
|
|
64
|
-
"USDC-WUSDC": { coin1: "USDC", coin2: "WUSDC" },
|
|
65
|
-
"FUD-SUI": { coin1: "FUD", coin2: "SUI" },
|
|
66
|
-
"USDC-ETH": { coin1: "USDC", coin2: "ETH" },
|
|
67
|
-
"DEEP-SUI": { coin1: "DEEP", coin2: "SUI" },
|
|
68
|
-
"BUCK-SUI": { coin1: "BUCK", coin2: "SUI" },
|
|
69
|
-
"BLUEFIN-SUI-USDC": { coin1: "SUI", coin2: "USDC" },
|
|
70
|
-
"BLUEFIN-USDT-USDC": { coin1: "USDT", coin2: "USDC" },
|
|
71
|
-
"BLUEFIN-SUI-BUCK": { coin1: "SUI", coin2: "BUCK" },
|
|
72
|
-
"BLUEFIN-AUSD-USDC": { coin1: "AUSD", coin2: "USDC" },
|
|
73
|
-
"BLUEFIN-SUI-AUSD": { coin1: "SUI", coin2: "AUSD" },
|
|
74
|
-
"BLUEFIN-ALPHA-USDC": { coin1: "ALPHA", coin2: "USDC" },
|
|
75
|
-
"BLUEFIN-WBTC-USDC": { coin1: "WBTC", coin2: "USDC" },
|
|
76
|
-
"BLUEFIN-NAVX-VSUI": { coin1: "NAVX", coin2: "VSUI" },
|
|
77
|
-
"BLUEFIN-BLUE-SUI": { coin1: "BLUE", coin2: "SUI" },
|
|
78
|
-
"BLUEFIN-BLUE-USDC": { coin1: "BLUE", coin2: "USDC" },
|
|
79
|
-
"BLUEFIN-SEND-USDC": { coin1: "SEND", coin2: "USDC" },
|
|
80
|
-
"BLUEFIN-WBTC-SUI": { coin1: "WBTC", coin2: "SUI" },
|
|
81
|
-
"BLUEFIN-DEEP-SUI": { coin1: "DEEP", coin2: "SUI" },
|
|
82
|
-
"BLUEFIN-STSUI-SUI": { coin1: "STSUI", coin2: "SUI" },
|
|
83
|
-
"BLUEFIN-STSUI-USDC": { coin1: "STSUI", coin2: "USDC" },
|
|
84
|
-
"BLUEFIN-STSUI-ETH": { coin1: "STSUI", coin2: "ETH" },
|
|
85
|
-
"BLUEFIN-STSUI-WSOL": { coin1: "STSUI", coin2: "WSOL" },
|
|
86
|
-
"BLUEFIN-ALPHA-STSUI": { coin1: "ALPHA", coin2: "STSUI" },
|
|
87
|
-
"BLUEFIN-AUTOBALANCE-USDT-USDC": { coin1: "USDT", coin2: "USDC" },
|
|
88
|
-
"BLUEFIN-AUTOBALANCE-SUI-USDC": { coin1: "SUI", coin2: "USDC" },
|
|
89
|
-
"BLUEFIN-AUTOBALANCE-SUIUSDT-USDC": { coin1: "SUIUSDT", coin2: "USDC" },
|
|
90
|
-
"BLUEFIN-SUIUSDT-USDC": { coin1: "SUIUSDT", coin2: "USDC" },
|
|
91
|
-
"BLUEFIN-AUTOBALANCE-DEEP-BLUE": { coin1: "DEEP", coin2: "BLUE" },
|
|
92
|
-
"BLUEFIN-AUTOBALANCE-DEEP-SUI": { coin1: "DEEP", coin2: "SUI" },
|
|
93
|
-
"BLUEFIN-AUTOBALANCE-BLUE-SUI": { coin1: "BLUE", coin2: "SUI" },
|
|
94
|
-
"BLUEFIN-STSUI-BUCK": { coin1: "STSUI", coin2: "BUCK" },
|
|
95
|
-
"BLUEFIN-STSUI-MUSD": { coin1: "STSUI", coin2: "MUSD" },
|
|
96
|
-
"BLUEFIN-FUNGIBLE-STSUI-SUI": { coin1: "STSUI", coin2: "SUI" },
|
|
97
|
-
"BLUEFIN-SUIBTC-USDC": { coin1: "SUIBTC", coin2: "USDC" },
|
|
98
|
-
"BLUEFIN-AUTOBALANCE-SUI-LBTC": { coin1: "SUI", coin2: "LBTC" },
|
|
99
|
-
"BLUEFIN-LBTC-SUIBTC": { coin1: "LBTC", coin2: "SUIBTC" },
|
|
100
|
-
"USDC-SUIUSDT": { coin1: "USDC", coin2: "SUIUSDT" },
|
|
101
|
-
"BLUEFIN-WAL-USDC": { coin1: "WAL", coin2: "USDC" },
|
|
102
|
-
"BLUEFIN-WAL-STSUI": { coin1: "WAL", coin2: "STSUI" },
|
|
103
|
-
"BLUEFIN-AUTOBALANCE-WAL-USDC": { coin1: "WAL", coin2: "USDC" },
|
|
104
|
-
"BLUEFIN-AUTOBALANCE-SUIUSDT-USDC-ZERO-ZERO": {
|
|
105
|
-
coin1: "SUIUSDT",
|
|
106
|
-
coin2: "USDC",
|
|
107
|
-
},
|
|
108
|
-
"BLUEFIN-AUTOBALANCE-DEEP-SUI-175": { coin1: "DEEP", coin2: "SUI" },
|
|
109
|
-
"BLUEFIN-AUTOBALANCE-WAL-SUI": { coin1: "WAL", coin2: "SUI" },
|
|
110
|
-
"BLUEFIN-AUTOBALANCE-SUI-USDC-175": { coin1: "SUI", coin2: "USDC" },
|
|
111
|
-
"BLUEFIN-LYF-STSUI-SUI": { coin1: "STSUI", coin2: "SUI" },
|
|
112
|
-
"BLUEFIN-LYF-SUIUSDT-USDC": { coin1: "SUIUSDT", coin2: "USDC" },
|
|
113
|
-
"BLUEFIN-AUTOBALANCE-XBTC-SUIBTC": { coin1: "XBTC", coin2: "SUIBTC" },
|
|
114
|
-
};
|
|
115
|
-
exports.singleAssetPoolCoinMap = {
|
|
116
|
-
ALPHA: { coin: "ALPHA" },
|
|
117
|
-
"NAVI-SUI": { coin: "SUI" },
|
|
118
|
-
"NAVI-VSUI": { coin: "VSUI" },
|
|
119
|
-
"NAVI-WETH": { coin: "WETH" },
|
|
120
|
-
"NAVI-USDT": { coin: "USDT" },
|
|
121
|
-
"NAVI-WUSDC": { coin: "WUSDC" },
|
|
122
|
-
"NAVI-USDC": { coin: "USDC" },
|
|
123
|
-
"NAVI-HASUI": { coin: "HASUI" },
|
|
124
|
-
"NAVI-LOOP-SUI-VSUI": { coin: "SUI" },
|
|
125
|
-
"NAVI-LOOP-USDC-USDT": { coin: "USDC" },
|
|
126
|
-
"BUCKET-BUCK": { coin: "BUCK" },
|
|
127
|
-
"NAVI-USDY": { coin: "USDY" },
|
|
128
|
-
"NAVI-AUSD": { coin: "AUSD" },
|
|
129
|
-
"NAVI-ETH": { coin: "ETH" },
|
|
130
|
-
"NAVI-LOOP-HASUI-SUI": { coin: "HASUI" },
|
|
131
|
-
"NAVI-LOOP-USDT-USDC": { coin: "USDT" },
|
|
132
|
-
"NAVI-NS": { coin: "NS" },
|
|
133
|
-
"NAVI-NAVX": { coin: "NAVX" },
|
|
134
|
-
"NAVI-STSUI": { coin: "STSUI" },
|
|
135
|
-
"ALPHALEND-LOOP-SUI-STSUI": { coin: "SUI" },
|
|
136
|
-
"NAVI-SUIBTC": { coin: "SUIBTC" },
|
|
137
|
-
"NAVI-SUIUSDT": { coin: "SUIUSDT" },
|
|
138
|
-
"NAVI-DEEP": { coin: "DEEP" },
|
|
139
|
-
"NAVI-WAL": { coin: "WAL" },
|
|
140
|
-
"ALPHALEND-SINGLE-LOOP-TBTC": { coin: "TBTC" },
|
|
141
|
-
"ALPHALEND-SINGLE-LOOP-SUIBTC": { coin: "SUIBTC" },
|
|
142
|
-
"ALPHALEND-SINGLE-LOOP-XAUM": { coin: "XAUM" },
|
|
143
|
-
"ALPHALEND-SLUSH-SUI": { coin: "SUI" },
|
|
144
|
-
"ALPHALEND-SLUSH-WAL": { coin: "WAL" },
|
|
145
|
-
"ALPHALEND-SLUSH-USDC": { coin: "USDC" },
|
|
146
|
-
"ALPHALEND-SLUSH-DEEP": { coin: "DEEP" },
|
|
147
|
-
"ALPHALEND-SINGLE-LOOP-WBTC": { coin: "WBTC-LayerZero" },
|
|
148
|
-
"ALPHALEND-SINGLE-LOOP-DEEP": { coin: "DEEP" },
|
|
149
|
-
"ALPHALEND-SINGLE-LOOP-WAL": { coin: "WAL" },
|
|
150
|
-
"ALPHALEND-SLUSH-STSUI-LOOP": { coin: "STSUI" },
|
|
151
|
-
};
|
|
152
|
-
exports.loopingPoolCoinMap = {
|
|
153
|
-
"NAVI-LOOP-HASUI-SUI": { supplyCoin: "HASUI", borrowCoin: "SUI" },
|
|
154
|
-
"NAVI-LOOP-USDT-USDC": { supplyCoin: "USDT", borrowCoin: "USDC" },
|
|
155
|
-
"NAVI-LOOP-SUI-VSUI": { supplyCoin: "VSUI", borrowCoin: "SUI" },
|
|
156
|
-
"NAVI-LOOP-USDC-USDT": { supplyCoin: "USDC", borrowCoin: "USDT" },
|
|
157
|
-
"ALPHALEND-LOOP-SUI-STSUI": { supplyCoin: "STSUI", borrowCoin: "SUI" },
|
|
158
|
-
"ALPHALEND-SINGLE-LOOP-TBTC": { supplyCoin: "TBTC", borrowCoin: "TBTC" },
|
|
159
|
-
"ALPHALEND-SINGLE-LOOP-SUIBTC": {
|
|
160
|
-
supplyCoin: "SUIBTC",
|
|
161
|
-
borrowCoin: "SUIBTC",
|
|
162
|
-
},
|
|
163
|
-
"ALPHALEND-SINGLE-LOOP-XAUM": {
|
|
164
|
-
supplyCoin: "XAUM",
|
|
165
|
-
borrowCoin: "XAUM",
|
|
166
|
-
},
|
|
167
|
-
"ALPHALEND-SINGLE-LOOP-WBTC": {
|
|
168
|
-
supplyCoin: "WBTC-LayerZero",
|
|
169
|
-
borrowCoin: "WBTC-LayerZero",
|
|
170
|
-
},
|
|
171
|
-
"ALPHALEND-SINGLE-LOOP-DEEP": {
|
|
172
|
-
supplyCoin: "DEEP",
|
|
173
|
-
borrowCoin: "DEEP",
|
|
174
|
-
},
|
|
175
|
-
"ALPHALEND-SINGLE-LOOP-WAL": {
|
|
176
|
-
supplyCoin: "WAL",
|
|
177
|
-
borrowCoin: "WAL",
|
|
178
|
-
},
|
|
179
|
-
"ALPHALEND-SLUSH-STSUI-LOOP": {
|
|
180
|
-
supplyCoin: "STSUI",
|
|
181
|
-
borrowCoin: "SUI",
|
|
182
|
-
},
|
|
183
|
-
};
|
|
184
|
-
exports.naviAssetMap = {
|
|
185
|
-
SUI: "0",
|
|
186
|
-
WUSDC: "1",
|
|
187
|
-
USDT: "2",
|
|
188
|
-
WETH: "3",
|
|
189
|
-
CETUS: "4",
|
|
190
|
-
VSUI: "5",
|
|
191
|
-
HASUI: "6",
|
|
192
|
-
NAVX: "7",
|
|
193
|
-
USDC: "10",
|
|
194
|
-
USDY: "12",
|
|
195
|
-
AUSD: "9",
|
|
196
|
-
ETH: "11",
|
|
197
|
-
NS: "13",
|
|
198
|
-
STSUI: "20",
|
|
199
|
-
SUIBTC: "21",
|
|
200
|
-
SUIUSDT: "19",
|
|
201
|
-
DEEP: "15",
|
|
202
|
-
WAL: "24",
|
|
203
|
-
};
|
|
204
|
-
exports.alphalendMarketIdMap = {
|
|
205
|
-
SUI: "1",
|
|
206
|
-
STSUI: "2",
|
|
207
|
-
SUIUSDT: "5",
|
|
208
|
-
USDC: "6",
|
|
209
|
-
TBTC: "14",
|
|
210
|
-
SUIBTC: "3",
|
|
211
|
-
XAUM: "18",
|
|
212
|
-
"WBTC-LayerZero": "29",
|
|
213
|
-
DEEP: "11",
|
|
214
|
-
WAL: "7",
|
|
215
|
-
};
|
|
216
|
-
exports.cetusPoolMap = {
|
|
217
|
-
"WUSDC-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_CETUS_POOL_ID,
|
|
218
|
-
"USDC-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_CETUS_POOL_ID,
|
|
219
|
-
"USDC-USDT": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_CETUS_POOL_ID,
|
|
220
|
-
"CETUS-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_CETUS_POOL_ID,
|
|
221
|
-
"USDT-WUSDC": constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_CETUS_POOL_ID,
|
|
222
|
-
"USDY-WUSDC": constants_js_1.conf[constants_js_1.CONF_ENV].USDY_WUSDC_CETUS_POOL_ID,
|
|
223
|
-
"HASUI-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].HASUI_SUI_CETUS_POOL_ID,
|
|
224
|
-
"ALPHA-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_CETUS_POOL_ID,
|
|
225
|
-
"WETH-WUSDC": constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_CETUS_POOL_ID,
|
|
226
|
-
"WUSDC-WBTC": constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_CETUS_POOL_ID,
|
|
227
|
-
"VSUI-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].VSUI_SUI_CETUS_POOL_ID,
|
|
228
|
-
"NAVX-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_CETUS_POOL_ID,
|
|
229
|
-
"WUSDC-CETUS": constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_CETUS_CETUS_POOL_ID,
|
|
230
|
-
"BUCK-WUSDC": constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_WUSDC_CETUS_POOL_ID,
|
|
231
|
-
"ALPHA-WUSDC": constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_CETUS_POOL_ID,
|
|
232
|
-
"WSOL-WUSDC": constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_CETUS_POOL_ID,
|
|
233
|
-
"SCA-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].SCA_SUI_CETUS_POOL_ID,
|
|
234
|
-
"ALPHA-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_CETUS_POOL_ID,
|
|
235
|
-
"USDC-WUSDC": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_CETUS_POOL_ID,
|
|
236
|
-
"FUD-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_CETUS_POOL_ID,
|
|
237
|
-
"USDC-ETH": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_CETUS_POOL_ID,
|
|
238
|
-
"DEEP-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_CETUS_POOL_ID,
|
|
239
|
-
"BUCK-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_CETUS_POOL_ID,
|
|
240
|
-
"USDC-BUCK": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_BUCK_CETUS_POOL_ID,
|
|
241
|
-
"USDC-AUSD": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_AUSD_CETUS_POOL_ID,
|
|
242
|
-
"NS-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].NS_SUI_CETUS_POOL_ID,
|
|
243
|
-
"AUSD-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].AUSD_SUI_CETUS_POOL_ID,
|
|
244
|
-
"USDC-WBTC": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WBTC_CETUS_POOL_ID,
|
|
245
|
-
"NAVX-VSUI": constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_VSUI_CETUS_POOL_ID,
|
|
246
|
-
"BLUE-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUE_SUI_CETUS_POOL_ID,
|
|
247
|
-
"BLUE-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUE_USDC_CETUS_POOL_ID,
|
|
248
|
-
"USDC-SEND": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SEND_CETUS_POOL_ID,
|
|
249
|
-
"WBTC-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].WBTC_SUI_CETUS_POOL_ID,
|
|
250
|
-
"STSUI-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].STSUI_SUI_CETUS_POOL_ID,
|
|
251
|
-
// "USDC-STSUI": conf[CONF_ENV].USDC_STSUI_CETUS_POOL_ID,
|
|
252
|
-
// "STSUI-ETH": conf[CONF_ENV].STSUI_ETH_CETUS_POOL_ID,
|
|
253
|
-
// "STSUI-WSOL": conf[CONF_ENV].STSUI_WSOL_CETUS_POOL_ID,
|
|
254
|
-
"USDC-SUIUSDT": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_CETUS_POOL_ID,
|
|
255
|
-
"BLUE-DEEP": constants_js_1.conf[constants_js_1.CONF_ENV].BLUE_DEEP_CETUS_POOL_ID,
|
|
256
|
-
"ETH-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].ETH_SUI_CETUS_POOL_ID,
|
|
257
|
-
"WSOL-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_SUI_CETUS_POOL_ID,
|
|
258
|
-
"MUSD-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].MUSD_SUI_CETUS_POOL_ID,
|
|
259
|
-
"USDC-SUIBTC": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIBTC_CETUS_POOL_ID,
|
|
260
|
-
"SUIUSDT-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].SUIUSDT_SUI_CETUS_POOL_ID,
|
|
261
|
-
"LBTC-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].LBTC_SUI_CETUS_POOL_ID,
|
|
262
|
-
"SUIBTC-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].SUIBTC_SUI_CETUS_POOL_ID,
|
|
263
|
-
"SUIBTC-LBTC": constants_js_1.conf[constants_js_1.CONF_ENV].SUIBTC_LBTC_CETUS_POOL_ID,
|
|
264
|
-
"WAL-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].WAL_SUI_CETUS_POOL_ID,
|
|
265
|
-
"USDC-WAL": constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WAL_CETUS_POOL_ID,
|
|
266
|
-
"SUIBTC-XBTC": constants_js_1.conf[constants_js_1.CONF_ENV].SUIBTC_XBTC_CETUS_POOL_ID,
|
|
267
|
-
};
|
|
268
|
-
exports.bluefinPoolMap = {
|
|
269
|
-
"SUI-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_USDC_POOL,
|
|
270
|
-
"DEEP-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_DEEP_SUI_POOL,
|
|
271
|
-
"USDT-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_USDT_USDC_POOL,
|
|
272
|
-
"SUI-BUCK": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_BUCK_POOL,
|
|
273
|
-
"AUSD-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_AUSD_USDC_POOL,
|
|
274
|
-
"SUI-AUSD": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_AUSD_POOL,
|
|
275
|
-
"ALPHA-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_ALPHA_USDC_POOL,
|
|
276
|
-
"WBTC-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WBTC_USDC_POOL,
|
|
277
|
-
"NAVX-VSUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_NAVX_VSUI_POOL,
|
|
278
|
-
"BLUE-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_BLUE_SUI_POOL,
|
|
279
|
-
"BLUE-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_BLUE_USDC_POOL,
|
|
280
|
-
"BLUE-SUI-AUTOCOMPOUND": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_BLUE_SUI_POOL_AUTOCOMPOUND,
|
|
281
|
-
"SEND-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SEND_USDC_POOL,
|
|
282
|
-
"WBTC-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WBTC_SUI_POOL,
|
|
283
|
-
"STSUI-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_SUI_POOL,
|
|
284
|
-
"STSUI-SUI-ZERO-ZERO": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_SUI_ZERO_ZERO_POOL,
|
|
285
|
-
"STSUI-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_USDC_POOL,
|
|
286
|
-
"STSUI-ETH": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_ETH_POOL,
|
|
287
|
-
"STSUI-WSOL": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_WSOL_POOL,
|
|
288
|
-
"ALPHA-STSUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_ALPHA_STSUI_POOL,
|
|
289
|
-
"SUI-ALPHA": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_ALPHA_POOL,
|
|
290
|
-
"SUIUSDT-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUIUSDT_USDC_POOL,
|
|
291
|
-
"DEEP-BLUE": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_DEEP_BLUE_POOL,
|
|
292
|
-
"SUI-ETH": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_ETH_POOL,
|
|
293
|
-
"SUI-WSOL": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_WSOL_POOL,
|
|
294
|
-
"SUI-MUSD": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_MUSD_POOL,
|
|
295
|
-
"STSUI-MUSD": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_MUSD_POOL,
|
|
296
|
-
"SUIBTC-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUIBTC_USDC_POOL,
|
|
297
|
-
"SUI-SUIBTC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_SUIBTC_POOL,
|
|
298
|
-
"VSUI-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_VSUI_SUI_POOL,
|
|
299
|
-
"SUI-LBTC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_LBTC_POOL,
|
|
300
|
-
"LBTC-SUIBTC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_LBTC_SUIBTC_POOL,
|
|
301
|
-
"WAL-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WAL_USDC_POOL,
|
|
302
|
-
"SUI-WAL": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_WAL_POOL,
|
|
303
|
-
"WAL-STSUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WAL_STSUI_POOL,
|
|
304
|
-
"SUIUSDT-USDC-ZERO-ZERO": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUIUSDT_USDC_ZERO_ZERO_POOL,
|
|
305
|
-
"WAL-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WAL_SUI_POOL,
|
|
306
|
-
"NAVX-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_NAVX_SUI_POOL,
|
|
307
|
-
"NAVX-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_NAVX_USDC_POOL,
|
|
308
|
-
"VSUI-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_VSUI_USDC_POOL,
|
|
309
|
-
"TBTC-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_TBTC_USDC_POOL,
|
|
310
|
-
"SUI-USDC-175": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_USDC_175_POOL,
|
|
311
|
-
"DEEP-SUI-175": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_DEEP_SUI_175_POOL,
|
|
312
|
-
"XAUM-XBTC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_XAUM_XBTC_POOL,
|
|
313
|
-
"XAUM-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_XAUM_USDC_POOL,
|
|
314
|
-
"XBTC-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_XBTC_USDC_POOL,
|
|
315
|
-
"XBTC-SUIBTC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_XBTC_SUIBTC_POOL,
|
|
316
|
-
"WBTC-LayerZero-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WBTC_LAYERZERO_USDC_POOL,
|
|
317
|
-
"DEEP-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_DEEP_USDC_POOL,
|
|
318
|
-
};
|
|
319
|
-
exports.loopingAccountAddresses = {
|
|
320
|
-
"NAVI-LOOP-USDC-USDT": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_USDT_LOOP_ACCOUNT_ADDRESS,
|
|
321
|
-
"NAVI-LOOP-USDT-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_USDC_LOOP_ACCOUNT_ADDRESS,
|
|
322
|
-
"NAVI-LOOP-SUI-VSUI": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_VSUI_LOOP_ACCOUNT_ADDRESS,
|
|
323
|
-
"NAVI-LOOP-HASUI-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_HASUI_SUI_LOOP_ACCOUNT_ADDRESS,
|
|
324
|
-
"NAVI-AUSD": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_ACCOUNT_ADDRESS,
|
|
325
|
-
"NAVI-ETH": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_ETH_ACCOUNT_ADDRESS,
|
|
326
|
-
"NAVI-NS": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NS_ACCOUNT_ADDRESS,
|
|
327
|
-
"NAVI-STSUI": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_STSUI_ACCOUNT_ADDRESS,
|
|
328
|
-
"NAVI-SUIUSDT": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIUSDT_ACCOUNT_ADDRESS,
|
|
329
|
-
"NAVI-SUIBTC": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIBTC_ACCOUNT_ADDRESS,
|
|
330
|
-
"NAVI-USDT": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_ACCOUNT_ADDRESS,
|
|
331
|
-
"NAVI-WUSDC": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WUSDC_ACCOUNT_ADDRESS,
|
|
332
|
-
"NAVI-USDC": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_ACCOUNT_ADDRESS,
|
|
333
|
-
"NAVI-USDY": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDY_ACCOUNT_ADDRESS,
|
|
334
|
-
"NAVI-SUI": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_ACCOUNT_ADDRESS,
|
|
335
|
-
"NAVI-VSUI": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_ACCOUNT_ADDRESS,
|
|
336
|
-
"NAVI-DEEP": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_DEEP_ACCOUNT_ADDRESS,
|
|
337
|
-
"NAVI-WAL": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WAL_ACCOUNT_ADDRESS,
|
|
338
|
-
"NAVI-NAVX": constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NAVX_ACCOUNT_ADDRESS,
|
|
339
|
-
};
|
|
340
|
-
exports.naviPriceFeedMap = {
|
|
341
|
-
SUI: {
|
|
342
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].SUI_FEED_ID,
|
|
343
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].SUI_PYTH_PRICE_INFO,
|
|
344
|
-
},
|
|
345
|
-
WUSDC: {
|
|
346
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_FEED_ID,
|
|
347
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_PYTH_PRICE_INFO,
|
|
348
|
-
},
|
|
349
|
-
USDC: {
|
|
350
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_FEED_ID,
|
|
351
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_PYTH_PRICE_INFO,
|
|
352
|
-
},
|
|
353
|
-
USDT: {
|
|
354
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_FEED_ID,
|
|
355
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_PYTH_PRICE_INFO,
|
|
356
|
-
},
|
|
357
|
-
WETH: {
|
|
358
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_FEED_ID,
|
|
359
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_PYTH_PRICE_INFO,
|
|
360
|
-
},
|
|
361
|
-
CETUS: {
|
|
362
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_FEED_ID,
|
|
363
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_PYTH_PRICE_INFO,
|
|
364
|
-
},
|
|
365
|
-
NAVX: {
|
|
366
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_FEED_ID,
|
|
367
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_PYTH_PRICE_INFO,
|
|
368
|
-
},
|
|
369
|
-
WBTC: {
|
|
370
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].WBTC_FEED_ID,
|
|
371
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].WBTC_PYTH_PRICE_INFO,
|
|
372
|
-
},
|
|
373
|
-
AUSD: {
|
|
374
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].AUSD_FEED_ID,
|
|
375
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].AUSD_PYTH_PRICE_INFO,
|
|
376
|
-
},
|
|
377
|
-
ETH: {
|
|
378
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].ETH_FEED_ID,
|
|
379
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].ETH_PYTH_PRICE_INFO,
|
|
380
|
-
},
|
|
381
|
-
USDY: {
|
|
382
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].USDY_FEED_ID,
|
|
383
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].USDY_PYTH_PRICE_INFO,
|
|
384
|
-
},
|
|
385
|
-
NS: {
|
|
386
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].NS_FEED_ID,
|
|
387
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].NS_PYTH_PRICE_INFO,
|
|
388
|
-
},
|
|
389
|
-
DEEP: {
|
|
390
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_FEED_ID,
|
|
391
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_PYTH_PRICE_INFO,
|
|
392
|
-
},
|
|
393
|
-
BLUE: {
|
|
394
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUE_FEED_ID,
|
|
395
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].BLUE_PYTH_PRICE_INFO,
|
|
396
|
-
},
|
|
397
|
-
BUCK: {
|
|
398
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_FEED_ID,
|
|
399
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_PYTH_PRICE_INFO,
|
|
400
|
-
},
|
|
401
|
-
SUIUSDT: {
|
|
402
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].SUIUSDT_FEED_ID,
|
|
403
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].SUIUSDT_PYTH_PRICE_INFO,
|
|
404
|
-
},
|
|
405
|
-
STSUI: {
|
|
406
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].STSUI_FEED_ID,
|
|
407
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].STSUI_PYTH_PRICE_INFO,
|
|
408
|
-
},
|
|
409
|
-
SUIBTC: {
|
|
410
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].SUIBTC_FEED_ID,
|
|
411
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].SUIBTC_PYTH_PRICE_INFO,
|
|
412
|
-
},
|
|
413
|
-
VSUI: {
|
|
414
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].VSUI_FEED_ID,
|
|
415
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].VSUI_PYTH_PRICE_INFO,
|
|
416
|
-
},
|
|
417
|
-
HASUI: {
|
|
418
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].HASUI_FEED_ID,
|
|
419
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].HASUI_PYTH_PRICE_INFO,
|
|
420
|
-
},
|
|
421
|
-
WAL: {
|
|
422
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].HASUI_FEED_ID, //todo: change when real ids for wal are found
|
|
423
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].HASUI_PYTH_PRICE_INFO,
|
|
424
|
-
},
|
|
425
|
-
DMC: {
|
|
426
|
-
feedId: constants_js_1.conf[constants_js_1.CONF_ENV].DMC_FEED_ID,
|
|
427
|
-
pythPriceInfo: constants_js_1.conf[constants_js_1.CONF_ENV].DMC_PYTH_PRICE_INFO,
|
|
428
|
-
},
|
|
429
|
-
};
|
|
430
|
-
exports.poolInfo = {
|
|
431
|
-
"BLUEFIN-LYF-SUIUSDT-USDC": {
|
|
432
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LYF_LATEST_PACKAGE_ID,
|
|
433
|
-
packageNumber: 11,
|
|
434
|
-
parentProtocolName: "BLUEFIN",
|
|
435
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUIUSDT_USDC_ZERO_ZERO_POOL,
|
|
436
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_SUIUSDT_USDC_POOL,
|
|
437
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_SUIUSDT_USDC_INVESTOR,
|
|
438
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_SUIUSDT_USDC_RECEIPT_NAME,
|
|
439
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_SUIUSDT_USDC_RECEIPT,
|
|
440
|
-
assetTypes: [coins_js_1.coinsList["SUIUSDT"].type, coins_js_1.coinsList["USDC"].type],
|
|
441
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_SUIUSDT_USDC_AUTO_COMPOUNDING_EVENT,
|
|
442
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_SUIUSDT_USDC_POOL_REBALANCE_EVENT,
|
|
443
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_SUIUSDT_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
444
|
-
strategyType: "LEVERAGE-YIELD-FARMING",
|
|
445
|
-
retired: false,
|
|
446
|
-
},
|
|
447
|
-
"ALPHALEND-SLUSH-STSUI-LOOP": {
|
|
448
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_TEST_LATEST_PACKAGE_ID,
|
|
449
|
-
packageNumber: 12,
|
|
450
|
-
parentProtocolName: "ALPHALEND",
|
|
451
|
-
parentPoolId: "",
|
|
452
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_STSUI_LOOP_POOL_ID,
|
|
453
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_SLUSH_STSUI_LOOP_INVESTOR,
|
|
454
|
-
receiptName: "",
|
|
455
|
-
receiptType: "",
|
|
456
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type],
|
|
457
|
-
autoCompoundingEventType: "",
|
|
458
|
-
liquidityChangeEventType: "",
|
|
459
|
-
rebalanceEventType: undefined,
|
|
460
|
-
strategyType: "LOOPING",
|
|
461
|
-
retired: false,
|
|
462
|
-
},
|
|
463
|
-
"ALPHALEND-SINGLE-LOOP-WBTC": {
|
|
464
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_ALPHALEND_LATEST_PACKAGE_ID,
|
|
465
|
-
packageNumber: 10,
|
|
466
|
-
parentProtocolName: "ALPHALEND",
|
|
467
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WBTC_POOL, //NO PARENT POOL
|
|
468
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WBTC_POOL,
|
|
469
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WBTC_INVESTOR,
|
|
470
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WBTC_RECEIPT_NAME,
|
|
471
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WBTC_RECEIPT,
|
|
472
|
-
assetTypes: [coins_js_1.coinsList["WBTC-LayerZero"].type],
|
|
473
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
474
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_WBTC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
475
|
-
rebalanceEventType: undefined,
|
|
476
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
477
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_WBTC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
478
|
-
strategyType: "SINGLE-LOOPING",
|
|
479
|
-
retired: false,
|
|
480
|
-
},
|
|
481
|
-
"ALPHALEND-SINGLE-LOOP-DEEP": {
|
|
482
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_ALPHALEND_LATEST_PACKAGE_ID,
|
|
483
|
-
packageNumber: 10,
|
|
484
|
-
parentProtocolName: "ALPHALEND",
|
|
485
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_DEEP_POOL, //NO PARENT POOL
|
|
486
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_DEEP_POOL,
|
|
487
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_DEEP_INVESTOR,
|
|
488
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_DEEP_RECEIPT_NAME,
|
|
489
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_DEEP_RECEIPT,
|
|
490
|
-
assetTypes: [coins_js_1.coinsList["DEEP"].type],
|
|
491
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
492
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_DEEP_POOL_AUTO_COMPOUNDING_EVENT,
|
|
493
|
-
rebalanceEventType: undefined,
|
|
494
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
495
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_DEEP_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
496
|
-
strategyType: "SINGLE-LOOPING",
|
|
497
|
-
retired: false,
|
|
498
|
-
},
|
|
499
|
-
"ALPHALEND-SINGLE-LOOP-WAL": {
|
|
500
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_ALPHALEND_LATEST_PACKAGE_ID,
|
|
501
|
-
packageNumber: 10,
|
|
502
|
-
parentProtocolName: "ALPHALEND",
|
|
503
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WAL_POOL, //NO PARENT POOL
|
|
504
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WAL_POOL,
|
|
505
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WAL_INVESTOR,
|
|
506
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WAL_RECEIPT_NAME,
|
|
507
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_WAL_RECEIPT,
|
|
508
|
-
assetTypes: [coins_js_1.coinsList["WAL"].type],
|
|
509
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
510
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_WAL_POOL_AUTO_COMPOUNDING_EVENT,
|
|
511
|
-
rebalanceEventType: undefined,
|
|
512
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
513
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_WAL_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
514
|
-
strategyType: "SINGLE-LOOPING",
|
|
515
|
-
retired: false,
|
|
516
|
-
},
|
|
517
|
-
"ALPHALEND-SLUSH-SUI": {
|
|
518
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_LATEST_PACKAGE_ID,
|
|
519
|
-
packageNumber: 12,
|
|
520
|
-
parentProtocolName: "ALPHALEND",
|
|
521
|
-
parentPoolId: "",
|
|
522
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_SUI_POOL_ID,
|
|
523
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_SLUSH_SUI_INVESTOR,
|
|
524
|
-
receiptName: "",
|
|
525
|
-
receiptType: "",
|
|
526
|
-
assetTypes: [coins_js_1.coinsList["SUI"].type],
|
|
527
|
-
autoCompoundingEventType: "",
|
|
528
|
-
liquidityChangeEventType: "",
|
|
529
|
-
rebalanceEventType: undefined,
|
|
530
|
-
strategyType: "LENDING",
|
|
531
|
-
retired: false,
|
|
532
|
-
},
|
|
533
|
-
"ALPHALEND-SLUSH-USDC": {
|
|
534
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_LATEST_PACKAGE_ID,
|
|
535
|
-
packageNumber: 12,
|
|
536
|
-
parentProtocolName: "ALPHALEND",
|
|
537
|
-
parentPoolId: "",
|
|
538
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_USDC_POOL_ID,
|
|
539
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_SLUSH_USDC_INVESTOR,
|
|
540
|
-
receiptName: "",
|
|
541
|
-
receiptType: "",
|
|
542
|
-
assetTypes: [coins_js_1.coinsList["USDC"].type],
|
|
543
|
-
autoCompoundingEventType: "",
|
|
544
|
-
liquidityChangeEventType: "",
|
|
545
|
-
rebalanceEventType: undefined,
|
|
546
|
-
strategyType: "LENDING",
|
|
547
|
-
retired: false,
|
|
548
|
-
},
|
|
549
|
-
"ALPHALEND-SLUSH-WAL": {
|
|
550
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_LATEST_PACKAGE_ID,
|
|
551
|
-
packageNumber: 12,
|
|
552
|
-
parentProtocolName: "ALPHALEND",
|
|
553
|
-
parentPoolId: "",
|
|
554
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_WAL_POOL_ID,
|
|
555
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_SLUSH_WAL_INVESTOR,
|
|
556
|
-
receiptName: "",
|
|
557
|
-
receiptType: "",
|
|
558
|
-
assetTypes: [coins_js_1.coinsList["WAL"].type],
|
|
559
|
-
autoCompoundingEventType: "",
|
|
560
|
-
liquidityChangeEventType: "",
|
|
561
|
-
rebalanceEventType: undefined,
|
|
562
|
-
strategyType: "LENDING",
|
|
563
|
-
retired: false,
|
|
564
|
-
},
|
|
565
|
-
"ALPHALEND-SLUSH-DEEP": {
|
|
566
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_LATEST_PACKAGE_ID,
|
|
567
|
-
packageNumber: 12,
|
|
568
|
-
parentProtocolName: "ALPHALEND",
|
|
569
|
-
parentPoolId: "",
|
|
570
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SLUSH_DEEP_POOL_ID,
|
|
571
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_SLUSH_DEEP_INVESTOR,
|
|
572
|
-
receiptName: "",
|
|
573
|
-
receiptType: "",
|
|
574
|
-
assetTypes: [coins_js_1.coinsList["DEEP"].type],
|
|
575
|
-
autoCompoundingEventType: "",
|
|
576
|
-
liquidityChangeEventType: "",
|
|
577
|
-
rebalanceEventType: undefined,
|
|
578
|
-
strategyType: "LENDING",
|
|
579
|
-
retired: false,
|
|
580
|
-
},
|
|
581
|
-
"BLUEFIN-LYF-STSUI-SUI": {
|
|
582
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LYF_LATEST_PACKAGE_ID,
|
|
583
|
-
packageNumber: 11,
|
|
584
|
-
parentProtocolName: "BLUEFIN",
|
|
585
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_SUI_ZERO_ZERO_POOL,
|
|
586
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_STSUI_SUI_POOL,
|
|
587
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_STSUI_SUI_INVESTOR,
|
|
588
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_STSUI_SUI_RECEIPT_NAME,
|
|
589
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_STSUI_SUI_RECEIPT,
|
|
590
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type, coins_js_1.coinsList["SUI"].type],
|
|
591
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_STSUI_SUI_AUTO_COMPOUNDING_EVENT,
|
|
592
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_STSUI_SUI_POOL_REBALANCE_EVENT,
|
|
593
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_LYF_STSUI_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
594
|
-
strategyType: "LEVERAGE-YIELD-FARMING",
|
|
595
|
-
retired: false,
|
|
596
|
-
},
|
|
597
|
-
"BLUEFIN-AUTOBALANCE-XBTC-SUIBTC": {
|
|
598
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
599
|
-
packageNumber: 7,
|
|
600
|
-
parentProtocolName: "BLUEFIN",
|
|
601
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_XBTC_SUIBTC_POOL,
|
|
602
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_XBTC_SUIBTC_POOL,
|
|
603
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_XBTC_SUIBTC_INVESTOR,
|
|
604
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_XBTC_SUIBTC_RECEIPT_NAME,
|
|
605
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_XBTC_SUIBTC_RECEIPT,
|
|
606
|
-
assetTypes: [coins_js_1.coinsList["XBTC"].type, coins_js_1.coinsList["SUIBTC"].type],
|
|
607
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
608
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_XBTC_SUIBTC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
609
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
610
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_XBTC_SUIBTC_POOL_REBALANCE_EVENT,
|
|
611
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
612
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_XBTC_SUIBTC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
613
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
614
|
-
retired: false,
|
|
615
|
-
},
|
|
616
|
-
"ALPHALEND-SINGLE-LOOP-XAUM": {
|
|
617
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_ALPHALEND_LATEST_PACKAGE_ID,
|
|
618
|
-
packageNumber: 10,
|
|
619
|
-
parentProtocolName: "ALPHALEND",
|
|
620
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_XAUM_POOL, //NO PARENT POOL
|
|
621
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_XAUM_POOL,
|
|
622
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_XAUM_INVESTOR,
|
|
623
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_XAUM_RECEIPT_NAME,
|
|
624
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_XAUM_RECEIPT,
|
|
625
|
-
assetTypes: [coins_js_1.coinsList["XAUM"].type],
|
|
626
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
627
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_XAUM_POOL_AUTO_COMPOUNDING_EVENT,
|
|
628
|
-
rebalanceEventType: undefined,
|
|
629
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
630
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_XAUM_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
631
|
-
strategyType: "SINGLE-LOOPING",
|
|
632
|
-
retired: false,
|
|
633
|
-
},
|
|
634
|
-
"BLUEFIN-AUTOBALANCE-SUI-USDC-175": {
|
|
635
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
636
|
-
packageNumber: 7,
|
|
637
|
-
parentProtocolName: "BLUEFIN",
|
|
638
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_USDC_175_POOL,
|
|
639
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_175_POOL,
|
|
640
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_175_INVESTOR,
|
|
641
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_175_RECEIPT_NAME,
|
|
642
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_175_RECEIPT,
|
|
643
|
-
assetTypes: [coins_js_1.coinsList["SUI"].type, coins_js_1.coinsList["USDC"].type],
|
|
644
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
645
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_175_POOL_AUTO_COMPOUNDING_EVENT,
|
|
646
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
647
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_175_POOL_REBALANCE_EVENT,
|
|
648
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
649
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_175_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
650
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
651
|
-
// add strategy type
|
|
652
|
-
retired: false,
|
|
653
|
-
},
|
|
654
|
-
"BLUEFIN-AUTOBALANCE-DEEP-SUI-175": {
|
|
655
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
656
|
-
packageNumber: 7,
|
|
657
|
-
parentProtocolName: "BLUEFIN",
|
|
658
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_DEEP_SUI_175_POOL,
|
|
659
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_175_POOL,
|
|
660
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_175_INVESTOR,
|
|
661
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_175_RECEIPT_NAME,
|
|
662
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_175_RECEIPT,
|
|
663
|
-
assetTypes: [coins_js_1.coinsList["DEEP"].type, coins_js_1.coinsList["SUI"].type],
|
|
664
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
665
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_175_POOL_AUTO_COMPOUNDING_EVENT,
|
|
666
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
667
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_175_POOL_REBALANCE_EVENT,
|
|
668
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
669
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_175_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
670
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
671
|
-
// add strategy type
|
|
672
|
-
retired: false,
|
|
673
|
-
},
|
|
674
|
-
"BLUEFIN-AUTOBALANCE-WAL-SUI": {
|
|
675
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
676
|
-
packageNumber: 7,
|
|
677
|
-
parentProtocolName: "BLUEFIN",
|
|
678
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WAL_SUI_POOL,
|
|
679
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_SUI_POOL,
|
|
680
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_SUI_INVESTOR,
|
|
681
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_SUI_RECEIPT_NAME,
|
|
682
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_SUI_RECEIPT,
|
|
683
|
-
assetTypes: [coins_js_1.coinsList["WAL"].type, coins_js_1.coinsList["SUI"].type],
|
|
684
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
685
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
686
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_SUI_POOL_REBALANCE_EVENT,
|
|
687
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
688
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
689
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
690
|
-
// add strategy type
|
|
691
|
-
retired: false,
|
|
692
|
-
},
|
|
693
|
-
"ALPHALEND-SINGLE-LOOP-SUIBTC": {
|
|
694
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_ALPHALEND_LATEST_PACKAGE_ID,
|
|
695
|
-
packageNumber: 10,
|
|
696
|
-
parentProtocolName: "ALPHALEND",
|
|
697
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_SUIBTC_POOL, //NO PARENT POOL
|
|
698
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_SUIBTC_POOL,
|
|
699
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_SUIBTC_INVESTOR,
|
|
700
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_SUIBTC_RECEIPT_NAME,
|
|
701
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_SUIBTC_RECEIPT,
|
|
702
|
-
assetTypes: [coins_js_1.coinsList["SUIBTC"].type],
|
|
703
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
704
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_SUIBTC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
705
|
-
rebalanceEventType: undefined,
|
|
706
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
707
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_SUIBTC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
708
|
-
strategyType: "SINGLE-LOOPING",
|
|
709
|
-
retired: false,
|
|
710
|
-
},
|
|
711
|
-
"ALPHALEND-SINGLE-LOOP-TBTC": {
|
|
712
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_ALPHALEND_LATEST_PACKAGE_ID,
|
|
713
|
-
packageNumber: 10,
|
|
714
|
-
parentProtocolName: "ALPHALEND",
|
|
715
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_TBTC_POOL, //NO PARENT POOL
|
|
716
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_TBTC_POOL,
|
|
717
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_TBTC_INVESTOR,
|
|
718
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_TBTC_RECEIPT_NAME,
|
|
719
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_ALPHALEND_SINGLE_LOOP_TBTC_RECEIPT,
|
|
720
|
-
assetTypes: [coins_js_1.coinsList["TBTC"].type],
|
|
721
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
722
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_TBTC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
723
|
-
rebalanceEventType: undefined,
|
|
724
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
725
|
-
.ALPHAFI_ALPHALEND_SINGLE_LOOP_TBTC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
726
|
-
strategyType: "SINGLE-LOOPING",
|
|
727
|
-
retired: false,
|
|
728
|
-
},
|
|
729
|
-
"BLUEFIN-AUTOBALANCE-SUIUSDT-USDC-ZERO-ZERO": {
|
|
730
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
731
|
-
packageNumber: 7,
|
|
732
|
-
parentProtocolName: "BLUEFIN",
|
|
733
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUIUSDT_USDC_ZERO_ZERO_POOL,
|
|
734
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_ZERO_ZERO_POOL,
|
|
735
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
736
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_ZERO_ZERO_INVESTOR,
|
|
737
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
738
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_ZERO_ZERO_RECEIPT_NAME,
|
|
739
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_ZERO_ZERO_RECEIPT,
|
|
740
|
-
assetTypes: [coins_js_1.coinsList["SUIUSDT"].type, coins_js_1.coinsList["USDC"].type],
|
|
741
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
742
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_ZERO_ZERO_POOL_AUTO_COMPOUNDING_EVENT,
|
|
743
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
744
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_ZERO_ZERO_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
745
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
746
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_ZERO_ZERO_POOL_REBALANCE_EVENT,
|
|
747
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
748
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_ZERO_ZERO_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
749
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
750
|
-
retired: false,
|
|
751
|
-
},
|
|
752
|
-
"NAVI-DEEP": {
|
|
753
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
754
|
-
packageNumber: 3,
|
|
755
|
-
parentProtocolName: "NAVI",
|
|
756
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_DEEP_POOL,
|
|
757
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_DEEP_POOL,
|
|
758
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_DEEP_INVESTOR,
|
|
759
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_DEEP_POOL_RECEIPT_NAME,
|
|
760
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_DEEP_POOL_RECEIPT,
|
|
761
|
-
assetTypes: [coins_js_1.coinsList["DEEP"].type],
|
|
762
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_DEEP_POOL_AUTO_COMPOUNDING_EVENT,
|
|
763
|
-
rebalanceEventType: undefined,
|
|
764
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_DEEP_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
765
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
766
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
767
|
-
retired: false,
|
|
768
|
-
naviParentPoolCoinType: coins_js_1.coinsList["DEEP"].type,
|
|
769
|
-
},
|
|
770
|
-
"NAVI-WAL": {
|
|
771
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
772
|
-
packageNumber: 3,
|
|
773
|
-
parentProtocolName: "NAVI",
|
|
774
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WAL_POOL,
|
|
775
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_WAL_POOL,
|
|
776
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WAL_INVESTOR,
|
|
777
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WAL_POOL_RECEIPT_NAME,
|
|
778
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WAL_POOL_RECEIPT,
|
|
779
|
-
assetTypes: [
|
|
780
|
-
"0x2053d08c1e2bd02791056171aab0fd12bd7cd7efad2ab8f6b9c8902f14df2ff2::ausd::AUSD",
|
|
781
|
-
],
|
|
782
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_POOL_AUTO_COMPOUNDING_EVENT,
|
|
783
|
-
rebalanceEventType: undefined,
|
|
784
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
785
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
786
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/ausd.png",
|
|
787
|
-
retired: false,
|
|
788
|
-
naviParentPoolCoinType: coins_js_1.coinsList["WAL"].type,
|
|
789
|
-
},
|
|
790
|
-
"BLUEFIN-AUTOBALANCE-WAL-USDC": {
|
|
791
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
792
|
-
packageNumber: 7,
|
|
793
|
-
parentProtocolName: "BLUEFIN",
|
|
794
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WAL_USDC_POOL,
|
|
795
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_USDC_POOL,
|
|
796
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_USDC_INVESTOR,
|
|
797
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_USDC_RECEIPT_NAME,
|
|
798
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_USDC_RECEIPT,
|
|
799
|
-
assetTypes: [coins_js_1.coinsList["WAL"].type, coins_js_1.coinsList["USDC"].type],
|
|
800
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
801
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
802
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
803
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_USDC_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
804
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_USDC_POOL_REBALANCE_EVENT,
|
|
805
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
806
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_WAL_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
807
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
808
|
-
retired: false,
|
|
809
|
-
},
|
|
810
|
-
"BLUEFIN-WAL-STSUI": {
|
|
811
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_STSUI_LATEST_PACKAGE_ID,
|
|
812
|
-
packageNumber: 6,
|
|
813
|
-
parentProtocolName: "BLUEFIN",
|
|
814
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WAL_STSUI_POOL,
|
|
815
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_STSUI_POOL,
|
|
816
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_STSUI_INVESTOR,
|
|
817
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_STSUI_RECEIPT_NAME,
|
|
818
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_STSUI_RECEIPT,
|
|
819
|
-
assetTypes: [coins_js_1.coinsList["WAL"].type, coins_js_1.coinsList["STSUI"].type],
|
|
820
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_STSUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
821
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_STSUI_POOL_REBALANCE_EVENT,
|
|
822
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_STSUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
823
|
-
// add strategy type
|
|
824
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/logo192.png",
|
|
825
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/stsui.svg",
|
|
826
|
-
retired: false,
|
|
827
|
-
},
|
|
828
|
-
"BLUEFIN-WAL-USDC": {
|
|
829
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
830
|
-
packageNumber: 4,
|
|
831
|
-
parentProtocolName: "BLUEFIN",
|
|
832
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WAL_USDC_POOL,
|
|
833
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_USDC_POOL,
|
|
834
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_USDC_INVESTOR,
|
|
835
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_USDC_RECEIPT_NAME,
|
|
836
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_USDC_RECEIPT,
|
|
837
|
-
assetTypes: [coins_js_1.coinsList["WAL"].type, coins_js_1.coinsList["USDC"].type],
|
|
838
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
839
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_USDC_POOL_REBALANCE_EVENT,
|
|
840
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WAL_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
841
|
-
retired: false,
|
|
842
|
-
// add strategy type
|
|
843
|
-
},
|
|
844
|
-
"USDC-SUIUSDT": {
|
|
845
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
846
|
-
packageNumber: 1,
|
|
847
|
-
parentProtocolName: "CETUS",
|
|
848
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_CETUS_POOL_ID,
|
|
849
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_POOL,
|
|
850
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_CETUS_INVESTOR,
|
|
851
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_POOL_RECEIPT_NAME,
|
|
852
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_POOL_RECEIPT,
|
|
853
|
-
assetTypes: [
|
|
854
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
855
|
-
"0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT",
|
|
856
|
-
],
|
|
857
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_POOL_AUTO_COMPOUNDING_EVENT,
|
|
858
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_POOL_REBALANCE_EVENT,
|
|
859
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUIUSDT_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
860
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
861
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
862
|
-
retired: false,
|
|
863
|
-
},
|
|
864
|
-
"BLUEFIN-LBTC-SUIBTC": {
|
|
865
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_V2_LATEST_PACKAGE_ID,
|
|
866
|
-
packageNumber: 8,
|
|
867
|
-
parentProtocolName: "BLUEFIN",
|
|
868
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_LBTC_SUIBTC_POOL,
|
|
869
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_LBTC_SUIBTC_POOL,
|
|
870
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_LBTC_SUIBTC_INVESTOR,
|
|
871
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_LBTC_SUIBTC_RECEIPT_NAME,
|
|
872
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_LBTC_SUIBTC_RECEIPT,
|
|
873
|
-
assetTypes: [coins_js_1.coinsList["LBTC"].type, coins_js_1.coinsList["SUIBTC"].type],
|
|
874
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_LBTC_SUIBTC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
875
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_LBTC_SUIBTC_POOL_REBALANCE_EVENT,
|
|
876
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_LBTC_SUIBTC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
877
|
-
retired: true,
|
|
878
|
-
// add strategy type
|
|
879
|
-
},
|
|
880
|
-
"BLUEFIN-AUTOBALANCE-SUI-LBTC": {
|
|
881
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
882
|
-
packageNumber: 7,
|
|
883
|
-
parentProtocolName: "BLUEFIN",
|
|
884
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_LBTC_POOL,
|
|
885
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_LBTC_POOL,
|
|
886
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_LBTC_INVESTOR,
|
|
887
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_LBTC_RECEIPT_NAME,
|
|
888
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_LBTC_RECEIPT,
|
|
889
|
-
assetTypes: [coins_js_1.coinsList["SUI"].type, coins_js_1.coinsList["LBTC"].type],
|
|
890
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
891
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_LBTC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
892
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
893
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_LBTC_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
894
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_LBTC_POOL_REBALANCE_EVENT,
|
|
895
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
896
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_LBTC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
897
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
898
|
-
// add strategy type
|
|
899
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
900
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/LBTC_IC.png",
|
|
901
|
-
retired: false,
|
|
902
|
-
},
|
|
903
|
-
"BLUEFIN-FUNGIBLE-STSUI-SUI": {
|
|
904
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_FUNGIBLE_LATEST_PACKAGE_ID,
|
|
905
|
-
packageNumber: 8,
|
|
906
|
-
parentProtocolName: "BLUEFIN",
|
|
907
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_SUI_POOL,
|
|
908
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_FUNGIBLE_STSUI_SUI_POOL,
|
|
909
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_FUNGIBLE_STSUI_SUI_INVESTOR,
|
|
910
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_FUNGIBLE_STSUI_SUI_RECEIPT_NAME,
|
|
911
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_FUNGIBLE_STSUI_SUI_RECEIPT,
|
|
912
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type, constants_js_1.conf[constants_js_1.CONF_ENV].SUI_COIN_TYPE],
|
|
913
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
914
|
-
.ALPHAFI_BLUEFIN_FUNGIBLE_STSUI_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
915
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_FUNGIBLE_STSUI_SUI_POOL_REBALANCE_EVENT,
|
|
916
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
917
|
-
.ALPHAFI_BLUEFIN_FUNGIBLE_STSUI_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
918
|
-
// add strategy type
|
|
919
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/stsui.svg",
|
|
920
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
921
|
-
retired: true,
|
|
922
|
-
},
|
|
923
|
-
"NAVI-SUIUSDT": {
|
|
924
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
925
|
-
packageNumber: 3,
|
|
926
|
-
parentProtocolName: "NAVI",
|
|
927
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIUSDT_POOL,
|
|
928
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_SUIUSDT_POOL,
|
|
929
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIUSDT_INVESTOR,
|
|
930
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIUSDT_POOL_RECEIPT_NAME,
|
|
931
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIUSDT_POOL_RECEIPT,
|
|
932
|
-
assetTypes: [coins_js_1.coinsList["SUIUSDT"].type],
|
|
933
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIUSDT_POOL_AUTO_COMPOUNDING_EVENT,
|
|
934
|
-
rebalanceEventType: undefined,
|
|
935
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIUSDT_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
936
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
937
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
938
|
-
retired: true,
|
|
939
|
-
naviParentPoolCoinType: coins_js_1.coinsList["SUIUSDT"].type,
|
|
940
|
-
},
|
|
941
|
-
"NAVI-SUIBTC": {
|
|
942
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_NAVI_V2_LATEST_PACKAGE_ID,
|
|
943
|
-
packageNumber: 9,
|
|
944
|
-
parentProtocolName: "NAVI",
|
|
945
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIBTC_POOL,
|
|
946
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_SUIBTC_POOL,
|
|
947
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIBTC_INVESTOR,
|
|
948
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIBTC_POOL_RECEIPT_NAME,
|
|
949
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIBTC_POOL_RECEIPT,
|
|
950
|
-
assetTypes: [coins_js_1.coinsList["SUIBTC"].type],
|
|
951
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIBTC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
952
|
-
rebalanceEventType: undefined,
|
|
953
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUIBTC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
954
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
955
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
956
|
-
retired: false,
|
|
957
|
-
naviParentPoolCoinType: coins_js_1.coinsList["SUIBTC"].type,
|
|
958
|
-
},
|
|
959
|
-
"BLUEFIN-SUIBTC-USDC": {
|
|
960
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_V2_LATEST_PACKAGE_ID,
|
|
961
|
-
packageNumber: 8,
|
|
962
|
-
parentProtocolName: "BLUEFIN",
|
|
963
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUIBTC_USDC_POOL,
|
|
964
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIBTC_USDC_POOL,
|
|
965
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIBTC_USDC_INVESTOR,
|
|
966
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIBTC_USDC_RECEIPT_NAME,
|
|
967
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIBTC_USDC_RECEIPT,
|
|
968
|
-
assetTypes: [coins_js_1.coinsList["SUIBTC"].type, coins_js_1.coinsList["USDC"].type],
|
|
969
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIBTC_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
970
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIBTC_USDC_POOL_REBALANCE_EVENT,
|
|
971
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIBTC_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
972
|
-
retired: true,
|
|
973
|
-
// add strategy type
|
|
974
|
-
},
|
|
975
|
-
"ALPHALEND-LOOP-SUI-STSUI": {
|
|
976
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_5_LATEST_PACKAGE_ID,
|
|
977
|
-
packageNumber: 5,
|
|
978
|
-
parentProtocolName: "ALPHALEND",
|
|
979
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_STSUI_POOL,
|
|
980
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHALEND_LOOP_SUI_STSUI_POOL,
|
|
981
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHALEND_LOOP_SUI_STSUI_INVESTOR,
|
|
982
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHALEND_SUI_STSUI_LOOP_RECEIPT_NAME,
|
|
983
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHALEND_LOOP_SUI_STSUI_RECEIPT,
|
|
984
|
-
assetTypes: ["0x2::sui::SUI"],
|
|
985
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHALEND_LOOP_SUI_STSUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
986
|
-
rebalanceEventType: undefined,
|
|
987
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHALEND_LOOP_SUI_STSUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
988
|
-
strategyType: "LOOPING",
|
|
989
|
-
checkRatioEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHALEND_LOOP_SUI_STSUI_POOL_CHECK_RATIO_EVENT,
|
|
990
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
991
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/vsui.png",
|
|
992
|
-
retired: false,
|
|
993
|
-
},
|
|
994
|
-
"BLUEFIN-STSUI-MUSD": {
|
|
995
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_STSUI_LATEST_PACKAGE_ID,
|
|
996
|
-
packageNumber: 6,
|
|
997
|
-
parentProtocolName: "BLUEFIN",
|
|
998
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_MUSD_POOL,
|
|
999
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_MUSD_POOL,
|
|
1000
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_MUSD_INVESTOR,
|
|
1001
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_MUSD_RECEIPT_NAME,
|
|
1002
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_MUSD_RECEIPT,
|
|
1003
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type, coins_js_1.coinsList["MUSD"].type],
|
|
1004
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_MUSD_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1005
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_MUSD_POOL_REBALANCE_EVENT,
|
|
1006
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_MUSD_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1007
|
-
retired: true,
|
|
1008
|
-
// add strategy type
|
|
1009
|
-
},
|
|
1010
|
-
"BLUEFIN-STSUI-BUCK": {
|
|
1011
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_STSUI_LATEST_PACKAGE_ID,
|
|
1012
|
-
packageNumber: 6,
|
|
1013
|
-
parentProtocolName: "BLUEFIN",
|
|
1014
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_BUCK_POOL,
|
|
1015
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_BUCK_POOL,
|
|
1016
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_BUCK_INVESTOR,
|
|
1017
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_BUCK_RECEIPT_NAME,
|
|
1018
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_BUCK_RECEIPT,
|
|
1019
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type, constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_COIN_TYPE],
|
|
1020
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_BUCK_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1021
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_BUCK_POOL_REBALANCE_EVENT,
|
|
1022
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_BUCK_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1023
|
-
retired: true,
|
|
1024
|
-
// add strategy type
|
|
1025
|
-
},
|
|
1026
|
-
"NAVI-STSUI": {
|
|
1027
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
1028
|
-
packageNumber: 3,
|
|
1029
|
-
parentProtocolName: "NAVI",
|
|
1030
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_STSUI_POOL,
|
|
1031
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_STSUI_POOL,
|
|
1032
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_STSUI_INVESTOR,
|
|
1033
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_STSUI_POOL_RECEIPT_NAME,
|
|
1034
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_STSUI_POOL_RECEIPT,
|
|
1035
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type],
|
|
1036
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_STSUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1037
|
-
rebalanceEventType: undefined,
|
|
1038
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_STSUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1039
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1040
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1041
|
-
retired: true,
|
|
1042
|
-
naviParentPoolCoinType: coins_js_1.coinsList["STSUI"].type,
|
|
1043
|
-
},
|
|
1044
|
-
"BLUEFIN-AUTOBALANCE-DEEP-SUI": {
|
|
1045
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
1046
|
-
packageNumber: 7,
|
|
1047
|
-
parentProtocolName: "BLUEFIN",
|
|
1048
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_DEEP_SUI_POOL,
|
|
1049
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_POOL,
|
|
1050
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_INVESTOR,
|
|
1051
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_RECEIPT_NAME,
|
|
1052
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_RECEIPT,
|
|
1053
|
-
assetTypes: [coins_js_1.coinsList["DEEP"].type, coins_js_1.coinsList["SUI"].type],
|
|
1054
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1055
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1056
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1057
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
1058
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_POOL_REBALANCE_EVENT,
|
|
1059
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1060
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1061
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
1062
|
-
retired: false,
|
|
1063
|
-
},
|
|
1064
|
-
"BLUEFIN-AUTOBALANCE-BLUE-SUI": {
|
|
1065
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
1066
|
-
packageNumber: 7,
|
|
1067
|
-
parentProtocolName: "BLUEFIN",
|
|
1068
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_BLUE_SUI_POOL,
|
|
1069
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_BLUE_SUI_POOL,
|
|
1070
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_BLUE_SUI_INVESTOR,
|
|
1071
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_BLUE_SUI_RECEIPT_NAME,
|
|
1072
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_BLUE_SUI_RECEIPT,
|
|
1073
|
-
assetTypes: [coins_js_1.coinsList["BLUE"].type, coins_js_1.coinsList["SUI"].type],
|
|
1074
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1075
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_BLUE_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1076
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1077
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_BLUE_SUI_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
1078
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_BLUE_SUI_POOL_REBALANCE_EVENT,
|
|
1079
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1080
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_BLUE_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1081
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
1082
|
-
retired: false,
|
|
1083
|
-
},
|
|
1084
|
-
"BLUEFIN-AUTOBALANCE-DEEP-BLUE": {
|
|
1085
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
1086
|
-
packageNumber: 7,
|
|
1087
|
-
parentProtocolName: "BLUEFIN",
|
|
1088
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_DEEP_BLUE_POOL,
|
|
1089
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_BLUE_POOL,
|
|
1090
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_BLUE_INVESTOR,
|
|
1091
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_BLUE_RECEIPT_NAME,
|
|
1092
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_BLUE_RECEIPT,
|
|
1093
|
-
assetTypes: [coins_js_1.coinsList["DEEP"].type, coins_js_1.coinsList["BLUE"].type],
|
|
1094
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1095
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_BLUE_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1096
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1097
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_BLUE_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
1098
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_BLUE_POOL_REBALANCE_EVENT,
|
|
1099
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1100
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_DEEP_BLUE_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1101
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
1102
|
-
retired: false,
|
|
1103
|
-
},
|
|
1104
|
-
"BLUEFIN-SUIUSDT-USDC": {
|
|
1105
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1106
|
-
packageNumber: 4,
|
|
1107
|
-
parentProtocolName: "BLUEFIN",
|
|
1108
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUIUSDT_USDC_ZERO_ZERO_POOL,
|
|
1109
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIUSDT_USDC_POOL,
|
|
1110
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIUSDT_USDC_INVESTOR,
|
|
1111
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIUSDT_USDC_RECEIPT_NAME,
|
|
1112
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIUSDT_USDC_RECEIPT,
|
|
1113
|
-
assetTypes: [coins_js_1.coinsList["SUIUSDT"].type, coins_js_1.coinsList["USDC"].type],
|
|
1114
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIUSDT_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1115
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIUSDT_USDC_POOL_REBALANCE_EVENT,
|
|
1116
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUIUSDT_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1117
|
-
retired: false,
|
|
1118
|
-
// add strategy type
|
|
1119
|
-
},
|
|
1120
|
-
"BLUEFIN-AUTOBALANCE-SUIUSDT-USDC": {
|
|
1121
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
1122
|
-
packageNumber: 7,
|
|
1123
|
-
parentProtocolName: "BLUEFIN",
|
|
1124
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUIUSDT_USDC_POOL,
|
|
1125
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_POOL,
|
|
1126
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_INVESTOR,
|
|
1127
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_RECEIPT_NAME,
|
|
1128
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_RECEIPT,
|
|
1129
|
-
assetTypes: [coins_js_1.coinsList["SUIUSDT"].type, coins_js_1.coinsList["USDC"].type],
|
|
1130
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1131
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1132
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1133
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
1134
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1135
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_POOL_REBALANCE_EVENT,
|
|
1136
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1137
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUIUSDT_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1138
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
1139
|
-
retired: false,
|
|
1140
|
-
},
|
|
1141
|
-
"BLUEFIN-AUTOBALANCE-SUI-USDC": {
|
|
1142
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
1143
|
-
packageNumber: 7,
|
|
1144
|
-
parentProtocolName: "BLUEFIN",
|
|
1145
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_USDC_POOL,
|
|
1146
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_POOL,
|
|
1147
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_INVESTOR,
|
|
1148
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_RECEIPT_NAME,
|
|
1149
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_RECEIPT,
|
|
1150
|
-
assetTypes: [coins_js_1.coinsList["SUI"].type, coins_js_1.coinsList["USDC"].type],
|
|
1151
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1152
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1153
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1154
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
1155
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_POOL_REBALANCE_EVENT,
|
|
1156
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1157
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_SUI_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1158
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
1159
|
-
// add strategy type
|
|
1160
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1161
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC_IC.png",
|
|
1162
|
-
retired: false,
|
|
1163
|
-
},
|
|
1164
|
-
"BLUEFIN-AUTOBALANCE-USDT-USDC": {
|
|
1165
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_BLUEFIN_AUTOBALANCE_LATEST_PACKAGE_ID,
|
|
1166
|
-
packageNumber: 7,
|
|
1167
|
-
parentProtocolName: "BLUEFIN",
|
|
1168
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_USDT_USDC_POOL,
|
|
1169
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_USDT_USDC_POOL,
|
|
1170
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_USDT_USDC_INVESTOR,
|
|
1171
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_USDT_USDC_RECEIPT_NAME,
|
|
1172
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_USDT_USDC_RECEIPT,
|
|
1173
|
-
assetTypes: [coins_js_1.coinsList["USDT"].type, coins_js_1.coinsList["USDC"].type],
|
|
1174
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1175
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_USDT_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1176
|
-
autobalanceOldAutoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1177
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_USDT_USDC_POOL_OLD_AUTO_COMPOUNDING_EVENT,
|
|
1178
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUTOBALANCE_USDT_USDC_POOL_REBALANCE_EVENT,
|
|
1179
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV]
|
|
1180
|
-
.ALPHAFI_BLUEFIN_AUTOBALANCE_USDT_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1181
|
-
strategyType: "AUTOBALANCE-LIQUIDITY-POOL",
|
|
1182
|
-
// add strategy type
|
|
1183
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDT.svg",
|
|
1184
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC_IC.png",
|
|
1185
|
-
retired: false,
|
|
1186
|
-
},
|
|
1187
|
-
"BLUEFIN-ALPHA-STSUI": {
|
|
1188
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_STSUI_LATEST_PACKAGE_ID,
|
|
1189
|
-
packageNumber: 6,
|
|
1190
|
-
parentProtocolName: "BLUEFIN",
|
|
1191
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_ALPHA_STSUI_POOL,
|
|
1192
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_STSUI_POOL,
|
|
1193
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_STSUI_INVESTOR,
|
|
1194
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_STSUI_RECEIPT_NAME,
|
|
1195
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_STSUI_RECEIPT,
|
|
1196
|
-
assetTypes: [coins_js_1.coinsList["ALPHA"].type, coins_js_1.coinsList["STSUI"].type],
|
|
1197
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_STSUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1198
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_STSUI_POOL_REBALANCE_EVENT,
|
|
1199
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_STSUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1200
|
-
// add strategy type
|
|
1201
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/logo192.png",
|
|
1202
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/stsui.svg",
|
|
1203
|
-
retired: false,
|
|
1204
|
-
},
|
|
1205
|
-
"BLUEFIN-STSUI-WSOL": {
|
|
1206
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_STSUI_LATEST_PACKAGE_ID,
|
|
1207
|
-
packageNumber: 6,
|
|
1208
|
-
parentProtocolName: "BLUEFIN",
|
|
1209
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_WSOL_POOL,
|
|
1210
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_WSOL_POOL,
|
|
1211
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_WSOL_INVESTOR,
|
|
1212
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_WSOL_RECEIPT_NAME,
|
|
1213
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_WSOL_RECEIPT,
|
|
1214
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type, constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_COIN_TYPE],
|
|
1215
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_WSOL_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1216
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_WSOL_POOL_REBALANCE_EVENT,
|
|
1217
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_WSOL_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1218
|
-
retired: true,
|
|
1219
|
-
// add strategy type
|
|
1220
|
-
},
|
|
1221
|
-
"BLUEFIN-STSUI-ETH": {
|
|
1222
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_STSUI_LATEST_PACKAGE_ID,
|
|
1223
|
-
packageNumber: 6,
|
|
1224
|
-
parentProtocolName: "BLUEFIN",
|
|
1225
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_ETH_POOL,
|
|
1226
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_ETH_POOL,
|
|
1227
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_ETH_INVESTOR,
|
|
1228
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_ETH_RECEIPT_NAME,
|
|
1229
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_ETH_RECEIPT,
|
|
1230
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type, constants_js_1.conf[constants_js_1.CONF_ENV].ETH_COIN_TYPE],
|
|
1231
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_ETH_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1232
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_ETH_POOL_REBALANCE_EVENT,
|
|
1233
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_ETH_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1234
|
-
retired: true,
|
|
1235
|
-
// add strategy type
|
|
1236
|
-
},
|
|
1237
|
-
"BLUEFIN-STSUI-USDC": {
|
|
1238
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_STSUI_LATEST_PACKAGE_ID,
|
|
1239
|
-
packageNumber: 6,
|
|
1240
|
-
parentProtocolName: "BLUEFIN",
|
|
1241
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_USDC_ZERO_ONE_POOL,
|
|
1242
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_USDC_POOL,
|
|
1243
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_USDC_INVESTOR,
|
|
1244
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_USDC_RECEIPT_NAME,
|
|
1245
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_USDC_RECEIPT,
|
|
1246
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type, constants_js_1.conf[constants_js_1.CONF_ENV].USDC_COIN_TYPE],
|
|
1247
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1248
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_USDC_POOL_REBALANCE_EVENT,
|
|
1249
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1250
|
-
// add strategy type
|
|
1251
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/stsui.svg",
|
|
1252
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1253
|
-
retired: false,
|
|
1254
|
-
},
|
|
1255
|
-
"BLUEFIN-STSUI-SUI": {
|
|
1256
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1257
|
-
packageNumber: 4,
|
|
1258
|
-
parentProtocolName: "BLUEFIN",
|
|
1259
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_STSUI_SUI_ZERO_ZERO_POOL,
|
|
1260
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_SUI_POOL,
|
|
1261
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_SUI_INVESTOR,
|
|
1262
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_SUI_RECEIPT_NAME,
|
|
1263
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_SUI_RECEIPT,
|
|
1264
|
-
assetTypes: [coins_js_1.coinsList["STSUI"].type, constants_js_1.conf[constants_js_1.CONF_ENV].SUI_COIN_TYPE],
|
|
1265
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1266
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_SUI_POOL_REBALANCE_EVENT,
|
|
1267
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_STSUI_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1268
|
-
// add strategy type
|
|
1269
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/stsui.svg",
|
|
1270
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1271
|
-
retired: false,
|
|
1272
|
-
},
|
|
1273
|
-
"BLUEFIN-DEEP-SUI": {
|
|
1274
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1275
|
-
packageNumber: 4,
|
|
1276
|
-
parentProtocolName: "BLUEFIN",
|
|
1277
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_DEEP_SUI_POOL,
|
|
1278
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_DEEP_SUI_POOL,
|
|
1279
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_DEEP_SUI_INVESTOR,
|
|
1280
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_DEEP_SUI_RECEIPT_NAME,
|
|
1281
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_DEEP_SUI_RECEIPT,
|
|
1282
|
-
assetTypes: [constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_COIN_TYPE, constants_js_1.conf[constants_js_1.CONF_ENV].SUI_COIN_TYPE],
|
|
1283
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_DEEP_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1284
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_DEEP_SUI_POOL_REBALANCE_EVENT,
|
|
1285
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_DEEP_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1286
|
-
// add strategy type
|
|
1287
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/deep.svg",
|
|
1288
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1289
|
-
retired: true,
|
|
1290
|
-
},
|
|
1291
|
-
"BLUEFIN-WBTC-SUI": {
|
|
1292
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1293
|
-
packageNumber: 4,
|
|
1294
|
-
parentProtocolName: "BLUEFIN",
|
|
1295
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WBTC_SUI_POOL,
|
|
1296
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_SUI_POOL,
|
|
1297
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_SUI_INVESTOR,
|
|
1298
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_SUI_RECEIPT_NAME,
|
|
1299
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_SUI_RECEIPT,
|
|
1300
|
-
assetTypes: [constants_js_1.conf[constants_js_1.CONF_ENV].WBTC_COIN_TYPE, constants_js_1.conf[constants_js_1.CONF_ENV].SUI_COIN_TYPE],
|
|
1301
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1302
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_SUI_POOL_REBALANCE_EVENT,
|
|
1303
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1304
|
-
// add strategy type
|
|
1305
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/BTCB.svg",
|
|
1306
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1307
|
-
retired: true,
|
|
1308
|
-
},
|
|
1309
|
-
"BLUEFIN-SEND-USDC": {
|
|
1310
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1311
|
-
packageNumber: 4,
|
|
1312
|
-
parentProtocolName: "BLUEFIN",
|
|
1313
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SEND_USDC_POOL,
|
|
1314
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SEND_USDC_POOL,
|
|
1315
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SEND_USDC_INVESTOR,
|
|
1316
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SEND_USDC_RECEIPT_NAME,
|
|
1317
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SEND_USDC_RECEIPT,
|
|
1318
|
-
assetTypes: [constants_js_1.conf[constants_js_1.CONF_ENV].SEND_COIN_TYPE, constants_js_1.conf[constants_js_1.CONF_ENV].USDC_COIN_TYPE],
|
|
1319
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SEND_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1320
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SEND_USDC_POOL_REBALANCE_EVENT,
|
|
1321
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SEND_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1322
|
-
// add strategy type
|
|
1323
|
-
imageUrl1: "", // add send image here
|
|
1324
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1325
|
-
retired: true,
|
|
1326
|
-
},
|
|
1327
|
-
"BLUEFIN-BLUE-SUI": {
|
|
1328
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1329
|
-
packageNumber: 4,
|
|
1330
|
-
parentProtocolName: "BLUEFIN",
|
|
1331
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_BLUE_SUI_POOL,
|
|
1332
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_SUI_POOL,
|
|
1333
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_SUI_INVESTOR,
|
|
1334
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_SUI_RECEIPT_NAME,
|
|
1335
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_SUI_RECEIPT,
|
|
1336
|
-
assetTypes: [constants_js_1.conf[constants_js_1.CONF_ENV].BLUE_COIN_TYPE, constants_js_1.conf[constants_js_1.CONF_ENV].SUI_COIN_TYPE],
|
|
1337
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1338
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_SUI_POOL_REBALANCE_EVENT,
|
|
1339
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1340
|
-
// add strategy type
|
|
1341
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/send.png",
|
|
1342
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1343
|
-
retired: true,
|
|
1344
|
-
},
|
|
1345
|
-
"BLUEFIN-BLUE-USDC": {
|
|
1346
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1347
|
-
packageNumber: 4,
|
|
1348
|
-
parentProtocolName: "BLUEFIN",
|
|
1349
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_BLUE_USDC_POOL,
|
|
1350
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_USDC_POOL,
|
|
1351
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_USDC_INVESTOR,
|
|
1352
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_USDC_RECEIPT_NAME,
|
|
1353
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_USDC_RECEIPT,
|
|
1354
|
-
assetTypes: [constants_js_1.conf[constants_js_1.CONF_ENV].BLUE_COIN_TYPE, constants_js_1.conf[constants_js_1.CONF_ENV].USDC_COIN_TYPE],
|
|
1355
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1356
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_USDC_POOL_REBALANCE_EVENT,
|
|
1357
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_BLUE_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1358
|
-
// add strategy type
|
|
1359
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/send.png",
|
|
1360
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1361
|
-
retired: true,
|
|
1362
|
-
},
|
|
1363
|
-
"NAVI-NAVX": {
|
|
1364
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
1365
|
-
packageNumber: 3,
|
|
1366
|
-
parentProtocolName: "NAVI",
|
|
1367
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NAVX_POOL,
|
|
1368
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_NAVX_POOL,
|
|
1369
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NAVX_INVESTOR,
|
|
1370
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NAVX_POOL_RECEIPT_NAME,
|
|
1371
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NAVX_POOL_RECEIPT,
|
|
1372
|
-
assetTypes: [constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_COIN_TYPE],
|
|
1373
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NAVX_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1374
|
-
rebalanceEventType: undefined,
|
|
1375
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NAVX_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1376
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1377
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1378
|
-
retired: true,
|
|
1379
|
-
naviParentPoolCoinType: coins_js_1.coinsList["NAVX"].type,
|
|
1380
|
-
},
|
|
1381
|
-
"BLUEFIN-NAVX-VSUI": {
|
|
1382
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1383
|
-
packageNumber: 4,
|
|
1384
|
-
parentProtocolName: "BLUEFIN",
|
|
1385
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_NAVX_VSUI_POOL,
|
|
1386
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_NAVX_VSUI_POOL,
|
|
1387
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_NAVX_VSUI_INVESTOR,
|
|
1388
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_NAVX_VSUI_RECEIPT_NAME,
|
|
1389
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_NAVX_VSUI_RECEIPT,
|
|
1390
|
-
assetTypes: [
|
|
1391
|
-
"0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX",
|
|
1392
|
-
"0x549e8b69270defbfafd4f94e17ec44cdbdd99820b33bda2278dea3b9a32d3f55::cert::CERT",
|
|
1393
|
-
],
|
|
1394
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_NAVX_VSUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1395
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_NAVX_VSUI_POOL_REBALANCE_EVENT,
|
|
1396
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_NAVX_VSUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1397
|
-
// add strategy type
|
|
1398
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1399
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/vsui.png",
|
|
1400
|
-
retired: true,
|
|
1401
|
-
},
|
|
1402
|
-
"BLUEFIN-SUI-AUSD": {
|
|
1403
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1404
|
-
packageNumber: 4,
|
|
1405
|
-
parentProtocolName: "BLUEFIN",
|
|
1406
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_AUSD_POOL,
|
|
1407
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_AUSD_POOL,
|
|
1408
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_AUSD_INVESTOR,
|
|
1409
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_AUSD_RECEIPT_NAME,
|
|
1410
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_AUSD_RECEIPT,
|
|
1411
|
-
assetTypes: [
|
|
1412
|
-
"0x2::sui::SUI",
|
|
1413
|
-
"0x2053d08c1e2bd02791056171aab0fd12bd7cd7efad2ab8f6b9c8902f14df2ff2::ausd::AUSD",
|
|
1414
|
-
],
|
|
1415
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_AUSD_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1416
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_AUSD_POOL_REBALANCE_EVENT,
|
|
1417
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_AUSD_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1418
|
-
// add strategy type
|
|
1419
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1420
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/ausd.png",
|
|
1421
|
-
retired: true,
|
|
1422
|
-
},
|
|
1423
|
-
"BLUEFIN-ALPHA-USDC": {
|
|
1424
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1425
|
-
packageNumber: 4,
|
|
1426
|
-
parentProtocolName: "BLUEFIN",
|
|
1427
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_ALPHA_USDC_POOL,
|
|
1428
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_USDC_POOL,
|
|
1429
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_USDC_INVESTOR,
|
|
1430
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_USDC_RECEIPT_NAME,
|
|
1431
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_USDC_RECEIPT,
|
|
1432
|
-
assetTypes: [
|
|
1433
|
-
"0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
|
|
1434
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1435
|
-
],
|
|
1436
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1437
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_USDC_POOL_REBALANCE_EVENT,
|
|
1438
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_ALPHA_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1439
|
-
// add strategy type
|
|
1440
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/logo192.png",
|
|
1441
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1442
|
-
retired: false,
|
|
1443
|
-
},
|
|
1444
|
-
"BLUEFIN-WBTC-USDC": {
|
|
1445
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1446
|
-
packageNumber: 4,
|
|
1447
|
-
parentProtocolName: "BLUEFIN",
|
|
1448
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_WBTC_USDC_POOL,
|
|
1449
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_USDC_POOL,
|
|
1450
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_USDC_INVESTOR,
|
|
1451
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_USDC_RECEIPT_NAME,
|
|
1452
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_USDC_RECEIPT,
|
|
1453
|
-
assetTypes: [
|
|
1454
|
-
"0x27792d9fed7f9844eb4839566001bb6f6cb4804f66aa2da6fe1ee242d896881::coin::COIN",
|
|
1455
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1456
|
-
],
|
|
1457
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1458
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_USDC_POOL_REBALANCE_EVENT,
|
|
1459
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_WBTC_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1460
|
-
// add strategy type
|
|
1461
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/BTCB.svg",
|
|
1462
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1463
|
-
retired: true,
|
|
1464
|
-
},
|
|
1465
|
-
"NAVI-NS": {
|
|
1466
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
1467
|
-
packageNumber: 3,
|
|
1468
|
-
parentProtocolName: "NAVI",
|
|
1469
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NS_POOL,
|
|
1470
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_NS_POOL,
|
|
1471
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NS_INVESTOR,
|
|
1472
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NS_POOL_RECEIPT_NAME,
|
|
1473
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NS_POOL_RECEIPT,
|
|
1474
|
-
assetTypes: [
|
|
1475
|
-
"0x5145494a5f5100e645e4b0aa950fa6b68f614e8c59e17bc5ded3495123a79178::ns::NS",
|
|
1476
|
-
],
|
|
1477
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NS_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1478
|
-
rebalanceEventType: undefined,
|
|
1479
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_NS_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1480
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1481
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/ns.svg",
|
|
1482
|
-
retired: false,
|
|
1483
|
-
naviParentPoolCoinType: coins_js_1.coinsList["NS"].type,
|
|
1484
|
-
},
|
|
1485
|
-
"BLUEFIN-AUSD-USDC": {
|
|
1486
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1487
|
-
packageNumber: 4,
|
|
1488
|
-
parentProtocolName: "BLUEFIN",
|
|
1489
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_AUSD_USDC_POOL,
|
|
1490
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUSD_USDC_POOL,
|
|
1491
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUSD_USDC_INVESTOR,
|
|
1492
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUSD_USDC_RECEIPT_NAME,
|
|
1493
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUSD_USDC_RECEIPT,
|
|
1494
|
-
assetTypes: [
|
|
1495
|
-
"0x2053d08c1e2bd02791056171aab0fd12bd7cd7efad2ab8f6b9c8902f14df2ff2::ausd::AUSD",
|
|
1496
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1497
|
-
],
|
|
1498
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUSD_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1499
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUSD_USDC_POOL_REBALANCE_EVENT,
|
|
1500
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_AUSD_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1501
|
-
// add strategy type
|
|
1502
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/ausd.png",
|
|
1503
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1504
|
-
retired: true,
|
|
1505
|
-
},
|
|
1506
|
-
"BLUEFIN-SUI-BUCK": {
|
|
1507
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1508
|
-
packageNumber: 4,
|
|
1509
|
-
parentProtocolName: "BLUEFIN",
|
|
1510
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_BUCK_POOL,
|
|
1511
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_BUCK_POOL,
|
|
1512
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_BUCK_INVESTOR,
|
|
1513
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_BUCK_RECEIPT_NAME,
|
|
1514
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_BUCK_RECEIPT,
|
|
1515
|
-
assetTypes: [
|
|
1516
|
-
"0x2::sui::SUI",
|
|
1517
|
-
"0xce7ff77a83ea0cb6fd39bd8748e2ec89a3f41e8efdc3f4eb123e0ca37b184db2::buck::BUCK",
|
|
1518
|
-
],
|
|
1519
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_BUCK_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1520
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_BUCK_POOL_REBALANCE_EVENT,
|
|
1521
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_BUCK_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1522
|
-
// add strategy type
|
|
1523
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1524
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/buck.svg",
|
|
1525
|
-
retired: true,
|
|
1526
|
-
},
|
|
1527
|
-
"NAVI-LOOP-USDT-USDC": {
|
|
1528
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_5_LATEST_PACKAGE_ID,
|
|
1529
|
-
packageNumber: 5,
|
|
1530
|
-
parentProtocolName: "NAVI",
|
|
1531
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_POOL,
|
|
1532
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_LOOP_USDT_USDC_POOL,
|
|
1533
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDT_USDC_INVESTOR,
|
|
1534
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_USDC_LOOP_RECEIPT_NAME,
|
|
1535
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDT_USDC_RECEIPT,
|
|
1536
|
-
assetTypes: [
|
|
1537
|
-
"0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN",
|
|
1538
|
-
],
|
|
1539
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDT_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1540
|
-
rebalanceEventType: undefined,
|
|
1541
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDT_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1542
|
-
strategyType: "LOOPING",
|
|
1543
|
-
checkRatioEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDT_USDC_POOL_CHECK_RATIO_EVENT,
|
|
1544
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDT.svg",
|
|
1545
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1546
|
-
retired: true,
|
|
1547
|
-
naviParentPoolCoinType: coins_js_1.coinsList["USDT"].type,
|
|
1548
|
-
},
|
|
1549
|
-
"BLUEFIN-USDT-USDC": {
|
|
1550
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1551
|
-
packageNumber: 4,
|
|
1552
|
-
parentProtocolName: "BLUEFIN",
|
|
1553
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_USDT_USDC_POOL,
|
|
1554
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_USDT_USDC_POOL,
|
|
1555
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_USDT_USDC_INVESTOR,
|
|
1556
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_USDT_USDC_RECEIPT_NAME,
|
|
1557
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_USDT_USDC_RECEIPT,
|
|
1558
|
-
assetTypes: [
|
|
1559
|
-
"0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN",
|
|
1560
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1561
|
-
],
|
|
1562
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_USDT_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1563
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_USDT_USDC_POOL_REBALANCE_EVENT,
|
|
1564
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_USDT_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1565
|
-
// add strategy type
|
|
1566
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDT.svg",
|
|
1567
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1568
|
-
retired: true,
|
|
1569
|
-
},
|
|
1570
|
-
"BLUEFIN-SUI-USDC": {
|
|
1571
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_4_LATEST_PACKAGE_ID,
|
|
1572
|
-
packageNumber: 4,
|
|
1573
|
-
parentProtocolName: "BLUEFIN",
|
|
1574
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BLUEFIN_SUI_USDC_POOL,
|
|
1575
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_USDC_POOL,
|
|
1576
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_USDC_INVESTOR,
|
|
1577
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_USDC_RECEIPT_NAME,
|
|
1578
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_USDC_RECEIPT,
|
|
1579
|
-
assetTypes: [
|
|
1580
|
-
"0x2::sui::SUI",
|
|
1581
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1582
|
-
],
|
|
1583
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1584
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_USDC_POOL_REBALANCE_EVENT,
|
|
1585
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_BLUEFIN_SUI_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1586
|
-
// add strategy type
|
|
1587
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1588
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1589
|
-
retired: false,
|
|
1590
|
-
},
|
|
1591
|
-
"NAVI-LOOP-HASUI-SUI": {
|
|
1592
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_2_LATEST_PACKAGE_ID,
|
|
1593
|
-
packageNumber: 2,
|
|
1594
|
-
parentProtocolName: "NAVI",
|
|
1595
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_HASUI_POOL,
|
|
1596
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_LOOP_HASUI_SUI_POOL,
|
|
1597
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_HASUI_SUI_INVESTOR,
|
|
1598
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_HASUI_SUI_LOOP_RECEIPT_NAME,
|
|
1599
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_HASUI_SUI_RECEIPT,
|
|
1600
|
-
assetTypes: [
|
|
1601
|
-
"0xbde4ba4c2e274a60ce15c1cfff9e5c42e41654ac8b6d906a57efa4bd3c29f47d::hasui::HASUI",
|
|
1602
|
-
],
|
|
1603
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_HASUI_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1604
|
-
rebalanceEventType: undefined,
|
|
1605
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_HASUI_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1606
|
-
strategyType: "LOOPING",
|
|
1607
|
-
checkRatioEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_HASUI_SUI_POOL_CHECK_RATIO_EVENT,
|
|
1608
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/hasui.svg",
|
|
1609
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1610
|
-
retired: true,
|
|
1611
|
-
naviParentPoolCoinType: coins_js_1.coinsList["HASUI"].type,
|
|
1612
|
-
},
|
|
1613
|
-
"NAVI-USDY": {
|
|
1614
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1615
|
-
packageNumber: 1,
|
|
1616
|
-
parentProtocolName: "NAVI",
|
|
1617
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDY_POOL,
|
|
1618
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_USDY_POOL,
|
|
1619
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDY_INVESTOR,
|
|
1620
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDY_POOL_RECEIPT_NAME,
|
|
1621
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDY_POOL_RECEIPT,
|
|
1622
|
-
assetTypes: [
|
|
1623
|
-
"0x960b531667636f39e85867775f52f6b1f220a058c4de786905bdf761e06a56bb::usdy::USDY",
|
|
1624
|
-
],
|
|
1625
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDY_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1626
|
-
rebalanceEventType: undefined,
|
|
1627
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDY_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1628
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1629
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/usdy.svg",
|
|
1630
|
-
retired: true,
|
|
1631
|
-
naviParentPoolCoinType: coins_js_1.coinsList["USDY"].type,
|
|
1632
|
-
},
|
|
1633
|
-
"NAVI-AUSD": {
|
|
1634
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
1635
|
-
packageNumber: 3,
|
|
1636
|
-
parentProtocolName: "NAVI",
|
|
1637
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_POOL,
|
|
1638
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_AUSD_POOL,
|
|
1639
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_INVESTOR,
|
|
1640
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_POOL_RECEIPT_NAME,
|
|
1641
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_POOL_RECEIPT,
|
|
1642
|
-
assetTypes: [
|
|
1643
|
-
"0x2053d08c1e2bd02791056171aab0fd12bd7cd7efad2ab8f6b9c8902f14df2ff2::ausd::AUSD",
|
|
1644
|
-
],
|
|
1645
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1646
|
-
rebalanceEventType: undefined,
|
|
1647
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_AUSD_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1648
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1649
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/ausd.png",
|
|
1650
|
-
retired: true,
|
|
1651
|
-
naviParentPoolCoinType: coins_js_1.coinsList["AUSD"].type,
|
|
1652
|
-
},
|
|
1653
|
-
"NAVI-ETH": {
|
|
1654
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
1655
|
-
packageNumber: 3,
|
|
1656
|
-
parentProtocolName: "NAVI",
|
|
1657
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_ETH_POOL,
|
|
1658
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_ETH_POOL,
|
|
1659
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_ETH_INVESTOR,
|
|
1660
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_ETH_POOL_RECEIPT_NAME,
|
|
1661
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_ETH_POOL_RECEIPT,
|
|
1662
|
-
assetTypes: [
|
|
1663
|
-
"0xd0e89b2af5e4910726fbcd8b8dd37bb79b29e5f83f7491bca830e94f7f226d29::eth::ETH",
|
|
1664
|
-
],
|
|
1665
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_ETH_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1666
|
-
rebalanceEventType: undefined,
|
|
1667
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_ETH_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1668
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1669
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/eth 2.png",
|
|
1670
|
-
retired: true,
|
|
1671
|
-
naviParentPoolCoinType: coins_js_1.coinsList["ETH"].type,
|
|
1672
|
-
},
|
|
1673
|
-
"BUCKET-BUCK": {
|
|
1674
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_3_LATEST_PACKAGE_ID,
|
|
1675
|
-
packageNumber: 3,
|
|
1676
|
-
parentProtocolName: "BUCKET",
|
|
1677
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BUCKET_PROTOCOL,
|
|
1678
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].BUCKET_BUCK_POOL,
|
|
1679
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].BUCKET_BUCK_INVESTOR,
|
|
1680
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].BUCKET_BUCK_POOL_RECEIPT_NAME,
|
|
1681
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].BUCKET_BUCK_POOL_RECEIPT,
|
|
1682
|
-
assetTypes: [
|
|
1683
|
-
"0xce7ff77a83ea0cb6fd39bd8748e2ec89a3f41e8efdc3f4eb123e0ca37b184db2::buck::BUCK",
|
|
1684
|
-
],
|
|
1685
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].BUCKET_BUCK_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1686
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].BUCKET_BUCK_POOL_REBALANCE_EVENT,
|
|
1687
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].BUCKET_BUCK_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1688
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/bucket_protocol.svg",
|
|
1689
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/buck.svg",
|
|
1690
|
-
retired: true,
|
|
1691
|
-
},
|
|
1692
|
-
"BUCK-SUI": {
|
|
1693
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1694
|
-
packageNumber: 1,
|
|
1695
|
-
parentProtocolName: "CETUS",
|
|
1696
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_CETUS_POOL_ID,
|
|
1697
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_POOL,
|
|
1698
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_CETUS_INVESTOR,
|
|
1699
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_POOL_RECEIPT_NAME,
|
|
1700
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_POOL_RECEIPT,
|
|
1701
|
-
assetTypes: [
|
|
1702
|
-
"0xce7ff77a83ea0cb6fd39bd8748e2ec89a3f41e8efdc3f4eb123e0ca37b184db2::buck::BUCK",
|
|
1703
|
-
"0x2::sui::SUI",
|
|
1704
|
-
],
|
|
1705
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1706
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_POOL_REBALANCE_EVENT,
|
|
1707
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].BUCK_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1708
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/buck.svg",
|
|
1709
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1710
|
-
retired: true,
|
|
1711
|
-
},
|
|
1712
|
-
"USDC-ETH": {
|
|
1713
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1714
|
-
packageNumber: 1,
|
|
1715
|
-
parentProtocolName: "CETUS",
|
|
1716
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_CETUS_POOL_ID,
|
|
1717
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_POOL,
|
|
1718
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_CETUS_INVESTOR,
|
|
1719
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_POOL_RECEIPT_NAME,
|
|
1720
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_POOL_RECEIPT,
|
|
1721
|
-
assetTypes: [
|
|
1722
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1723
|
-
"0xd0e89b2af5e4910726fbcd8b8dd37bb79b29e5f83f7491bca830e94f7f226d29::eth::ETH",
|
|
1724
|
-
],
|
|
1725
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1726
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_POOL_REBALANCE_EVENT,
|
|
1727
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_ETH_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1728
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1729
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/eth 2.png",
|
|
1730
|
-
retired: true,
|
|
1731
|
-
},
|
|
1732
|
-
"DEEP-SUI": {
|
|
1733
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1734
|
-
packageNumber: 1,
|
|
1735
|
-
parentProtocolName: "CETUS",
|
|
1736
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_CETUS_POOL_ID,
|
|
1737
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_POOL,
|
|
1738
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_CETUS_INVESTOR,
|
|
1739
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_POOL_RECEIPT_NAME,
|
|
1740
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_POOL_RECEIPT,
|
|
1741
|
-
assetTypes: [
|
|
1742
|
-
"0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP",
|
|
1743
|
-
"0x2::sui::SUI",
|
|
1744
|
-
],
|
|
1745
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1746
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_POOL_REBALANCE_EVENT,
|
|
1747
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].DEEP_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1748
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/deep.svg",
|
|
1749
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1750
|
-
retired: true,
|
|
1751
|
-
},
|
|
1752
|
-
"ALPHA-USDC": {
|
|
1753
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1754
|
-
packageNumber: 1,
|
|
1755
|
-
parentProtocolName: "CETUS",
|
|
1756
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_CETUS_POOL_ID,
|
|
1757
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_POOL,
|
|
1758
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_CETUS_INVESTOR,
|
|
1759
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_POOL_RECEIPT_NAME,
|
|
1760
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_POOL_RECEIPT,
|
|
1761
|
-
assetTypes: [
|
|
1762
|
-
"0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
|
|
1763
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1764
|
-
],
|
|
1765
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1766
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_POOL_REBALANCE_EVENT,
|
|
1767
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1768
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/logo192.png",
|
|
1769
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1770
|
-
retired: true,
|
|
1771
|
-
},
|
|
1772
|
-
"USDC-WUSDC": {
|
|
1773
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1774
|
-
packageNumber: 1,
|
|
1775
|
-
parentProtocolName: "CETUS",
|
|
1776
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_CETUS_POOL_ID,
|
|
1777
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_POOL,
|
|
1778
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_CETUS_INVESTOR,
|
|
1779
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_POOL_RECEIPT_NAME,
|
|
1780
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_POOL_RECEIPT,
|
|
1781
|
-
assetTypes: [
|
|
1782
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1783
|
-
"0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
|
|
1784
|
-
],
|
|
1785
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1786
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_POOL_REBALANCE_EVENT,
|
|
1787
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_WUSDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1788
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1789
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
1790
|
-
retired: true,
|
|
1791
|
-
},
|
|
1792
|
-
"USDC-SUI": {
|
|
1793
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1794
|
-
packageNumber: 1,
|
|
1795
|
-
parentProtocolName: "CETUS",
|
|
1796
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_CETUS_POOL_ID,
|
|
1797
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_POOL,
|
|
1798
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_CETUS_INVESTOR,
|
|
1799
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_POOL_RECEIPT_NAME,
|
|
1800
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_POOL_RECEIPT,
|
|
1801
|
-
assetTypes: [
|
|
1802
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1803
|
-
"0x2::sui::SUI",
|
|
1804
|
-
],
|
|
1805
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1806
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_POOL_REBALANCE_EVENT,
|
|
1807
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1808
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1809
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1810
|
-
retired: true,
|
|
1811
|
-
},
|
|
1812
|
-
"USDC-USDT": {
|
|
1813
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1814
|
-
packageNumber: 1,
|
|
1815
|
-
parentProtocolName: "CETUS",
|
|
1816
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_CETUS_POOL_ID,
|
|
1817
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_POOL,
|
|
1818
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_CETUS_INVESTOR,
|
|
1819
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_POOL_RECEIPT_NAME,
|
|
1820
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_POOL_RECEIPT,
|
|
1821
|
-
assetTypes: [
|
|
1822
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1823
|
-
"0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN",
|
|
1824
|
-
],
|
|
1825
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1826
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_POOL_REBALANCE_EVENT,
|
|
1827
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDC_USDT_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1828
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1829
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDT.svg",
|
|
1830
|
-
retired: true,
|
|
1831
|
-
},
|
|
1832
|
-
"NAVI-USDC": {
|
|
1833
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1834
|
-
packageNumber: 1,
|
|
1835
|
-
parentProtocolName: "NAVI",
|
|
1836
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_POOL,
|
|
1837
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_USDC_POOL,
|
|
1838
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_INVESTOR,
|
|
1839
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_POOL_RECEIPT_NAME,
|
|
1840
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_POOL_RECEIPT,
|
|
1841
|
-
assetTypes: [
|
|
1842
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1843
|
-
],
|
|
1844
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1845
|
-
rebalanceEventType: undefined,
|
|
1846
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1847
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1848
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1849
|
-
retired: false,
|
|
1850
|
-
naviParentPoolCoinType: coins_js_1.coinsList["USDC"].type,
|
|
1851
|
-
},
|
|
1852
|
-
"NAVI-LOOP-USDC-USDT": {
|
|
1853
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_2_LATEST_PACKAGE_ID,
|
|
1854
|
-
packageNumber: 2,
|
|
1855
|
-
parentProtocolName: "NAVI",
|
|
1856
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_POOL,
|
|
1857
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_LOOP_USDC_USDT_POOL,
|
|
1858
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDC_USDT_INVESTOR,
|
|
1859
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDC_USDT_LOOP_RECEIPT_NAME,
|
|
1860
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDC_USDT_RECEIPT,
|
|
1861
|
-
assetTypes: [
|
|
1862
|
-
"0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
|
|
1863
|
-
],
|
|
1864
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDC_USDT_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1865
|
-
rebalanceEventType: undefined,
|
|
1866
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDC_USDT_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1867
|
-
strategyType: "LOOPING",
|
|
1868
|
-
checkRatioEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_USDC_USDT_POOL_CHECK_RATIO_EVENT,
|
|
1869
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDC.svg",
|
|
1870
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDT.svg",
|
|
1871
|
-
retired: true,
|
|
1872
|
-
naviParentPoolCoinType: coins_js_1.coinsList["USDC"].type,
|
|
1873
|
-
},
|
|
1874
|
-
"NAVI-LOOP-SUI-VSUI": {
|
|
1875
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_2_LATEST_PACKAGE_ID,
|
|
1876
|
-
packageNumber: 2,
|
|
1877
|
-
parentProtocolName: "NAVI",
|
|
1878
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_POOL,
|
|
1879
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_LOOP_SUI_VSUI_POOL,
|
|
1880
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_SUI_VSUI_INVESTOR,
|
|
1881
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_VSUI_LOOP_RECEIPT_NAME,
|
|
1882
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_SUI_VSUI_RECEIPT,
|
|
1883
|
-
assetTypes: ["0x2::sui::SUI"],
|
|
1884
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_SUI_VSUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1885
|
-
rebalanceEventType: undefined,
|
|
1886
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_SUI_VSUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1887
|
-
strategyType: "LOOPING",
|
|
1888
|
-
checkRatioEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_SUI_VSUI_POOL_CHECK_RATIO_EVENT,
|
|
1889
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1890
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/vsui.png",
|
|
1891
|
-
retired: true,
|
|
1892
|
-
naviParentPoolCoinType: coins_js_1.coinsList["VSUI"].type,
|
|
1893
|
-
},
|
|
1894
|
-
"NAVI-SUI": {
|
|
1895
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1896
|
-
packageNumber: 1,
|
|
1897
|
-
parentProtocolName: "NAVI",
|
|
1898
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_POOL,
|
|
1899
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_SUI_POOL,
|
|
1900
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_INVESTOR,
|
|
1901
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_POOL_RECEIPT_NAME,
|
|
1902
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_POOL_RECEIPT,
|
|
1903
|
-
assetTypes: ["0x2::sui::SUI"],
|
|
1904
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1905
|
-
rebalanceEventType: undefined,
|
|
1906
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1907
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_SUI_POOL_AFTER_TRANSACTION_EVENT,
|
|
1908
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1909
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1910
|
-
retired: true,
|
|
1911
|
-
naviParentPoolCoinType: "0x2::sui::SUI",
|
|
1912
|
-
},
|
|
1913
|
-
"NAVI-VSUI": {
|
|
1914
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1915
|
-
packageNumber: 1,
|
|
1916
|
-
parentProtocolName: "NAVI",
|
|
1917
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_POOL,
|
|
1918
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_VSUI_POOL,
|
|
1919
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_INVESTOR,
|
|
1920
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_POOL_RECEIPT_NAME,
|
|
1921
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_POOL_RECEIPT,
|
|
1922
|
-
assetTypes: [
|
|
1923
|
-
"0x549e8b69270defbfafd4f94e17ec44cdbdd99820b33bda2278dea3b9a32d3f55::cert::CERT",
|
|
1924
|
-
],
|
|
1925
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1926
|
-
rebalanceEventType: undefined,
|
|
1927
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1928
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_VSUI_POOL_AFTER_TRANSACTION_EVENT,
|
|
1929
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1930
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/vsui.png",
|
|
1931
|
-
retired: true,
|
|
1932
|
-
naviParentPoolCoinType: coins_js_1.coinsList["VSUI"].type,
|
|
1933
|
-
},
|
|
1934
|
-
"NAVI-WETH": {
|
|
1935
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1936
|
-
packageNumber: 1,
|
|
1937
|
-
parentProtocolName: "NAVI",
|
|
1938
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WETH_POOL,
|
|
1939
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_WETH_POOL,
|
|
1940
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WETH_INVESTOR,
|
|
1941
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WETH_POOL_RECEIPT_NAME,
|
|
1942
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WETH_POOL_RECEIPT,
|
|
1943
|
-
assetTypes: [
|
|
1944
|
-
"0xaf8cd5edc19c4512f4259f0bee101a40d41ebed738ade5874359610ef8eeced5::coin::COIN",
|
|
1945
|
-
],
|
|
1946
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WETH_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1947
|
-
rebalanceEventType: undefined,
|
|
1948
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WETH_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1949
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WETH_POOL_AFTER_TRANSACTION_EVENT,
|
|
1950
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1951
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
1952
|
-
retired: true,
|
|
1953
|
-
naviParentPoolCoinType: coins_js_1.coinsList["WETH"].type,
|
|
1954
|
-
},
|
|
1955
|
-
"NAVI-USDT": {
|
|
1956
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1957
|
-
packageNumber: 1,
|
|
1958
|
-
parentProtocolName: "NAVI",
|
|
1959
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_POOL,
|
|
1960
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_USDT_POOL,
|
|
1961
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_INVESTOR,
|
|
1962
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_POOL_RECEIPT_NAME,
|
|
1963
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_POOL_RECEIPT,
|
|
1964
|
-
assetTypes: [
|
|
1965
|
-
"0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN",
|
|
1966
|
-
],
|
|
1967
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1968
|
-
rebalanceEventType: undefined,
|
|
1969
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1970
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_USDT_POOL_AFTER_TRANSACTION_EVENT,
|
|
1971
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1972
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/USDT.svg",
|
|
1973
|
-
retired: true,
|
|
1974
|
-
naviParentPoolCoinType: coins_js_1.coinsList["USDT"].type,
|
|
1975
|
-
},
|
|
1976
|
-
"NAVI-WUSDC": {
|
|
1977
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1978
|
-
packageNumber: 1,
|
|
1979
|
-
parentProtocolName: "NAVI",
|
|
1980
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WUSDC_POOL,
|
|
1981
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_NAVI_WUSDC_POOL,
|
|
1982
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WUSDC_INVESTOR,
|
|
1983
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WUSDC_POOL_RECEIPT_NAME,
|
|
1984
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WUSDC_POOL_RECEIPT,
|
|
1985
|
-
assetTypes: [
|
|
1986
|
-
"0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
|
|
1987
|
-
],
|
|
1988
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WUSDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
1989
|
-
rebalanceEventType: undefined,
|
|
1990
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WUSDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
1991
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_WUSDC_POOL_AFTER_TRANSACTION_EVENT,
|
|
1992
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
1993
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
1994
|
-
retired: true,
|
|
1995
|
-
naviParentPoolCoinType: coins_js_1.coinsList["WUSDC"].type,
|
|
1996
|
-
},
|
|
1997
|
-
// "NAVI-HASUI": {
|
|
1998
|
-
// packageId: conf[CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
1999
|
-
// packageNumber: 1,
|
|
2000
|
-
// parentProtocolName: "NAVI",
|
|
2001
|
-
// parentPoolId: conf[CONF_ENV].NAVI_HASUI_POOL,
|
|
2002
|
-
// poolId: conf[CONF_ENV].ALPHAFI_NAVI_HASUI_POOL,
|
|
2003
|
-
// investorId: conf[CONF_ENV].NAVI_HASUI_INVESTOR,
|
|
2004
|
-
// receiptName: conf[CONF_ENV].NAVI_HASUI_POOL_RECEIPT_NAME,
|
|
2005
|
-
// receiptType: conf[CONF_ENV].NAVI_HASUI_POOL_RECEIPT,
|
|
2006
|
-
// autoCompoundingEventType:
|
|
2007
|
-
// conf[CONF_ENV].NAVI_HASUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2008
|
-
// rebalanceEventType: undefined,
|
|
2009
|
-
// liquidityChangeEventType:
|
|
2010
|
-
// conf[CONF_ENV].NAVI_HASUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2011
|
-
// afterTransactionEventType:
|
|
2012
|
-
// conf[CONF_ENV].NAVI_HASUI_POOL_AFTER_TRANSACTION_EVENT,
|
|
2013
|
-
// },
|
|
2014
|
-
ALPHA: {
|
|
2015
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_EMBER_LATEST_PACKAGE_ID,
|
|
2016
|
-
packageNumber: 1,
|
|
2017
|
-
parentProtocolName: "ALPHAFI",
|
|
2018
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_EMBER_POOL,
|
|
2019
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHAFI_EMBER_POOL,
|
|
2020
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_POOL,
|
|
2021
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_POOL_RECEIPT_NAME,
|
|
2022
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_POOL_RECEIPT,
|
|
2023
|
-
assetTypes: [
|
|
2024
|
-
"0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
|
|
2025
|
-
],
|
|
2026
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2027
|
-
rebalanceEventType: undefined,
|
|
2028
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2029
|
-
withdrawV2EventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_POOL_WITHDRAW_V2_EVENT,
|
|
2030
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_POOL_AFTER_TRANSACTION_EVENT,
|
|
2031
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/logo192.png",
|
|
2032
|
-
lockIcon: "https://images.alphafi.xyz/adminweb/lock.svg",
|
|
2033
|
-
retired: false,
|
|
2034
|
-
},
|
|
2035
|
-
"ALPHA-SUI": {
|
|
2036
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2037
|
-
packageNumber: 1,
|
|
2038
|
-
parentProtocolName: "CETUS",
|
|
2039
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_CETUS_POOL_ID,
|
|
2040
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_POOL,
|
|
2041
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_CETUS_INVESTOR,
|
|
2042
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_POOL_RECEIPT_NAME,
|
|
2043
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_POOL_RECEIPT,
|
|
2044
|
-
assetTypes: [
|
|
2045
|
-
"0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
|
|
2046
|
-
"0x2::sui::SUI",
|
|
2047
|
-
],
|
|
2048
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2049
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_POOL_REBALANCE_EVENT,
|
|
2050
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2051
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_SUI_POOL_AFTER_TRANSACTION_EVENT,
|
|
2052
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/logo192.png",
|
|
2053
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
2054
|
-
retired: true,
|
|
2055
|
-
},
|
|
2056
|
-
// "HASUI-SUI": {
|
|
2057
|
-
// packageId: conf[CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2058
|
-
// packageNumber: 1,
|
|
2059
|
-
// parentProtocolName: "CETUS",
|
|
2060
|
-
// parentPoolId: conf[CONF_ENV].HASUI_SUI_CETUS_POOL_ID,
|
|
2061
|
-
// poolId: conf[CONF_ENV].HASUI_SUI_POOL,
|
|
2062
|
-
// investorId: conf[CONF_ENV].HASUI_SUI_CETUS_INVESTOR,
|
|
2063
|
-
// receiptName: conf[CONF_ENV].HASUI_SUI_POOL_RECEIPT_NAME,
|
|
2064
|
-
// receiptType: conf[CONF_ENV].HASUI_SUI_POOL_RECEIPT,
|
|
2065
|
-
// autoCompoundingEventType:
|
|
2066
|
-
// conf[CONF_ENV].HASUI_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2067
|
-
// rebalanceEventType: conf[CONF_ENV].HASUI_SUI_POOL_REBALANCE_EVENT,
|
|
2068
|
-
// liquidityChangeEventType:
|
|
2069
|
-
// conf[CONF_ENV].HASUI_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2070
|
-
// afterTransactionEventType:
|
|
2071
|
-
// conf[CONF_ENV].HASUI_SUI_POOL_AFTER_TRANSACTION_EVENT,
|
|
2072
|
-
// },
|
|
2073
|
-
"USDT-WUSDC": {
|
|
2074
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2075
|
-
packageNumber: 1,
|
|
2076
|
-
parentProtocolName: "CETUS",
|
|
2077
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_CETUS_POOL_ID,
|
|
2078
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_USDT_POOL,
|
|
2079
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_CETUS_INVESTOR,
|
|
2080
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_POOL_RECEIPT_NAME,
|
|
2081
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_POOL_RECEIPT,
|
|
2082
|
-
assetTypes: [
|
|
2083
|
-
"0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN",
|
|
2084
|
-
"0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
|
|
2085
|
-
],
|
|
2086
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2087
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_POOL_REBALANCE_EVENT,
|
|
2088
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2089
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].USDT_WUSDC_POOL_AFTER_TRANSACTION_EVENT,
|
|
2090
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/USDT.svg",
|
|
2091
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
2092
|
-
retired: true,
|
|
2093
|
-
},
|
|
2094
|
-
// "USDY-WUSDC": {
|
|
2095
|
-
// packageId: conf[CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2096
|
-
// packageNumber: 1,
|
|
2097
|
-
// parentProtocolName: "CETUS",
|
|
2098
|
-
// parentPoolId: conf[CONF_ENV].USDY_WUSDC_CETUS_POOL_ID,
|
|
2099
|
-
// poolId: conf[CONF_ENV].USDY_WUSDC_POOL,
|
|
2100
|
-
// investorId: conf[CONF_ENV].USDY_WUSDC_CETUS_INVESTOR,
|
|
2101
|
-
// receiptName: conf[CONF_ENV].USDY_WUSDC_POOL_RECEIPT_NAME,
|
|
2102
|
-
// receiptType: conf[CONF_ENV].USDY_WUSDC_POOL_RECEIPT,
|
|
2103
|
-
// autoCompoundingEventType:
|
|
2104
|
-
// conf[CONF_ENV].USDY_WUSDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2105
|
-
// rebalanceEventType: conf[CONF_ENV].USDY_WUSDC_POOL_REBALANCE_EVENT,
|
|
2106
|
-
// liquidityChangeEventType:
|
|
2107
|
-
// conf[CONF_ENV].USDY_WUSDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2108
|
-
// afterTransactionEventType:
|
|
2109
|
-
// conf[CONF_ENV].USDY_WUSDC_POOL_AFTER_TRANSACTION_EVENT,
|
|
2110
|
-
// },
|
|
2111
|
-
"WUSDC-SUI": {
|
|
2112
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2113
|
-
packageNumber: 1,
|
|
2114
|
-
parentProtocolName: "CETUS",
|
|
2115
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_CETUS_POOL_ID,
|
|
2116
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_POOL,
|
|
2117
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_CETUS_INVESTOR,
|
|
2118
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_POOL_RECEIPT_NAME,
|
|
2119
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_POOL_RECEIPT,
|
|
2120
|
-
assetTypes: [
|
|
2121
|
-
"0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
|
|
2122
|
-
"0x2::sui::SUI",
|
|
2123
|
-
],
|
|
2124
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2125
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_POOL_REBALANCE_EVENT,
|
|
2126
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2127
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_SUI_POOL_AFTER_TRANSACTION_EVENT,
|
|
2128
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
2129
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
2130
|
-
retired: true,
|
|
2131
|
-
},
|
|
2132
|
-
"WETH-WUSDC": {
|
|
2133
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2134
|
-
packageNumber: 1,
|
|
2135
|
-
parentProtocolName: "CETUS",
|
|
2136
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_CETUS_POOL_ID,
|
|
2137
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_POOL,
|
|
2138
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_CETUS_INVESTOR,
|
|
2139
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_POOL_RECEIPT_NAME,
|
|
2140
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_POOL_RECEIPT,
|
|
2141
|
-
assetTypes: [
|
|
2142
|
-
"0xaf8cd5edc19c4512f4259f0bee101a40d41ebed738ade5874359610ef8eeced5::coin::COIN",
|
|
2143
|
-
"0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
|
|
2144
|
-
],
|
|
2145
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2146
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_POOL_REBALANCE_EVENT,
|
|
2147
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2148
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WETH_WUSDC_POOL_AFTER_TRANSACTION_EVENT,
|
|
2149
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/weth.svg",
|
|
2150
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
2151
|
-
retired: true,
|
|
2152
|
-
},
|
|
2153
|
-
"WUSDC-WBTC": {
|
|
2154
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2155
|
-
packageNumber: 1,
|
|
2156
|
-
parentProtocolName: "CETUS",
|
|
2157
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_CETUS_POOL_ID,
|
|
2158
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_POOL,
|
|
2159
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_CETUS_INVESTOR,
|
|
2160
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_POOL_RECEIPT_NAME,
|
|
2161
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_POOL_RECEIPT,
|
|
2162
|
-
assetTypes: [
|
|
2163
|
-
"0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
|
|
2164
|
-
"0x27792d9fed7f9844eb4839566001bb6f6cb4804f66aa2da6fe1ee242d896881::coin::COIN",
|
|
2165
|
-
],
|
|
2166
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2167
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_POOL_REBALANCE_EVENT,
|
|
2168
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2169
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WUSDC_WBTC_POOL_AFTER_TRANSACTION_EVENT,
|
|
2170
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/BTCB.svg",
|
|
2171
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
2172
|
-
retired: true,
|
|
2173
|
-
},
|
|
2174
|
-
"NAVX-SUI": {
|
|
2175
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2176
|
-
packageNumber: 1,
|
|
2177
|
-
parentProtocolName: "CETUS",
|
|
2178
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_CETUS_POOL_ID,
|
|
2179
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_POOL,
|
|
2180
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_CETUS_INVESTOR,
|
|
2181
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_POOL_RECEIPT_NAME,
|
|
2182
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_POOL_RECEIPT,
|
|
2183
|
-
assetTypes: [
|
|
2184
|
-
"0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX",
|
|
2185
|
-
"0x2::sui::SUI",
|
|
2186
|
-
],
|
|
2187
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2188
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_POOL_REBALANCE_EVENT,
|
|
2189
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2190
|
-
afterTransactionEventType: constants_js_1.conf[constants_js_1.CONF_ENV].NAVX_SUI_POOL_AFTER_TRANSACTION_EVENT,
|
|
2191
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/navi_token.svg",
|
|
2192
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
2193
|
-
retired: true,
|
|
2194
|
-
},
|
|
2195
|
-
// "BUCK-WUSDC": {
|
|
2196
|
-
// packageId: conf[CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2197
|
-
// packageNumber: 1,
|
|
2198
|
-
// parentProtocolName: "CETUS",
|
|
2199
|
-
// parentPoolId: conf[CONF_ENV].BUCK_WUSDC_CETUS_POOL_ID,
|
|
2200
|
-
// poolId: conf[CONF_ENV].BUCK_WUSDC_POOL,
|
|
2201
|
-
// investorId: conf[CONF_ENV].BUCK_WUSDC_CETUS_INVESTOR,
|
|
2202
|
-
// receiptName: conf[CONF_ENV].BUCK_WUSDC_POOL_RECEIPT_NAME,
|
|
2203
|
-
// receiptType: conf[CONF_ENV].BUCK_WUSDC_POOL_RECEIPT,
|
|
2204
|
-
// autoCompoundingEventType:
|
|
2205
|
-
// conf[CONF_ENV].BUCK_WUSDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2206
|
-
// rebalanceEventType: conf[CONF_ENV].BUCK_WUSDC_POOL_REBALANCE_EVENT,
|
|
2207
|
-
// liquidityChangeEventType:
|
|
2208
|
-
// conf[CONF_ENV].BUCK_WUSDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2209
|
-
// afterTransactionEventType:
|
|
2210
|
-
// conf[CONF_ENV].BUCK_WUSDC_POOL_AFTER_TRANSACTION_EVENT,
|
|
2211
|
-
// },
|
|
2212
|
-
"CETUS-SUI": {
|
|
2213
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_2_LATEST_PACKAGE_ID,
|
|
2214
|
-
packageNumber: 2,
|
|
2215
|
-
parentProtocolName: "CETUS",
|
|
2216
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_CETUS_POOL_ID,
|
|
2217
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_POOL,
|
|
2218
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_CETUS_INVESTOR,
|
|
2219
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_POOL_RECEIPT_NAME,
|
|
2220
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_POOL_RECEIPT,
|
|
2221
|
-
assetTypes: [
|
|
2222
|
-
"0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS",
|
|
2223
|
-
"0x2::sui::SUI",
|
|
2224
|
-
],
|
|
2225
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2226
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_POOL_REBALANCE_EVENT,
|
|
2227
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].CETUS_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2228
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/cetus_token.svg",
|
|
2229
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
2230
|
-
retired: true,
|
|
2231
|
-
},
|
|
2232
|
-
"ALPHA-WUSDC": {
|
|
2233
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2234
|
-
packageNumber: 1,
|
|
2235
|
-
parentProtocolName: "CETUS",
|
|
2236
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_CETUS_POOL_ID,
|
|
2237
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_POOL,
|
|
2238
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_CETUS_INVESTOR,
|
|
2239
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_POOL_RECEIPT_NAME,
|
|
2240
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_POOL_RECEIPT,
|
|
2241
|
-
assetTypes: [
|
|
2242
|
-
"0xfe3afec26c59e874f3c1d60b8203cb3852d2bb2aa415df9548b8d688e6683f93::alpha::ALPHA",
|
|
2243
|
-
"0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
|
|
2244
|
-
],
|
|
2245
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2246
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_POOL_REBALANCE_EVENT,
|
|
2247
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_WUSDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2248
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/logo192.png",
|
|
2249
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
2250
|
-
retired: true,
|
|
2251
|
-
},
|
|
2252
|
-
"WSOL-WUSDC": {
|
|
2253
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2254
|
-
packageNumber: 1,
|
|
2255
|
-
parentProtocolName: "CETUS",
|
|
2256
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_CETUS_POOL_ID,
|
|
2257
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_POOL,
|
|
2258
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_CETUS_INVESTOR,
|
|
2259
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_POOL_RECEIPT_NAME,
|
|
2260
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_POOL_RECEIPT,
|
|
2261
|
-
assetTypes: [
|
|
2262
|
-
"0xb7844e289a8410e50fb3ca48d69eb9cf29e27d223ef90353fe1bd8e27ff8f3f8::coin::COIN",
|
|
2263
|
-
"0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
|
|
2264
|
-
],
|
|
2265
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2266
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_POOL_REBALANCE_EVENT,
|
|
2267
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].WSOL_WUSDC_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2268
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/wsol.png",
|
|
2269
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/wusdc.svg",
|
|
2270
|
-
retired: true,
|
|
2271
|
-
},
|
|
2272
|
-
"FUD-SUI": {
|
|
2273
|
-
packageId: constants_js_1.conf[constants_js_1.CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2274
|
-
packageNumber: 1,
|
|
2275
|
-
parentProtocolName: "CETUS",
|
|
2276
|
-
parentPoolId: constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_CETUS_POOL_ID,
|
|
2277
|
-
poolId: constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_POOL,
|
|
2278
|
-
investorId: constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_CETUS_INVESTOR,
|
|
2279
|
-
receiptName: constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_POOL_RECEIPT_NAME,
|
|
2280
|
-
receiptType: constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_POOL_RECEIPT,
|
|
2281
|
-
assetTypes: [
|
|
2282
|
-
"0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD",
|
|
2283
|
-
"0x2::sui::SUI",
|
|
2284
|
-
],
|
|
2285
|
-
autoCompoundingEventType: constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2286
|
-
rebalanceEventType: constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_POOL_REBALANCE_EVENT,
|
|
2287
|
-
liquidityChangeEventType: constants_js_1.conf[constants_js_1.CONF_ENV].FUD_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2288
|
-
imageUrl1: "https://images.alphafi.xyz/adminweb/fud.png",
|
|
2289
|
-
imageUrl2: "https://images.alphafi.xyz/adminweb/sui-logo1.svg",
|
|
2290
|
-
retired: true,
|
|
2291
|
-
},
|
|
2292
|
-
// "BLUB-SUI": {
|
|
2293
|
-
// packageId: conf[CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2294
|
-
// packageNumber: 1,
|
|
2295
|
-
// parentProtocolName: "CETUS",
|
|
2296
|
-
// parentPoolId: conf[CONF_ENV].BLUB_SUI_CETUS_POOL_ID,
|
|
2297
|
-
// poolId: conf[CONF_ENV].BLUB_SUI_POOL,
|
|
2298
|
-
// investorId: conf[CONF_ENV].BLUB_SUI_CETUS_INVESTOR,
|
|
2299
|
-
// receiptName: conf[CONF_ENV].BLUB_SUI_POOL_RECEIPT_NAME,
|
|
2300
|
-
// receiptType: conf[CONF_ENV].BLUB_SUI_POOL_RECEIPT,
|
|
2301
|
-
// autoCompoundingEventType:
|
|
2302
|
-
// conf[CONF_ENV].BLUB_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2303
|
-
// rebalanceEventType: conf[CONF_ENV].BLUB_SUI_POOL_REBALANCE_EVENT,
|
|
2304
|
-
// liquidityChangeEventType:
|
|
2305
|
-
// conf[CONF_ENV].BLUB_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2306
|
-
// },
|
|
2307
|
-
// "SCA-SUI": {
|
|
2308
|
-
// packageId: conf[CONF_ENV].ALPHA_LATEST_PACKAGE_ID,
|
|
2309
|
-
// packageNumber: 1,
|
|
2310
|
-
// parentProtocolName: "CETUS",
|
|
2311
|
-
// parentPoolId: conf[CONF_ENV].SCA_SUI_CETUS_POOL_ID,
|
|
2312
|
-
// poolId: conf[CONF_ENV].SCA_SUI_POOL,
|
|
2313
|
-
// investorId: conf[CONF_ENV].SCA_SUI_CETUS_INVESTOR,
|
|
2314
|
-
// receiptName: conf[CONF_ENV].SCA_SUI_POOL_RECEIPT_NAME,
|
|
2315
|
-
// receiptType: conf[CONF_ENV].SCA_SUI_POOL_RECEIPT,
|
|
2316
|
-
// autoCompoundingEventType:
|
|
2317
|
-
// conf[CONF_ENV].SCA_SUI_POOL_AUTO_COMPOUNDING_EVENT,
|
|
2318
|
-
// rebalanceEventType: conf[CONF_ENV].SCA_SUI_POOL_REBALANCE_EVENT,
|
|
2319
|
-
// liquidityChangeEventType:
|
|
2320
|
-
// conf[CONF_ENV].SCA_SUI_POOL_LIQUIDITY_CHANGE_EVENT,
|
|
2321
|
-
// },
|
|
2322
|
-
};
|
|
2323
|
-
function coinsInPool(poolName, event) {
|
|
2324
|
-
// Special case for "NAVI-LOOP-SUI-VSUI"
|
|
2325
|
-
if (poolName === "NAVI-LOOP-SUI-VSUI") {
|
|
2326
|
-
if (event &&
|
|
2327
|
-
event.type ===
|
|
2328
|
-
constants_js_1.conf[constants_js_1.CONF_ENV].NAVI_LOOP_SUI_VSUI_POOL_LIQUIDITY_CHANGE_EVENT &&
|
|
2329
|
-
event.event_type === 0) {
|
|
2330
|
-
return "SUI";
|
|
2331
|
-
}
|
|
2332
|
-
return "VSUI";
|
|
2333
|
-
}
|
|
2334
|
-
// Special case for "ALPHALEND-LOOP-SUI-STSUI"
|
|
2335
|
-
if (poolName === "ALPHALEND-LOOP-SUI-STSUI") {
|
|
2336
|
-
if (event &&
|
|
2337
|
-
event.type ===
|
|
2338
|
-
constants_js_1.conf[constants_js_1.CONF_ENV].ALPHALEND_LOOP_SUI_STSUI_POOL_LIQUIDITY_CHANGE_EVENT) {
|
|
2339
|
-
return "SUI";
|
|
2340
|
-
}
|
|
2341
|
-
return "STSUI";
|
|
2342
|
-
}
|
|
2343
|
-
const singleAsset = exports.singleAssetPoolCoinMap[poolName];
|
|
2344
|
-
const doubleAsset = exports.doubleAssetPoolCoinMap[poolName];
|
|
2345
|
-
if (singleAsset) {
|
|
2346
|
-
return singleAsset.coin;
|
|
2347
|
-
}
|
|
2348
|
-
if (doubleAsset) {
|
|
2349
|
-
return { coinA: doubleAsset.coin1, coinB: doubleAsset.coin2 };
|
|
2350
|
-
}
|
|
2351
|
-
console.error("poolName: ", poolName);
|
|
2352
|
-
throw new Error("Pool not found in poolCoinMap or poolCoinPairMap");
|
|
2353
|
-
}
|
|
2354
|
-
/** @deprecated */
|
|
2355
|
-
function getInvestorPoolMap() {
|
|
2356
|
-
const investorIdToPoolNameMap = new Map();
|
|
2357
|
-
for (const poolName in exports.poolInfo) {
|
|
2358
|
-
if (exports.poolInfo.hasOwnProperty(poolName)) {
|
|
2359
|
-
const { investorId } = exports.poolInfo[poolName];
|
|
2360
|
-
if (investorId !== undefined &&
|
|
2361
|
-
investorId !== null &&
|
|
2362
|
-
investorId !== "") {
|
|
2363
|
-
investorIdToPoolNameMap.set(investorId, poolName);
|
|
2364
|
-
}
|
|
2365
|
-
}
|
|
2366
|
-
}
|
|
2367
|
-
return investorIdToPoolNameMap;
|
|
2368
|
-
}
|
|
2369
|
-
exports.poolIdPoolNameMap = (() => {
|
|
2370
|
-
const res = {};
|
|
2371
|
-
Object.entries(exports.poolInfo).map(([poolName, info]) => {
|
|
2372
|
-
const poolId = info.poolId;
|
|
2373
|
-
res[poolId] = poolName;
|
|
2374
|
-
});
|
|
2375
|
-
delete res[""]; //deletes unlaunched pools
|
|
2376
|
-
return res;
|
|
2377
|
-
})();
|
|
2378
|
-
exports.coinTypeMap = (() => {
|
|
2379
|
-
const res = {};
|
|
2380
|
-
Object.entries(coins_js_1.coinsList).map(([coinName, data]) => {
|
|
2381
|
-
res[data.type] = coinName;
|
|
2382
|
-
});
|
|
2383
|
-
delete res[""]; //deletes unlaunched pools
|
|
2384
|
-
return res;
|
|
2385
|
-
})();
|
|
2386
|
-
exports.poolIdQueryPoolMap = {
|
|
2387
|
-
// alpha pool
|
|
2388
|
-
"0x6ee8f60226edf48772f81e5986994745dae249c2605a5b12de6602ef1b05b0c1": "alphaPool",
|
|
2389
|
-
// cetus pools
|
|
2390
|
-
"0x594f13b8f287003fd48e4264e7056e274b84709ada31e3657f00eeedc1547e37": "alphaSuiPool",
|
|
2391
|
-
"0x30066d9879374276dc01177fbd239a9377b497bcd347c82811d75fcda35b18e5": "wusdcUsdtPool",
|
|
2392
|
-
"0xa7239a0c727c40ee3a139689b16b281acfd0682a06c23531b184a61721ece437": "usdyWusdcPool",
|
|
2393
|
-
"0xee6f6392cbd9e1997f6e4cf71db0c1ae1611f1f5f7f23f90ad2c64b8f23cceab": "suiWusdcPool",
|
|
2394
|
-
"0xbdf4f673b34274f36be284bca3f765083380fefb29141f971db289294bf679c6": "wethWusdcPool",
|
|
2395
|
-
"0x676fc5cad79f51f6a7d03bfa3474ecd3c695d322380fc68e3d4f61819da3bf8a": "wbtcWusdcPool",
|
|
2396
|
-
"0x045e4e3ccd383bedeb8fda54c39a7a1b1a6ed6a9f66aec4998984373558f96a0": "navxSuiPool",
|
|
2397
|
-
// navi pools
|
|
2398
|
-
"0x643f84e0a33b19e2b511be46232610c6eb38e772931f582f019b8bbfb893ddb3": "suiPool",
|
|
2399
|
-
"0x0d9598006d37077b4935400f6525d7f1070784e2d6f04765d76ae0a4880f7d0a": "vsuiPool",
|
|
2400
|
-
"0xe4eef7d4d8cafa3ef90ea486ff7d1eec347718375e63f1f778005ae646439aad": "wethPool",
|
|
2401
|
-
"0xc696ca5b8f21a1f8fcd62cff16bbe5a396a4bed6f67909cfec8269eb16e60757": "usdtPool",
|
|
2402
|
-
"0x01493446093dfcdcfc6c16dc31ffe40ba9ac2e99a3f6c16a0d285bff861944ae": "wusdcPool",
|
|
2403
|
-
};
|
|
2404
|
-
exports.poolIdQueryCetusPoolMap = {
|
|
2405
|
-
"0x594f13b8f287003fd48e4264e7056e274b84709ada31e3657f00eeedc1547e37": "alphaSuiCetusPool",
|
|
2406
|
-
"0x30066d9879374276dc01177fbd239a9377b497bcd347c82811d75fcda35b18e5": "wusdcUsdtCetusPool",
|
|
2407
|
-
"0xa7239a0c727c40ee3a139689b16b281acfd0682a06c23531b184a61721ece437": "usdyWusdcCetusPool",
|
|
2408
|
-
"0xee6f6392cbd9e1997f6e4cf71db0c1ae1611f1f5f7f23f90ad2c64b8f23cceab": "suiWusdcCetusPool",
|
|
2409
|
-
"0xbdf4f673b34274f36be284bca3f765083380fefb29141f971db289294bf679c6": "wethWusdcCetusPool",
|
|
2410
|
-
"0x676fc5cad79f51f6a7d03bfa3474ecd3c695d322380fc68e3d4f61819da3bf8a": "wbtcWusdcCetusPool",
|
|
2411
|
-
"0x045e4e3ccd383bedeb8fda54c39a7a1b1a6ed6a9f66aec4998984373558f96a0": "navxSuiCetusPool",
|
|
2412
|
-
};
|
|
2413
|
-
exports.poolIdQueryInvestorMap = {
|
|
2414
|
-
"0x594f13b8f287003fd48e4264e7056e274b84709ada31e3657f00eeedc1547e37": "alphaSuiInvestor",
|
|
2415
|
-
"0x30066d9879374276dc01177fbd239a9377b497bcd347c82811d75fcda35b18e5": "wusdcUsdtInvestor",
|
|
2416
|
-
"0xa7239a0c727c40ee3a139689b16b281acfd0682a06c23531b184a61721ece437": "usdyWusdcInvestor",
|
|
2417
|
-
"0xee6f6392cbd9e1997f6e4cf71db0c1ae1611f1f5f7f23f90ad2c64b8f23cceab": "suiWusdcInvestor",
|
|
2418
|
-
"0xbdf4f673b34274f36be284bca3f765083380fefb29141f971db289294bf679c6": "wethWusdcInvestor",
|
|
2419
|
-
"0x676fc5cad79f51f6a7d03bfa3474ecd3c695d322380fc68e3d4f61819da3bf8a": "wbtcWusdcInvestor",
|
|
2420
|
-
"0x045e4e3ccd383bedeb8fda54c39a7a1b1a6ed6a9f66aec4998984373558f96a0": "navxSuiInvestor",
|
|
2421
|
-
};
|
|
2422
|
-
async function getPoolExchangeRateMap() {
|
|
2423
|
-
const result = new Map();
|
|
2424
|
-
for (const poolName in exports.poolInfo) {
|
|
2425
|
-
const exchangeRate = await (0, getReceipts_js_1.getPoolExchangeRate)(poolName, false);
|
|
2426
|
-
result.set(poolName, exchangeRate.toString());
|
|
2427
|
-
}
|
|
2428
|
-
return result;
|
|
2429
|
-
}
|
|
2430
|
-
// Pagination needed for more than 50 pools
|
|
2431
|
-
// DEPRECATED
|
|
2432
|
-
async function getCetusSqrtPriceMap() {
|
|
2433
|
-
const sqrtPriceMap = await getLiquidityPoolSqrtPriceMap();
|
|
2434
|
-
return sqrtPriceMap;
|
|
2435
|
-
}
|
|
2436
|
-
// Pagination needed for more than 50 pools
|
|
2437
|
-
// DEPRECATED
|
|
2438
|
-
async function getCetusInvestorTicksMap() {
|
|
2439
|
-
const investorTicksMap = getLiquidityPoolInvestorTicksMap();
|
|
2440
|
-
return investorTicksMap;
|
|
2441
|
-
}
|
|
2442
|
-
async function getLiquidityPoolSqrtPriceMap() {
|
|
2443
|
-
const poolNameToSqrtPriceMap = new Map();
|
|
2444
|
-
const liquidityPools = Object.keys(exports.poolInfo)
|
|
2445
|
-
.filter((poolName) => ["CETUS", "BLUEFIN"].includes(exports.poolInfo[poolName].parentProtocolName))
|
|
2446
|
-
.map((poolName) => exports.parentPoolMap[poolName]);
|
|
2447
|
-
const suiClient = (0, client_js_1.getSuiClient)();
|
|
2448
|
-
const res = await suiClient.multiGetObjects({
|
|
2449
|
-
ids: liquidityPools,
|
|
2450
|
-
options: {
|
|
2451
|
-
showContent: true,
|
|
2452
|
-
},
|
|
2453
|
-
});
|
|
2454
|
-
for (const poolRawData of res) {
|
|
2455
|
-
const poolDetails = poolRawData.data; // BLUEFIN pool type same as cetus pool type
|
|
2456
|
-
const poolId = poolDetails.objectId;
|
|
2457
|
-
const poolName = Object.keys(exports.parentPoolMap).find((key) => exports.parentPoolMap[key] === poolId);
|
|
2458
|
-
const sqrtPrice = poolDetails.content.fields.current_sqrt_price;
|
|
2459
|
-
poolNameToSqrtPriceMap.set(poolName, sqrtPrice);
|
|
2460
|
-
}
|
|
2461
|
-
return poolNameToSqrtPriceMap;
|
|
2462
|
-
}
|
|
2463
|
-
async function getLiquidityPoolInvestorTicksMap() {
|
|
2464
|
-
const investorIdToTicksMap = {};
|
|
2465
|
-
const investorPoolMap = await getInvestorPoolMap();
|
|
2466
|
-
const investors = Array.from(investorPoolMap.keys());
|
|
2467
|
-
const suiClient = (0, client_js_1.getSuiClient)();
|
|
2468
|
-
const res = await suiClient.multiGetObjects({
|
|
2469
|
-
ids: investors,
|
|
2470
|
-
options: {
|
|
2471
|
-
showContent: true,
|
|
2472
|
-
},
|
|
2473
|
-
});
|
|
2474
|
-
for (const investorRawData of res) {
|
|
2475
|
-
const investorDetails = investorRawData.data; // BLUEFIN investor same as cetus investor
|
|
2476
|
-
const lower_tick = investorDetails.content.fields.lower_tick;
|
|
2477
|
-
const upper_tick = investorDetails.content.fields.upper_tick;
|
|
2478
|
-
const pool = investorPoolMap.get(investorDetails.objectId);
|
|
2479
|
-
investorIdToTicksMap[pool] = {
|
|
2480
|
-
lower: lower_tick,
|
|
2481
|
-
upper: upper_tick,
|
|
2482
|
-
};
|
|
2483
|
-
}
|
|
2484
|
-
return investorIdToTicksMap;
|
|
2485
|
-
}
|
|
2486
|
-
async function getTokenPriceMap() {
|
|
2487
|
-
const coinNameToPriceMap = new Map();
|
|
2488
|
-
const coins = Object.keys(coins_js_1.coinsList);
|
|
2489
|
-
const pricePairs = coins.map((coinName) => {
|
|
2490
|
-
return `${coinName}/USD`;
|
|
2491
|
-
});
|
|
2492
|
-
const prices = await (0, prices_js_1.getLatestTokenPricePairs)(pricePairs, false);
|
|
2493
|
-
Object.entries(prices).map(([pair, price]) => {
|
|
2494
|
-
const coin = pair.split("/")[0];
|
|
2495
|
-
if (price) {
|
|
2496
|
-
coinNameToPriceMap.set(coin, price);
|
|
2497
|
-
}
|
|
2498
|
-
});
|
|
2499
|
-
return coinNameToPriceMap;
|
|
2500
|
-
}
|
|
2501
|
-
exports.parentPoolMap = (() => {
|
|
2502
|
-
const result = {};
|
|
2503
|
-
Object.entries(exports.poolInfo).map(([poolName, info]) => {
|
|
2504
|
-
result[poolName] = info.parentPoolId;
|
|
2505
|
-
});
|
|
2506
|
-
return result;
|
|
2507
|
-
})();
|
|
2508
|
-
exports.defunctPoolsSet = (() => {
|
|
2509
|
-
const defunctPools = constants_js_1.conf[constants_js_1.CONF_ENV].DEFUNCT_POOLS;
|
|
2510
|
-
return new Set(defunctPools);
|
|
2511
|
-
})();
|
|
2512
|
-
exports.ignoredWalletsForDailyRevenue = [
|
|
2513
|
-
"0x86ea77da52e41820e21f525a497a3d3760c41410bb76da121547a5ff674dec50",
|
|
2514
|
-
"0xee5360c5fa13555cbf355cb5015b865d742040e42ff90c324e11f0c63e504545",
|
|
2515
|
-
"0x3ce65c03642dfea704a031b28fffc850a6e3def8ee126ccc3a209f5314986279",
|
|
2516
|
-
constants_js_1.conf[constants_js_1.CONF_ENV].TREASURY_ADDRESS,
|
|
2517
|
-
"0xb0615e458f9b5f6e563515fa5192d1311fbc7fd4f93025b327510fbf72bc5c20",
|
|
2518
|
-
"0x5a9fac4148605191b8e0de25a6671ba8008c344c1558bbaac73a947bd6c903b1",
|
|
2519
|
-
"0xa1df2894e75a2832d468ab97b9d6a8d3764939891bd520f900f0380f403367a4",
|
|
2520
|
-
"0x6b3a7df97bcad34c277106fef70444fa26e2bfbcd711c9c26f824869a66bb70a",
|
|
2521
|
-
"0xff9c536c8f78e28ad4c9f0d916ea98980c3c3be32b91461eaa8fbd6ac0b737aa",
|
|
2522
|
-
"0x6a498c57c18306e0af942442a5d20e5b2940939b4937ed52f4b17e3fa99972f5",
|
|
2523
|
-
"0xbdaee7c803e5db14b6571d78d05e152057b72bace936566b8403b760d5d228e8",
|
|
2524
|
-
"0x927363c465a04495ba8a88085ab12a3ee9902c3775601aeb8fa897b4ab564742",
|
|
2525
|
-
"0x9d11564cf203aac35fff7f11ef2540c008790d9398ccc408ee84cd801b0e5813",
|
|
2526
|
-
];
|
|
2527
|
-
//# sourceMappingURL=maps.js.map
|