Skip to content

Commit

Permalink
Merge pull request #40 from stabilitydao/dev
Browse files Browse the repository at this point in the history
0.17.1: strategy protocols fix
  • Loading branch information
a17 authored Oct 13, 2024
2 parents 9370d0c + 15e7e0f commit a0691f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stabilitydao/stability",
"version": "0.17.0",
"version": "0.17.1",
"description": "Stability Integration Library",
"main": "out/index.js",
"types": "out/index.d.ts",
Expand Down
10 changes: 8 additions & 2 deletions src/integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const integrations: { [org: string]: DeFiOrganization } = {
ChainName.X_LAYER,
ChainName.KAVA,
],
strategies: [StrategyShortId.QSMF, StrategyShortId.DQMF, StrategyShortId.GQMF],
strategies: [StrategyShortId.QSMF, StrategyShortId.DQMF, StrategyShortId.GQMF, StrategyShortId.IQMF,],
adapters: ['AlgebraAdapter',],
},
},
Expand All @@ -239,7 +239,13 @@ export const integrations: { [org: string]: DeFiOrganization } = {
name: 'Retro',
category: DefiCategory.AMM,
chains: [ChainName.POLYGON,],
strategies: [StrategyShortId.IRMF, StrategyShortId.GRMF],
strategies: [
StrategyShortId.IRMF,
StrategyShortId.GRMF,
StrategyShortId.RSBMF,
StrategyShortId.DRBMF,
StrategyShortId.IRBMF,
],
adapters: ['UniswapV3Adapter',],
},
},
Expand Down

0 comments on commit a0691f1

Please sign in to comment.