Skip to content

Commit

Permalink
feat: Add additional WBTC liquidity address to garden project (#12638)
Browse files Browse the repository at this point in the history
  • Loading branch information
sainathr19 authored Dec 10, 2024
1 parent 9d69b4c commit 8aa54f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/garden/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const bitcoinAddressBook = require('../helper/bitcoin-book/index.js')

const SEED_TOKEN_ADDRESS = "0x86f65121804D2Cdbef79F9f072D4e0c2eEbABC08"; // SEED TOKEN (Garden's Governance Token) Address
const STAKING_CONTRACT_ADDRESS = "0xe2239938Ce088148b3Ab398b2b77Eedfcd9d1AfC";
const WBTC_LIQUIDITY_ADDRESS = "0x9DD9C2D208B07Bf9A4eF9CA311F36d7185749635";
const WBTC_LIQUIDITY_ADDRESSES = ["0x9DD9C2D208B07Bf9A4eF9CA311F36d7185749635","0xEF440AC3D77F906F9F0E1C15B35BCF300B4C427C"];

module.exports = {
bitcoin: {
Expand All @@ -15,13 +15,13 @@ module.exports = {
},
ethereum: {
tvl: sumTokensExport({
owners: [WBTC_LIQUIDITY_ADDRESS],
owners: WBTC_LIQUIDITY_ADDRESSES,
tokens: [ADDRESSES.ethereum.WBTC],
}),
},
arbitrum: {
tvl: sumTokensExport({
owners: [WBTC_LIQUIDITY_ADDRESS],
owners: WBTC_LIQUIDITY_ADDRESSES,
tokens: [ADDRESSES.arbitrum.WBTC],
}),
staking: sumTokensExport({
Expand Down

0 comments on commit 8aa54f4

Please sign in to comment.