Skip to content

Commit 5ee7f44

Browse files
authored
fixed Sky token incorrect staking data and added spark token staking data (#15563)
1 parent f9523c5 commit 5ee7f44

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

projects/maker/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,6 @@ module.exports = {
9393
start: '2017-12-18', // 12/18/2017 @ 12:00am (UTC)
9494
ethereum: {
9595
tvl,
96-
staking: staking("0xc6132FAF04627c8d05d6E759FAbB331Ef2D8F8fD","0xc20059e0317DE91738d13af027DfC4a50781b066")
96+
staking: staking("0xCe01C90dE7FD1bcFa39e237FE6D8D9F569e8A6a3","0x56072C95FAA701256059aa122697B133aDEd9279")
9797
},
9898
};

projects/spark-fi/index.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
const { aaveExports, } = require('../helper/aave');
2+
const { staking } = require('../helper/staking')
3+
4+
const ethereumTvl = aaveExports('', '0x03cFa0C4622FF84E50E75062683F44c9587e6Cc1', undefined, ["0xFc21d6d146E6086B8359705C8b28512a983db0cb"], { v3: true });
5+
const ethereumStaking = staking("0xc6132FAF04627c8d05d6E759FAbB331Ef2D8F8fD", "0xc20059e0317DE91738d13af027DfC4a50781b066")
26

37
module.exports = {
4-
ethereum: aaveExports('', '0x03cFa0C4622FF84E50E75062683F44c9587e6Cc1', undefined, ["0xFc21d6d146E6086B8359705C8b28512a983db0cb"], { v3: true}),
5-
xdai: aaveExports('', '0xA98DaCB3fC964A6A0d2ce3B77294241585EAbA6d', undefined, ["0x2a002054A06546bB5a264D57A81347e23Af91D18"], { v3: true})
8+
ethereum: {
9+
...ethereumTvl,
10+
staking: ethereumStaking,
11+
},
12+
xdai: aaveExports('', '0xA98DaCB3fC964A6A0d2ce3B77294241585EAbA6d', undefined, ["0x2a002054A06546bB5a264D57A81347e23Af91D18"], { v3: true })
613
};

0 commit comments

Comments
 (0)