Skip to content

Commit

Permalink
feat(bridge-ui-v2): generate abi (#14116)
Browse files Browse the repository at this point in the history
  • Loading branch information
jscriptcoder committed Jul 6, 2023
1 parent fb7b745 commit c962aac
Show file tree
Hide file tree
Showing 19 changed files with 1,320 additions and 232 deletions.
4 changes: 4 additions & 0 deletions packages/bridge-ui-v2/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ node_modules
.env.*
!.env.example

# Generated files
/src/abi/*
CHANGELOG.md

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
Expand Down
4 changes: 4 additions & 0 deletions packages/bridge-ui-v2/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ node_modules
.env.*
!.env.example

# Generated files
/src/abi/*
CHANGELOG.md

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
Expand Down
3 changes: 0 additions & 3 deletions packages/bridge-ui-v2/.vscode/extensions.json

This file was deleted.

7 changes: 0 additions & 7 deletions packages/bridge-ui-v2/.vscode/settings.json

This file was deleted.

15 changes: 9 additions & 6 deletions packages/bridge-ui-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"test:unit:watch": "vitest",
"svelte:check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"svelte:check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"svelte:check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --ignore ./wagmi.config.ts",
"svelte:check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --ignore ./wagmi.config.ts --watch",
"format": "prettier --plugin-search-dir . --write .",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"lint:fix": "pnpm format && eslint . --fix"
"lint:fix": "pnpm format && eslint . --fix",
"generate:abi": "pnpm wagmi generate"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
Expand All @@ -24,6 +25,7 @@
"@types/debug": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@wagmi/cli": "^1.0.1",
"autoprefixer": "^10.4.14",
"daisyui": "3.1.7",
"eslint": "^8.28.0",
Expand All @@ -34,7 +36,7 @@
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-check": "^3.4.4",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
Expand All @@ -44,11 +46,12 @@
},
"type": "module",
"dependencies": {
"@wagmi/core": "^1.3.6",
"@web3modal/ethereum": "^2.6.2",
"@web3modal/html": "^2.6.2",
"abitype": "^0.8.2",
"debug": "^4.3.4",
"svelte-i18n": "^3.6.0",
"viem": "^1.2.9",
"wagmi": "^1.3.5"
"viem": "^1.2.9"
}
}

0 comments on commit c962aac

Please sign in to comment.