From 7ed57701bb998bb9c3b59d5c96c0bc7715168e82 Mon Sep 17 00:00:00 2001 From: TomTom Date: Wed, 23 Apr 2025 11:07:11 +0300 Subject: [PATCH 1/7] improve guides in overview --- overview.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/overview.mdx b/overview.mdx index 554baa2e0..c69c9e79a 100644 --- a/overview.mdx +++ b/overview.mdx @@ -99,10 +99,6 @@ Step-by-step guides and ready-to-use code examples designed to help you quickly **Click on the "Guides" section in the sidebar to explore more.** - - Learn how to create a Telegram Mini App with Reown. - - Step-by-step guide to building on Ethereum Virtual Machine (EVM). @@ -122,6 +118,10 @@ Step-by-step guides and ready-to-use code examples designed to help you quickly Learn how to use Reown AppKit to sponsor gas fees for your users. + + + Learn how to integrate Smart Sessions with React. + From 1ac91186615fb620957a3e0f3f51ee888b807d2f Mon Sep 17 00:00:00 2001 From: TomTom Date: Wed, 23 Apr 2025 11:07:32 +0300 Subject: [PATCH 2/7] installation to quickstart --- appkit/javascript/core/installation.mdx | 2 +- appkit/next/core/installation.mdx | 2 +- appkit/react/core/installation.mdx | 2 +- appkit/vue/core/installation.mdx | 2 +- walletkit/web/installation.mdx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/appkit/javascript/core/installation.mdx b/appkit/javascript/core/installation.mdx index e5506f39f..7eb1e33fb 100644 --- a/appkit/javascript/core/installation.mdx +++ b/appkit/javascript/core/installation.mdx @@ -1,5 +1,5 @@ --- -title: Installation +title: Quickstart --- import CloudBanner from "/snippets/cloud-banner.mdx"; diff --git a/appkit/next/core/installation.mdx b/appkit/next/core/installation.mdx index f55a4ea51..754f4c41d 100644 --- a/appkit/next/core/installation.mdx +++ b/appkit/next/core/installation.mdx @@ -1,5 +1,5 @@ --- -title: Installation +title: Quickstart --- import CloudBanner from "/snippets/cloud-banner.mdx"; diff --git a/appkit/react/core/installation.mdx b/appkit/react/core/installation.mdx index 64cbfe92f..29cd9c771 100644 --- a/appkit/react/core/installation.mdx +++ b/appkit/react/core/installation.mdx @@ -1,5 +1,5 @@ --- -title: Installation +title: Quickstart --- import CloudBanner from "/snippets/cloud-banner.mdx"; diff --git a/appkit/vue/core/installation.mdx b/appkit/vue/core/installation.mdx index a3cdc8fea..2652591e9 100644 --- a/appkit/vue/core/installation.mdx +++ b/appkit/vue/core/installation.mdx @@ -1,5 +1,5 @@ --- -title: Installation +title: Quickstart --- import CloudBanner from "/snippets/cloud-banner.mdx"; diff --git a/walletkit/web/installation.mdx b/walletkit/web/installation.mdx index 41fe22d68..063c902f9 100644 --- a/walletkit/web/installation.mdx +++ b/walletkit/web/installation.mdx @@ -1,5 +1,5 @@ --- -title: Installation +title: Quickstart --- Install WalletKit using npm or yarn. From 2bc64a5112fd53fc793bbf1d771a795a6b387a6e Mon Sep 17 00:00:00 2001 From: TomTom Date: Wed, 23 Apr 2025 11:07:53 +0300 Subject: [PATCH 3/7] options to createAppKit options --- appkit/javascript/core/options.mdx | 4 +++- appkit/next/core/options.mdx | 5 ++++- appkit/react/core/options.mdx | 6 +++++- appkit/vue/core/options.mdx | 5 ++++- snippets/appkit/shared/options.mdx | 4 ---- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/appkit/javascript/core/options.mdx b/appkit/javascript/core/options.mdx index 673e30241..caa3a5138 100644 --- a/appkit/javascript/core/options.mdx +++ b/appkit/javascript/core/options.mdx @@ -1,7 +1,9 @@ --- -title: Options +sidebarTitle: Options --- +# `createAppKit` Options + import Options from "/snippets/appkit/shared/options.mdx"; # Options diff --git a/appkit/next/core/options.mdx b/appkit/next/core/options.mdx index 5347a3581..e79decccb 100644 --- a/appkit/next/core/options.mdx +++ b/appkit/next/core/options.mdx @@ -1,7 +1,10 @@ --- -title: Options +title: " " +sidebarTitle: Options --- +# `createAppKit` Options + import Options from "/snippets/appkit/shared/options.mdx"; diff --git a/appkit/react/core/options.mdx b/appkit/react/core/options.mdx index 5347a3581..485767e47 100644 --- a/appkit/react/core/options.mdx +++ b/appkit/react/core/options.mdx @@ -1,7 +1,11 @@ --- -title: Options +title: " " +sidebarTitle: Options --- +# `createAppKit` Options + + import Options from "/snippets/appkit/shared/options.mdx"; diff --git a/appkit/vue/core/options.mdx b/appkit/vue/core/options.mdx index 673e30241..386ab88d8 100644 --- a/appkit/vue/core/options.mdx +++ b/appkit/vue/core/options.mdx @@ -1,7 +1,10 @@ --- -title: Options +title: " " +sidebarTitle: Options --- +# `createAppKit` Options + import Options from "/snippets/appkit/shared/options.mdx"; # Options diff --git a/snippets/appkit/shared/options.mdx b/snippets/appkit/shared/options.mdx index 5fe06979e..5b06e515e 100644 --- a/snippets/appkit/shared/options.mdx +++ b/snippets/appkit/shared/options.mdx @@ -1,7 +1,3 @@ ---- -title: Options ---- - The following options can be passed to the `createAppKit` function: ```ts From d5d142cda679d17d94847b1ae247bea1ceaaf8ee Mon Sep 17 00:00:00 2001 From: TomTom Date: Wed, 23 Apr 2025 11:08:04 +0300 Subject: [PATCH 4/7] hooks to AppKit Hook --- appkit/next/core/hooks.mdx | 3 ++- appkit/react-native/core/hooks.mdx | 3 ++- appkit/react/core/hooks.mdx | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/appkit/next/core/hooks.mdx b/appkit/next/core/hooks.mdx index 714888190..23eac3d3d 100644 --- a/appkit/next/core/hooks.mdx +++ b/appkit/next/core/hooks.mdx @@ -1,5 +1,6 @@ --- -title: Hooks +title: AppKit Hooks +sidebarTitle: Hooks --- import WagmiHooks from "/snippets/appkit/next/wagmi/hooks.mdx"; diff --git a/appkit/react-native/core/hooks.mdx b/appkit/react-native/core/hooks.mdx index 709edc934..f4fecd50f 100644 --- a/appkit/react-native/core/hooks.mdx +++ b/appkit/react-native/core/hooks.mdx @@ -1,5 +1,6 @@ --- -title: Hooks +title: AppKit Hooks +sidebarTitle: Hooks --- import WagmiHooks from "/snippets/appkit/react-native/wagmi/hooks.mdx"; diff --git a/appkit/react/core/hooks.mdx b/appkit/react/core/hooks.mdx index bdecfa194..f269470e8 100644 --- a/appkit/react/core/hooks.mdx +++ b/appkit/react/core/hooks.mdx @@ -1,5 +1,6 @@ --- -title: Hooks +title: AppKit Hooks +sidebarTitle: Hooks --- import WagmiHooks from "/snippets/appkit/react/wagmi/hooks.mdx"; From b5fb25e9b183c99b3ab16722adee466a45c04dd4 Mon Sep 17 00:00:00 2001 From: TomTom Date: Wed, 23 Apr 2025 11:09:59 +0300 Subject: [PATCH 5/7] improve guides order --- docs.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs.json b/docs.json index 855c78d1f..224910ad5 100644 --- a/docs.json +++ b/docs.json @@ -65,17 +65,18 @@ { "group": "AppKit Guides", "pages":[ - "appkit/recipes/telegram-mini-app", + "appkit/recipes/smart-sessions", + "appkit/recipes/sponsoring-first-transaction", + "appkit/recipes/EVM-smart-contract-interaction", + "appkit/recipes/solana-send-transaction", "appkit/recipes/tenderly-virtual-testnets", "appkit/recipes/wagmi-send-transaction", "appkit/recipes/ethers-send-transaction", - "appkit/recipes/EVM-smart-contract-interaction", - "appkit/recipes/solana-send-transaction", "appkit/recipes/bitcoin-send-transaction", "appkit/recipes/switching-to-send-calls", - "appkit/recipes/sponsoring-first-transaction", "appkit/recipes/travel-rule", - "appkit/recipes/smart-sessions" + + "appkit/recipes/telegram-mini-app" ] } ] From ca375c80d5dea2f30bd519193754ad2a4a8ec940 Mon Sep 17 00:00:00 2001 From: TomTom Date: Wed, 23 Apr 2025 11:30:19 +0300 Subject: [PATCH 6/7] small typo --- overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overview.mdx b/overview.mdx index c69c9e79a..9baf6d7fd 100644 --- a/overview.mdx +++ b/overview.mdx @@ -119,7 +119,7 @@ Step-by-step guides and ready-to-use code examples designed to help you quickly Learn how to use Reown AppKit to sponsor gas fees for your users. - + Learn how to integrate Smart Sessions with React. From f32e9dcd7a1b7174057bb7576ba6168d766eb365 Mon Sep 17 00:00:00 2001 From: Rohit Ramesh <70317502+rohit-710@users.noreply.github.com> Date: Wed, 23 Apr 2025 03:02:32 -0600 Subject: [PATCH 7/7] Update docs.json --- docs.json | 1 - 1 file changed, 1 deletion(-) diff --git a/docs.json b/docs.json index 224910ad5..69e62af5a 100644 --- a/docs.json +++ b/docs.json @@ -75,7 +75,6 @@ "appkit/recipes/bitcoin-send-transaction", "appkit/recipes/switching-to-send-calls", "appkit/recipes/travel-rule", - "appkit/recipes/telegram-mini-app" ] }