Skip to content

Commit aa2d653

Browse files
authored
Merge pull request #339 from stabilitydao/upd
πŸ“œ ALMF; πŸ€– builder conveyor labels changed
2 parents 782b9cb + cb6701d commit aa2d653

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ yarn prettier . --write
5656
- πŸͺ™ Assets
5757
- ⛓️ Chains
5858
- 🏦 Lending
59+
- 🧺 Products
5960
- 🌐 DeFi, integrations
6061
- ♻️ Sync
6162
- πŸŽ‡ Content generator

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stabilitydao/stability",
3-
"version": "0.47.2",
3+
"version": "0.47.3",
44
"description": "Stability Integration Library",
55
"main": "out/index.js",
66
"types": "out/index.d.ts",

β€Žsrc/builder.tsβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export const conveyors: IConveyor[] = [
163163
symbol: "πŸ“œ",
164164
type: "Task",
165165
label: {
166-
name: "builder:STRATEGY",
166+
name: "conveyor:STRATEGY",
167167
description:
168168
"Developing and deploying a new strategy on the **Strategies** conveyor belt.",
169169
color: "#00d0ff",
@@ -251,7 +251,7 @@ export const conveyors: IConveyor[] = [
251251
symbol: "⛓️",
252252
type: "Task",
253253
label: {
254-
name: "builder:CHAIN",
254+
name: "conveyor:CHAIN",
255255
description: "Chain integration by Chains conveyor",
256256
color: "#30da71",
257257
},

β€Žsrc/strategies.tsβ€Ž

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export const enum StrategyShortId {
7474
SiMerklF = "SiMerklF",
7575
SiALMF = "SiALMF",
7676
C = "C",
77+
ALMF = "ALMF",
7778
}
7879

7980
export enum StrategyState {
@@ -776,6 +777,26 @@ export const strategies: { [shortId in StrategyShortId]: Strategy } = {
776777
bgColor: "#000000",
777778
description: "Lend asset on Compound V2",
778779
},
780+
[StrategyShortId.ALMF]: {
781+
id: "Aave Leverage Merkl Farm",
782+
shortId: StrategyShortId.ALMF,
783+
state: StrategyState.DEVELOPMENT,
784+
contractGithubId: 431,
785+
color: "#416dff",
786+
bgColor: "#000d1f",
787+
baseStrategies: [
788+
BaseStrategy.LEVERAGED_LENDING,
789+
BaseStrategy.FARMING,
790+
BaseStrategy.MERKL,
791+
],
792+
protocols: ["aave:aaveV3", "angle:merkl"],
793+
description: "Leverage asset on Aave V3",
794+
farmStruct: {
795+
addresses: ["Collateral aToken", "Borrowed aToken", "FlashLoan Pool"],
796+
nums: ["Min target leverage", "Max target leverage"],
797+
ticks: [],
798+
},
799+
},
779800
};
780801

781802
export const getMerklStrategies = (): string[] => {

0 commit comments

Comments
Β (0)