Skip to content

Commit

Permalink
chore: use viem and wagmi latest
Browse files Browse the repository at this point in the history
  • Loading branch information
gaboesquivel committed Feb 8, 2024
1 parent cedb5b0 commit 30359b1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/faucet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"viem": "2.x",
"wagmi": "2.x"
"wagmi": "latest"
},
"devDependencies": {
"@types/node": "^20.11.16",
Expand Down
2 changes: 1 addition & 1 deletion apps/indexer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev": "env-cmd nodemon --watch 'src/**' --ext 'ts' --exec 'ts-node src/index.ts' --trace-warnings",
"gen": "prisma db pull && prisma generate",
"start": "env-cmd node ./dist",
"build": "rimraf dist && tsc -b",
"build": "bun run gen && rimraf dist && tsc -b",
"lint": "eslint --ignore-path .gitignore \"**/*.+(js|ts|tsx)\" --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"sentry:sourcemaps": "npx sentry-cli sourcemaps inject --org blockmatic --project bitcash-indexer ./dist && sentry-cli sourcemaps upload --org blockmatic --project bitcash-indexer ./dist"
Expand Down
6 changes: 3 additions & 3 deletions apps/indexer/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ generator client {
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("DIRECT_URL")
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("DIRECT_URL")
}

/// This model contains row level security and requires additional setup for migrations. Visit https://pris.ly/d/row-level-security for more info.
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/smartsale-contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"author": "gaboesquivel.com",
"license": "ISC",
"dependencies": {
"viem": "^1.20.3"
"viem": "latest"
},
"devDependencies": {
"tsconfig": "workspace:*",
Expand Down

0 comments on commit 30359b1

Please sign in to comment.