From 95b37d8575822e84ca72fcab53047edb2ba8c816 Mon Sep 17 00:00:00 2001 From: Santiago Trujillo Zuluaga Date: Thu, 1 Feb 2024 07:27:32 +0000 Subject: [PATCH] Interactive code editor 6693 (#6769) * edited info section * edited info section * edited info section * updated wrong description for wallets instead of web3.eth * update stackblitz links with web3js org --- docs/docs/guides/getting_started/getting_started.md | 6 +++++- docs/docs/guides/wallet/index.md | 7 ++++++- docs/docs/guides/web3_providers_guide/index.md | 8 +++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/docs/docs/guides/getting_started/getting_started.md b/docs/docs/guides/getting_started/getting_started.md index 8d08c907904..cad3029470d 100644 --- a/docs/docs/guides/getting_started/getting_started.md +++ b/docs/docs/guides/getting_started/getting_started.md @@ -246,4 +246,8 @@ const subscription = uniswapToken.events.Transfer(); //listen to the events subscription.on('data',console.log); // ↳ [{...},{...}, ...] live events will be printed in the console -``` \ No newline at end of file +``` + +## Live code editor + + \ No newline at end of file diff --git a/docs/docs/guides/wallet/index.md b/docs/docs/guides/wallet/index.md index 2b15208c475..5da33cdabaf 100644 --- a/docs/docs/guides/wallet/index.md +++ b/docs/docs/guides/wallet/index.md @@ -218,4 +218,9 @@ The following is a list of `Accounts` [methods](/libdocs/Wallet) in the `web3.et - [recover](/libdocs/Accounts#recover) - [recoverTransaction](/libdocs/Accounts#recovertransaction) - [sign](/libdocs/Accounts#sign) -- [signTransaction](/libdocs/Accounts#signtransaction) \ No newline at end of file +- [signTransaction](/libdocs/Accounts#signtransaction) + + +## Live code editor + + \ No newline at end of file diff --git a/docs/docs/guides/web3_providers_guide/index.md b/docs/docs/guides/web3_providers_guide/index.md index 9595fe9d07c..d405a80f065 100644 --- a/docs/docs/guides/web3_providers_guide/index.md +++ b/docs/docs/guides/web3_providers_guide/index.md @@ -372,4 +372,10 @@ provider.on('error', (error) => { // the `maxAttempts` is equal to the provided value by the user, or the default value `5`. } }); -``` \ No newline at end of file +``` + + + +## Live code editor + + \ No newline at end of file