Skip to content

Commit

Permalink
Add Sei
Browse files Browse the repository at this point in the history
  • Loading branch information
kexleyBeefy committed Aug 8, 2024
1 parent 0a1a3f1 commit 49d78ee
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
11 changes: 11 additions & 0 deletions config/sei.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"network": "sei",
"indexerHintPrune": 10800000,
"shareTokenMintAddress": "0x0000000000000000000000000000000000000000",
"burnAddress": "0x000000000000000000000000000000000000dead",
"bindConfigAddress": "0x91BB303E972995EbE5f593BCddBb6F5Ef49Dbcbd",
"bindConfigBlock": 92535412,
"bindConfigEvent": "ProxyCreated(address)",
"vaultInitializedEvent": "Initialized(uint8)",
"clockTickBlocks": 625
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"prepare:manta": "./bin/prepare.sh manta",
"prepare:mode": "./bin/prepare.sh mode",
"prepare:optimism": "./bin/prepare.sh optimism",
"prepare:kava": "./bin/prepare.sh kava"
"prepare:kava": "./bin/prepare.sh kava",
"prepare:sei": "./bin/prepare.sh sei"
},
"main": "./bin/index.js",
"bin": {
Expand Down
6 changes: 6 additions & 0 deletions src/vault-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@ export function _getChainVaults(network: string): Array<VaultConfig> {
vaults.push(new VaultConfig("velodrome-mode-weeth-eth", PLATFORM_SOLIDLY, "0x6Dd2abBBbbf494dd2454aEd67880B9533E2b3DA1"))
}

if (network === "sei" || network === "all") {
vaults.push(new VaultConfig("yei-usdt", PLATFORM_AAVE, "0xcb25214EC41Ea480068638897FcBd6F1206F5521"))
vaults.push(new VaultConfig("yei-usdc", PLATFORM_AAVE, "0x906e60166A4B185016e53597fA12FBB1424e47d7"))
vaults.push(new VaultConfig("yei-wsei", PLATFORM_AAVE, "0x9E6B9518978bb7caf2ad70778E9AEED9eDb3DB78"))
}

return vaults
}

Expand Down

0 comments on commit 49d78ee

Please sign in to comment.