From 6bf3eea4cd402178c0ffdcc98aaa377d462e0fbd Mon Sep 17 00:00:00 2001 From: Mikhail <16622558+mmv08@users.noreply.github.com> Date: Wed, 15 May 2024 15:09:20 +0200 Subject: [PATCH] Fix readme --- examples/4337-passkeys-singleton-signer/README.md | 2 +- examples/4337-passkeys/README.md | 2 +- modules/4337/README.md | 6 +++--- modules/allowances/README.md | 8 ++++---- modules/passkey/README.md | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/4337-passkeys-singleton-signer/README.md b/examples/4337-passkeys-singleton-signer/README.md index a2ad03c0f..1b941d0e9 100644 --- a/examples/4337-passkeys-singleton-signer/README.md +++ b/examples/4337-passkeys-singleton-signer/README.md @@ -14,7 +14,7 @@ cd safe-modules ### Install dependencies ```bash -npm install +pnpm install ``` ### Fill in the environment variables diff --git a/examples/4337-passkeys/README.md b/examples/4337-passkeys/README.md index 6152f9e9b..0d08ca49a 100644 --- a/examples/4337-passkeys/README.md +++ b/examples/4337-passkeys/README.md @@ -14,7 +14,7 @@ cd safe-modules ### Install dependencies ```bash -npm install +pnpm install ``` ### Fill in the environment variables diff --git a/modules/4337/README.md b/modules/4337/README.md index 93eb999e7..2d985fd39 100644 --- a/modules/4337/README.md +++ b/modules/4337/README.md @@ -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: diff --git a/modules/allowances/README.md b/modules/allowances/README.md index 9a3583960..74f7342a4 100644 --- a/modules/allowances/README.md +++ b/modules/allowances/README.md @@ -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 ``` \ No newline at end of file diff --git a/modules/passkey/README.md b/modules/passkey/README.md index 78fdae7c1..cb0a0255a 100644 --- a/modules/passkey/README.md +++ b/modules/passkey/README.md @@ -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 ```