Skip to content

Commit

Permalink
symbiosis adds Gravity chain support (#11823)
Browse files Browse the repository at this point in the history
  • Loading branch information
allush authored Oct 5, 2024
1 parent 5837906 commit f78abb2
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions projects/symbiosis-finance/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ const TOKENS = {
ethereum: {
pufETH: "0xD9A442856C234a39a81a089C06451EBAa4306a72",
LADYS: "0x12970E6868f88f6557B76120662c1B3E50A646bf",
XDAO: "0x71eebA415A523F5C952Cc2f06361D5443545Ad28"
XDAO: "0x71eebA415A523F5C952Cc2f06361D5443545Ad28",
G: "0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649"
},
bsc: {
XDAO: "0x71eebA415A523F5C952Cc2f06361D5443545Ad28"
XDAO: "0x71eebA415A523F5C952Cc2f06361D5443545Ad28",
G: "0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649"
},
polygon: {
XDAO: "0x71eebA415A523F5C952Cc2f06361D5443545Ad28"
Expand All @@ -34,6 +36,10 @@ const TOKENS = {
fraxtal: {
WETH: ADDRESSES.fraxtal.WETH,
FRAX: ADDRESSES.fraxtal.FRAX
},
gravity: {
USDC_e: ADDRESSES.gravity.USDC_e,
wG: ADDRESSES.gravity.wG
}
}

Expand All @@ -50,6 +56,7 @@ module.exports = {
TOKENS.ethereum.XDAO,
TOKENS.ethereum.LADYS,
TOKENS.ethereum.pufETH,
TOKENS.ethereum.G,
],
holders: [
'0xb80fDAA74dDA763a8A158ba85798d373A5E84d84', // portal v1
Expand All @@ -65,6 +72,7 @@ module.exports = {
ADDRESSES.bsc.ETH,
ADDRESSES.bsc.BTCB,
TOKENS.bsc.XDAO,
TOKENS.bsc.G,
],
holders: [
'0xD7F9989bE0d15319d13d6FA5d468211C89F0b147', // portal v1
Expand Down Expand Up @@ -410,5 +418,15 @@ module.exports = {
'0x292fC50e4eB66C3f6514b9E402dBc25961824D62', // portal v2
]
},
{
name: 'gravity',
tokens: [
TOKENS.gravity.USDC_e,
TOKENS.gravity.wG,
],
holders: [
'0x292fC50e4eB66C3f6514b9E402dBc25961824D62', // portal v2
]
},
]
}

0 comments on commit f78abb2

Please sign in to comment.