diff --git a/.gitbook/assets/Screenshot 2024-12-19 at 09.44.48.png b/.gitbook/assets/Screenshot 2024-12-19 at 09.44.48.png new file mode 100644 index 0000000..3630fa7 Binary files /dev/null and b/.gitbook/assets/Screenshot 2024-12-19 at 09.44.48.png differ diff --git a/.gitbook/assets/Screenshot 2024-12-19 at 09.48.02.png b/.gitbook/assets/Screenshot 2024-12-19 at 09.48.02.png new file mode 100644 index 0000000..1b0aac5 Binary files /dev/null and b/.gitbook/assets/Screenshot 2024-12-19 at 09.48.02.png differ diff --git a/.gitbook/assets/Screenshot 2024-12-19 at 09.50.10.png b/.gitbook/assets/Screenshot 2024-12-19 at 09.50.10.png new file mode 100644 index 0000000..a1064fc Binary files /dev/null and b/.gitbook/assets/Screenshot 2024-12-19 at 09.50.10.png differ diff --git a/.gitbook/assets/Screenshot 2024-12-19 at 09.51.26.png b/.gitbook/assets/Screenshot 2024-12-19 at 09.51.26.png new file mode 100644 index 0000000..1996b58 Binary files /dev/null and b/.gitbook/assets/Screenshot 2024-12-19 at 09.51.26.png differ diff --git a/about/quickstart.md b/about/quickstart.md index 46a6e41..5be1522 100644 --- a/about/quickstart.md +++ b/about/quickstart.md @@ -36,7 +36,7 @@ Install the Tezos Beacon Provider npm install @tconnect.io/tezos-beacon-provider ``` -A Wallet Connect provider specifically optimized for Tezos blockchain connections. +A Beacon wallet provider for Tezos ecosystem integrations. {% endtab %} {% tab title="Tezos Wallet Connect Provider" %} @@ -46,7 +46,7 @@ Install the Tezos Wallet Connect Provider npm install @tconnect.io/tezos-wc-provider ``` -A Beacon wallet provider for Tezos ecosystem integrations. +A Wallet Connect provider specifically optimized for Tezos blockchain connections. {% endtab %} {% endtabs %} diff --git a/getting-started/implementation-guide/react-modal.md b/getting-started/implementation-guide/react-modal.md index a0da23b..57b80a6 100644 --- a/getting-started/implementation-guide/react-modal.md +++ b/getting-started/implementation-guide/react-modal.md @@ -60,16 +60,22 @@ networkFilter?: Array<'etherlink' | 'tezos'>; ```typescript // Optional configuration for the Tezos Beacon network -// Default: Testnet +// Default: Ghostnet tezosBeaconNetwork?: TezosBeaconNetwork; ``` ```typescript // Optional configuration for the Tezos WalletConnect network -// Default: Testnet +// Default: Ghostnet tezosWcNetwork?: TezosWcNetwork; ``` +```typescript +// Optional configuration for the Tezos WalletConnect network +// Default: Testnet +evmNetwork?: EvmNetworkType; +``` + ### The TConnectModal Hook ```typescript @@ -176,7 +182,7 @@ After selecting the Blockchain, the user is prompted to choose a wallet. The lis Once a wallet is selected, the user is redirected to the wallet and prompted to authorize the connection. - +
{% endstep %} {% step %}