Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mmv08 committed May 15, 2024
1 parent adb13d0 commit 6bf3eea
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/4337-passkeys-singleton-signer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cd safe-modules
### Install dependencies

```bash
npm install
pnpm install
```

### Fill in the environment variables
Expand Down
2 changes: 1 addition & 1 deletion examples/4337-passkeys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cd safe-modules
### Install dependencies

```bash
npm install
pnpm install
```

### Fill in the environment variables
Expand Down
6 changes: 3 additions & 3 deletions modules/4337/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,16 @@ where `validUntil` and `validAfter` are two 48 bit timestamps for signature vali

## Usage

### Install Requirements With NPM:
### Install Requirements With PNPM:

```bash
npm install
pnpm install
```

### Run Hardhat Integration Tests:

```bash
npm test
pnpm test
```

### Run End-to-end Tests:
Expand Down
8 changes: 4 additions & 4 deletions modules/allowances/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ Using `delegates` and `tokens` it is possible to query all available allowances
## Running tests

```bash
yarn
yarn test
pnpm i
pnpm test
```

## Compiling contracts
```bash
yarn
yarn build
pnpm i
pnpm build
```
4 changes: 2 additions & 2 deletions modules/passkey/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ P256.Verifiers = P256.Verifiers.wrap(
### Install Requirements With NPM:

```bash
npm install
pnpm install
```

### Run Hardhat Tests:

```bash
npm test
pnpm test
pnpm run test:4337
```

Expand Down

0 comments on commit 6bf3eea

Please sign in to comment.