mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
Fix linting issue in package.json (#10086)
* Fix linting issue in package.json * rabbitx: staking
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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'),
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user