Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
davidespataro committed Aug 12, 2024
1 parent 3d79603 commit 06dafdf
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions projects/chintai/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ const sdk = require("@defillama/sdk");

const ADDRESSES = require("../helper/coreAssets.json");

const DECIMALS = {
USDC: 6,
WBTC: 8,
};

const config = {
ethereum: {
addresses: {
Expand Down Expand Up @@ -118,7 +113,6 @@ async function chintaiTvl() {

let balances = {};
for (const [symbol, supply] of Object.entries(stats.coinsBalances)) {
const decimals = DECIMALS[symbol] ?? 18;
let balance = await toBalances(symbol, supply);
if (balance) {
Object.assign(balances, balance);
Expand Down

0 comments on commit 06dafdf

Please sign in to comment.