Skip to content
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

fix: added dns to scripts and addressed pnpm version issue #68

Open
wants to merge 1 commit 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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The `.contract` file combines the Wasm and metadata into one file and can be use

## Running front end dApp examples

1. Install [nodejs](https://nodejs.org/en/) and then install [pnpm](https://pnpm.io/) `npm install -g pnpm`
1. Install [nodejs](https://nodejs.org/en/) and then install [pnpm](https://pnpm.io/) `npm install -g pnpm@8.4.0`
2. Install dependencies `pnpm i`
3. Run each example with `pnpm <contract-example-name>`. e.g. `pnpm flipper`
4. Visit [http://localhost:5173](http://localhost:5173) in your browser.
Expand All @@ -42,6 +42,7 @@ The `.contract` file combines the Wasm and metadata into one file and can be use
* `pnpm basic-contract-caller`
* `pnpm contract-terminate`
* `pnpm contract-transfer`
* `pnpm dns`
* `pnpm erc20`
* `pnpm erc721`
* `pnpm flipper`
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"basic-contract-caller": "pnpm --filter basic-contract-caller dev",
"contract-terminate": "pnpm --filter contract-terminate dev",
"contract-transfer": "pnpm --filter contract-transfer dev",
"dns": "pnpm --filter dns-frontend-example dev",
"erc20": "pnpm --filter erc20 dev",
"erc721": "pnpm --filter erc721 dev",
"incrementer": "pnpm --filter incrementer dev"
Expand Down
1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ packages:
- "ui"
- "basic-contract-caller/frontend"
- "contract-transfer/frontend"
- "dns/frontend"
- "contract-terminate/frontend"
- "erc20/frontend"
- "erc721/frontend"
Expand Down