Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nooxx committed Sep 17, 2024
1 parent 0ba5052 commit 33ebc4e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ on:
- main
paths:
- "src/**"
- "index.ts"
- ".github/workflows/sdk.yml"
pull_request:
branches:
- main
paths:
- "src/**"
- "index.ts"
- ".github/workflows/sdk.yml"

jobs:
Expand Down
1 change: 0 additions & 1 deletion index.ts

This file was deleted.

4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Convert Ethereum wei to ETH
import { formatEther, formatUnits, parseUnits } from "viem";
import { formatEther, formatUnits, parseUnits } from 'viem';

export const weiToEth = (wei: bigint): string => {
return formatEther(BigInt(wei));
Expand Down Expand Up @@ -89,4 +89,4 @@ export const utiaToTia = (utia: bigint): string => {
// Convert uusdc to USDC
export const uusdcToUsdc = (uusdc: bigint): string => {
return formatUnits(uusdc, 6);
};
};

0 comments on commit 33ebc4e

Please sign in to comment.