Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
davidespataro committed Aug 12, 2024
1 parent 11a702a commit 3d79603
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/chintai/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ async function toBalances(symbol, value) {
await sdk.api.abi.call({
target: address,
abi: "erc20:decimals",
chain: "ethereum"
chain: "ethereum",
})
).output;

return {
[address]: scaleValue(value, 10**decimals),
[address]: scaleValue(value, 10 ** decimals),
};
}

Expand Down

0 comments on commit 3d79603

Please sign in to comment.