Skip to content

Commit

Permalink
Fix linting issue in package.json (DefiLlama#10086)
Browse files Browse the repository at this point in the history
* Fix linting issue in package.json

* rabbitx: staking
  • Loading branch information
g1nt0ki authored May 3, 2024
1 parent 1912874 commit 3d8e80f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"test": "echo \"Error: no test specified\" && exit 1",
"weeklyChanges": "git pull && git diff $(git log -1 --before=@{7.days.ago} --format=%H) --stat | grep -E \"projects/\" | cut -d / -f 2 | cut -d \" \" -f 1 | uniq | wc -l",
"dev": "babel-watch curve.js",
"lint": "eslint .",
"eslint:github-action": "eslint .",
"lint": "eslint -c .eslintrc.js .",
"eslint:github-action": "eslint -c .eslintrc.js .",
"test-interactive": "node utils/testInteractive",
"tvl": "cd utils;npm i; cd ..; node utils/testInteractive",
"treasury": "cd utils;npm i; cd ..; node utils/testInteractive treasury",
Expand Down
9 changes: 7 additions & 2 deletions projects/rabbitx/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { sumTokensExport } = require("../helper/unwrapLPs");
const { sumTokensExport } = require("../helper/unwrapLPs")
const { staking } = require('../helper/staking')

module.exports = {
ethereum: {
tvl: sumTokensExport({ owners: ['0xFc7f884DE22a59c0009C91733196b012Aecb8F41', '0x3b8F6D6970a24A58b52374C539297ae02A3c4Ae4', '0x7fAb440A0251dA67B316d2c0431E3Ccf4520Cd42',], tokens: [ADDRESSES.ethereum.USDT]})
tvl: sumTokensExport({ owners: ['0xFc7f884DE22a59c0009C91733196b012Aecb8F41', '0x3b8F6D6970a24A58b52374C539297ae02A3c4Ae4', '0x7fAb440A0251dA67B316d2c0431E3Ccf4520Cd42',], tokens: [ADDRESSES.ethereum.USDT]}),
staking: staking('0x0c378FB17E87B180256a87e3f671cd83Bf3236DB', '0x3Ba925fdeAe6B46d0BB4d424D829982Cb2F7309e'),
},
blast: {
staking: staking('0x67dBA61709D78806395acDBa3EF9Df686aF5dc24', '0x236bb48fcF61ce996B2C8C196a9258c176100c7d'),
}
}

0 comments on commit 3d8e80f

Please sign in to comment.