forked from snapshot-labs/snapshot-strategies
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add add sunrisegaming-univ2-lp strategy (snapshot-labs#65)
- Loading branch information
1 parent
29548f3
commit 01022a6
Showing
4 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Sunrise Gaming Uniswap LP | ||
|
||
This strategy returns balances of the underlying token in Sunrise LP pools | ||
|
||
Here is an example of parameters: | ||
|
||
```json | ||
{ | ||
"symbol": "SUNC", | ||
"decimals": 18, | ||
"tokenAddress": "0x692accdd8b86692427e0aa4752ae917df01cc56f", | ||
"lpTokenAddress": "0xaf5a7469Cf2571b973AEee9AE2f8aad00e1337d2", | ||
"stakingAddress": "0x7dbE40ac6bB41A5FE4Fa2C74f31d7DEFBC793B58", | ||
"poolIndex": 1 | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[ | ||
{ | ||
"name": "Staked Univ2 LP for token", | ||
"strategy": { | ||
"name": "sunrisegaming-univ2-lp", | ||
"params": { | ||
"symbol": "SUNC", | ||
"decimals": 18, | ||
"tokenAddress": "0x692accdd8b86692427e0aa4752ae917df01cc56f", | ||
"lpTokenAddress": "0xaf5a7469Cf2571b973AEee9AE2f8aad00e1337d2", | ||
"stakingAddress": "0x7dbE40ac6bB41A5FE4Fa2C74f31d7DEFBC793B58", | ||
"poolIndex": 1 | ||
} | ||
}, | ||
"network": "1", | ||
"addresses": [ | ||
"0x7dbe40ac6bb41a5fe4fa2c74f31d7defbc793b58", | ||
"0x26533020822f9b28c801e6beb772ef74dfe0c81e", | ||
"0x75bd5989ce8f962a1864d8a0af8bfb5130805722", | ||
"0x7505afcd576bb995577a944bccdb5c54c7d5ec45", | ||
"0x930af93baa5f2c2f71bafd5a2fd7b1d47a61c352", | ||
"0xbc444050d78107872c0262452fff004da9208258", | ||
"0x26533020822f9b28c801e6beb772ef74dfe0c81e" | ||
], | ||
"snapshot": 13227497 | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
import { multicall } from '../../utils'; | ||
import { formatUnits } from '@ethersproject/units'; | ||
import { BigNumber } from '@ethersproject/bignumber'; | ||
|
||
export const author = 'sunrisedao'; | ||
export const version = '0.1.0'; | ||
|
||
const erc20Abi = [ | ||
'function totalSupply() view returns (uint256)', | ||
'function balanceOf(address account) view returns (uint256)' | ||
]; | ||
|
||
const masterChefAbi = [ | ||
'function userInfo(uint256, address) view returns (uint256 amount, uint256 rewardDebt)' | ||
]; | ||
|
||
function bn(num: any): BigNumber { | ||
return BigNumber.from(num.toString()); | ||
} | ||
|
||
export async function strategy( | ||
_space, | ||
network, | ||
provider, | ||
addresses, | ||
options, | ||
snapshot | ||
) { | ||
const blockTag = typeof snapshot === 'number' ? snapshot : 'latest'; | ||
|
||
// Get LP balances | ||
let res = await multicall( | ||
network, | ||
provider, | ||
erc20Abi, | ||
[ | ||
[options.lpTokenAddress, 'totalSupply', []], | ||
[options.tokenAddress, 'balanceOf', [options.lpTokenAddress]], | ||
...addresses.map((address: any) => [ | ||
options.lpTokenAddress, | ||
'balanceOf', | ||
[address] | ||
]) | ||
], | ||
{ blockTag } | ||
); | ||
|
||
const lpTokenTotalSupply = bn(res[0]); // decimal: 18 | ||
const totalTokensInPool = bn(res[1]); // decimal: options.decimal | ||
|
||
res = res.slice(2); | ||
|
||
// Get staked LP in staking constract | ||
let stakedRes = await multicall( | ||
network, | ||
provider, | ||
masterChefAbi, | ||
[ | ||
...addresses.map((address: any) => [ | ||
options.stakingAddress, | ||
'userInfo', | ||
[options.poolIndex, address] | ||
]) | ||
], | ||
{ blockTag } | ||
); | ||
|
||
// How much tokens user has from LP tokens | ||
const usersTokensFromLp = res.slice(0, addresses.length).map((amount, i) => { | ||
const totalLp = bn(amount).add(bn(stakedRes[i].amount)); // decimal: 18 | ||
|
||
// (LP + StakedLP) x token.balanceOf(LPToken) / LPToken.totalSupply() | ||
return totalLp.mul(totalTokensInPool).div(lpTokenTotalSupply); // decimal: options.decimal | ||
}); | ||
|
||
return Object.fromEntries( | ||
usersTokensFromLp.map((sum, i) => { | ||
const parsedSum = parseFloat(formatUnits(sum, options.decimal)); | ||
return [addresses[i], parsedSum]; | ||
}) | ||
); | ||
} |