diff --git a/projects/treasury/void.js b/projects/treasury/void.js new file mode 100644 index 000000000000..57617017c391 --- /dev/null +++ b/projects/treasury/void.js @@ -0,0 +1,18 @@ +const { nullAddress, treasuryExports } = require("../helper/treasury"); + +const treasury = "0xf0a793024Ac47e421EB8c4673212dfCcE42f4a97"; +const tokenReflectionsAwardAddress = "0x78cCb45a43731cf989C740e9cb31f3d192Bd0f8b" + +module.exports = treasuryExports({ + fantom: { + owners: [treasury, tokenReflectionsAwardAddress], + ownTokens: [ + "0x80F2B8CdbC470c4DB4452Cc7e4a62F5277Db7061", // VOID + ], + tokens: [ + nullAddress, + "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", // DAI + "0xfC66Ac63D414d3CF3dcdDa9e60742F6E789205e3", // SpookySwap VOID-DAI LP + ], + }, +}); \ No newline at end of file diff --git a/projects/void/index.js b/projects/void/index.js new file mode 100644 index 000000000000..ec5904fe5f60 --- /dev/null +++ b/projects/void/index.js @@ -0,0 +1,10 @@ + +module.exports = { + fantom: { + tvl: () => 0, + staking: async (_, _1, _2, { api }) => { + const bal = await api.call({ abi: 'uint256:getTotalInvested', target: '0xe0d4ed2613f6c8737234d28d24b9c5d7f106bd28' }) + api.add('0x80F2B8CdbC470c4DB4452Cc7e4a62F5277Db7061', bal) + }, + } +} \ No newline at end of file