From dc7f41675cc60b53939045d91a8fab2d31376d7e Mon Sep 17 00:00:00 2001 From: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com> Date: Thu, 16 Oct 2025 18:01:40 +0200 Subject: [PATCH] update dragon staking --- projects/dragonswap-sei-v3/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/projects/dragonswap-sei-v3/index.js b/projects/dragonswap-sei-v3/index.js index c040c8196..8f3016577 100644 --- a/projects/dragonswap-sei-v3/index.js +++ b/projects/dragonswap-sei-v3/index.js @@ -3,11 +3,15 @@ const { get } = require('../helper/http') const { sumTokens2 } = require('../helper/unwrapLPs') const staker = '0x95C683194B45d2d27842c2C87A7D5FfffD8A5eD6' +const stakerV2 = '0xb71886c52D754CF2B1D3d866c7Cfe9eeC01418a7' const staking = async (api) => { const stakingToken = await api.call({ target: staker, abi: 'address:stakingToken' }) + const stakingTokenV2 = await api.call({ target: stakerV2, abi: 'address:dragon' }) const balance = await api.call({ target: staker, abi: 'uint256:totalDeposits' }) + const balanceV2 = await api.call({ target: stakerV2, abi: 'uint256:totalDeposits' }) api.add(stakingToken, balance) + api.add(stakingTokenV2, balanceV2) } async function tvl(api) {