From 7818cf3f9e3b6be5e43f9dc70f20245f9c873bfa Mon Sep 17 00:00:00 2001 From: Tom Haile Date: Fri, 9 May 2025 10:08:32 -0700 Subject: [PATCH 1/2] Update index.md flow dev wallet doesn't tell the user they need to start the dev wallet service. --- docs/tools/flow-dev-wallet/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/tools/flow-dev-wallet/index.md b/docs/tools/flow-dev-wallet/index.md index 29bc30a830..cb4155fada 100644 --- a/docs/tools/flow-dev-wallet/index.md +++ b/docs/tools/flow-dev-wallet/index.md @@ -50,6 +50,12 @@ Start the Emulator and deploy the contracts by running the following command fro flow emulator start flow project deploy --network emulator ``` +## Start the Dev Wallet + +In a separate terminal session, start the dev wallet service, this service is referenced in the fcl configuration as `discovery.wallet` +```sh +flow dev-wallet +``` ## Configuring Your JavaScript Application From ea3cef7c1534183a5c9d4e4db9e3c357f91e1901 Mon Sep 17 00:00:00 2001 From: Tom Haile Date: Fri, 9 May 2025 10:16:03 -0700 Subject: [PATCH 2/2] Update index.md Update title text to be consistent with other sections. --- docs/tools/flow-dev-wallet/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tools/flow-dev-wallet/index.md b/docs/tools/flow-dev-wallet/index.md index cb4155fada..2d7342747b 100644 --- a/docs/tools/flow-dev-wallet/index.md +++ b/docs/tools/flow-dev-wallet/index.md @@ -50,14 +50,14 @@ Start the Emulator and deploy the contracts by running the following command fro flow emulator start flow project deploy --network emulator ``` -## Start the Dev Wallet +### Start the Dev Wallet -In a separate terminal session, start the dev wallet service, this service is referenced in the fcl configuration as `discovery.wallet` +In a separate terminal session, start the dev wallet service. ```sh flow dev-wallet ``` -## Configuring Your JavaScript Application +### Configuring Your JavaScript Application The Flow Dev Wallet is designed to be used with [`@onflow/fcl`](https://github.com/onflow/fcl-js) version `1.0.0` or higher. The FCL package can be installed with: `npm install @onflow/fcl` or `yarn add @onflow/fcl`.