Skip to content

Commit

Permalink
Merge pull request #138 from stabilitydao/dev
Browse files Browse the repository at this point in the history
0.24.2 collector
  • Loading branch information
a17 authored Jan 1, 2025
2 parents a10ece8 + dd407bc commit 06cf45c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 33 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.24.1",
"version": "0.24.2",
"description": "Stability Integration Library",
"main": "out/index.js",
"types": "out/index.d.ts",
Expand Down
55 changes: 24 additions & 31 deletions src/contests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,31 +158,6 @@ export const contests: { [contestId: string]: YieldContest } = {
winners: 50,
winnerReward: 130,
},
// 200 USDT
/*{
type: RewardType.ERC20,
winners: 20,
winnerReward: 10,
contract: {
chain: ChainName.POLYGON,
address: "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
},
},*/
/*// StrategyLogic
{
type: RewardType.NFT,
winners: 3,
winnerReward: 1,
contract: {
chain: ChainName.POLYGON,
address: "0xD16b60E39284190D9201f0eaD42c4674C310e905",
tokenIds: [
10, // Yearn
7, // QuickSwap Static Merkl Farm
4, // Ichi QuickSwap Merkl Farm
],
},
},*/
],
},
y5: {
Expand All @@ -204,24 +179,42 @@ export const contests: { [contestId: string]: YieldContest } = {
name: "Yield Contest #6",
start: 1735776000, // Thu, 02 Jan 2025 00:00:00 GMT
end: 1736985599, // Wed, 15 Jan 2025 23:59:59 GMT
minEarn: "TBA",
rewards: "TBA",
minEarn: 0.1,
rewards: [
{
type: RewardType.POINTS,
winners: 50,
winnerReward: 200,
},
],
},
y7: {
// 16 Jan 2025 - 29 Jan 2025
name: "Yield Contest #7",
start: 1736985600, // Thu, 16 Jan 2025 00:00:00 GMT
end: 1738195199, // Wed, 29 Jan 2025 23:59:59 GMT
minEarn: "TBA",
rewards: "TBA",
minEarn: 0.2,
rewards: [
{
type: RewardType.POINTS,
winners: 50,
winnerReward: 240,
},
],
},
y8: {
// 30 Jan 2025 - 12 Feb 2025
name: "Yield Contest #8",
start: 1738195200, // Thu, 30 Jan 2025 00:00:00 GMT
end: 1739404799, // Wed, 12 Feb 2025 23:59:59 GMT
minEarn: "TBA",
rewards: "TBA",
minEarn: 0.5,
rewards: [
{
type: RewardType.POINTS,
winners: 50,
winnerReward: 300,
},
],
},
y9: {
// 13 Feb 2025 - 26 Feb 2025
Expand Down
2 changes: 1 addition & 1 deletion src/strategies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ export const strategies: { [shortId in StrategyShortId]: Strategy } = {
[StrategyShortId.EF]: {
id: "Equalizer Farm",
shortId: StrategyShortId.EF,
state: StrategyState.AWAITING,
state: StrategyState.DEVELOPMENT,
contractGithubId: 199,
color: "#20c9e7",
bgColor: "#000000",
Expand Down

0 comments on commit 06cf45c

Please sign in to comment.