Added smxswap

This commit is contained in:
g1nt0ki
2022-06-01 12:37:01 +02:00
parent f782b6f55d
commit d2bef912f7
2 changed files with 14 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ async function getData() {
async function tvl() {
const { btc_in_moc, btc_in_roc } = await getData()
return {
'bitcoin': btc_in_moc + btc_in_roc
'rootstock': btc_in_moc + btc_in_roc
}
}

13
projects/smxswap/index.js Normal file
View File

@@ -0,0 +1,13 @@
const { getUniTVL } = require('../helper/unknownTokens')
module.exports={
cronos: {
tvl: getUniTVL({
chain: 'cronos',
factory: '0x1Ed37E4323E429C3fBc28461c14A181CD20FC4E8',
coreAssets: [
'0x5c7f8a570d578ed84e63fdfa7b1ee72deae1ae23', // wcro
],
}),
}
}