Skip to content

Implemented token service, controller for it and Abis method to retur… #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .env.xmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# REQUIRED
#...
MULTICALL_ADDRESS = 0xcA11bde05977b3631167028862bE2a173976CA11
RPC_URL = https://eth.llamarpc.com

# OPTIONAL
PORT=3000
LOG_LEVEL='INFO'
PORT = 3000
LOG_LEVEL = INFO

11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,17 @@ This layers designed to maintain structure as it scales and organized by levels.
"logLevel": "info"
}
```
## Tokencheck
`/token`
```
{
"tokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"symbol": "USDT",
"decimals": "6",
"totalSupplyWei": "76922650752242969",
"totalSupplyTokens": "76922650752.242969"
}
```

## Swagger
`/swagger`
112 changes: 111 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/swagger": "^8.1.1",
"bignumber.js": "^4.0.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.7",
"ethers": "^6.13.5",
"nest-winston": "^1.10.2",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
Expand Down
Loading