Skip to content

Commit

Permalink
Replace ethers by viem
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Nov 23, 2023
1 parent f9a4403 commit ad7d97d
Show file tree
Hide file tree
Showing 3 changed files with 183 additions and 72 deletions.
249 changes: 180 additions & 69 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
"amqplib": "^0.10.3",
"axios": "^1.4.0",
"cache-manager": "^5.2.1",
"ethers": "^6.7.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.3",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"typeorm": "^0.3.17"
"typeorm": "^0.3.17",
"viem": "^1.19.7"
},
"devDependencies": {
"@nestjs/cli": "^10.1.12",
Expand Down
2 changes: 1 addition & 1 deletion src/routes/events/events.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { ApiTags } from '@nestjs/swagger';
import { Observable } from 'rxjs';
import { EventsService } from './events.service';
import { getAddress, isAddress } from 'ethers';
import { getAddress, isAddress } from 'viem';
import { BasicAuthGuard } from '../../auth/basic-auth.guard';

@ApiTags('events')
Expand Down

0 comments on commit ad7d97d

Please sign in to comment.