Skip to content
Closed
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
118 changes: 118 additions & 0 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "pnpm install"
}
],

// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"build": {
"name": "build",
"command": "pnpm build",
"runAtStart": false
},
"watch": {
"name": "watch",
"command": "pnpm watch",
"runAtStart": false
},
"clean": {
"name": "clean",
"command": "pnpm clean",
"runAtStart": false
},
"changeset": {
"name": "changeset",
"command": "pnpm changeset",
"runAtStart": false
},
"version-packages": {
"name": "version-packages",
"command": "pnpm version-packages",
"runAtStart": false
},
"release": {
"name": "release",
"command": "pnpm release",
"runAtStart": false
},
"snapshot": {
"name": "snapshot",
"command": "pnpm snapshot",
"runAtStart": false
},
"update-version": {
"name": "update-version",
"command": "pnpm update-version",
"runAtStart": false
},
"test": {
"name": "test",
"command": "pnpm test",
"runAtStart": false
},
"test:parallel": {
"name": "test:parallel",
"command": "pnpm test:parallel",
"runAtStart": false
},
"lint": {
"name": "lint",
"command": "pnpm lint",
"runAtStart": false
},
"lint:fix": {
"name": "lint:fix",
"command": "pnpm lint:fix",
"runAtStart": false
},
"lint:tests": {
"name": "lint:tests",
"command": "pnpm lint:tests",
"runAtStart": false
},
"lint:tests:fix": {
"name": "lint:tests:fix",
"command": "pnpm lint:tests:fix",
"runAtStart": false
},
"format": {
"name": "format",
"command": "pnpm format",
"runAtStart": false
},
"audit:fix": {
"name": "audit:fix",
"command": "pnpm audit:fix",
"runAtStart": false
},
"typecheck": {
"name": "typecheck",
"command": "pnpm typecheck",
"runAtStart": false
},
"dev": {
"name": "dev",
"command": "pnpm dev",
"runAtStart": true
},
"postinstall": {
"name": "postinstall",
"command": "pnpm postinstall",
"runAtStart": false
},
"coverage": {
"name": "coverage",
"command": "pnpm coverage",
"runAtStart": false
},
"prepare": {
"name": "prepare",
"command": "pnpm prepare",
"runAtStart": false
}
}
}
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
wagmi-project-two.vercel.app
21 changes: 21 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Security Policy

## Supported Versions

Use this section to tell people about which versions of your project are
currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 5.1.x | :white_check_mark: |
| 5.0.x | :x: |
| 4.0.x | :white_check_mark: |
| < 4.0 | :x: |

## Reporting a Vulnerability

Use this section to tell people how to report a vulnerability.

Tell them where to go, how often they can expect to get an update on a
reported vulnerability, what to expect if the vulnerability is accepted or
declined, etc.
21 changes: 21 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript

trigger:
- master

pool:
vmImage: ubuntu-latest

steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'

- script: |
npm install
npm run build
displayName: 'npm install and build'
21 changes: 18 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,17 @@
"eslint-plugin-prettier": "^5.0.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"hardhat": "^2.20.1",
"hardhat": "^2.22.7",
"husky": "^8.0.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"puppeteer": "^21.6.0",
"puppeteer": "^21.11.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsx": "^4.6.2",
"typescript": "~5.3.3",
"vitest": "^2.0.5",
"wait-on": "^7.2.0"
},
"resolutions": {},
Expand All @@ -100,7 +101,21 @@
"node-forge@<1.0.0": ">=1.0.0",
"node-forge@<1.3.0": ">=1.3.0",
"got@<11.8.5": ">=11.8.5",
"glob-parent@<5.1.2": ">=5.1.2"
"glob-parent@<5.1.2": ">=5.1.2",
"semver@<5.7.2": ">=5.7.2",
"webpack-dev-middleware@<=5.3.3": ">=5.3.4",
"tar@<6.2.1": ">=6.2.1",
"tough-cookie@<4.1.3": ">=4.1.3",
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"ws@>=7.0.0 <7.5.10": ">=7.5.10",
"ws@>=2.1.0 <5.2.4": ">=5.2.4"
}
},
"dependencies": {
"@tanstack/react-query": "^5.51.21",
"geth": "^0.4.0",
"viem": "2.x",
"wagmi": "0.0.0-canary-20240806164344"
}
}
Loading
Loading