Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ We recommend you add the [Core Repo](../../modules/core.md#install) and consider
- [Frame](../../wallets/frame.md#install)
- [Safe](../../wallets/gnosis.md#install)
- [Magic](../../wallets/magic.md#login-options)
- [MetaMask](../../wallets/metamask.md#install)
- [MEW](../../wallets/mewwallet.md#install)
- [Portis](../../wallets/portis.md#install)
- [Web3Auth](../../wallets/web3auth.md#install)
Expand Down
18 changes: 9 additions & 9 deletions docs/src/routes/docs/[...3]modules/[...4]solid/+page.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Function to open the onboard modal and connect to a wallet provider. For referen

#### Example usage

```tsx
```typescript
function SampleConnect() {
const { connectWallet } = useOnboard()

Expand All @@ -144,7 +144,7 @@ Property that contains the current chain to which `connectedChain` is connected

#### Example usage

```tsx
```typescript
function SampleConnect() {
const { connectedChain } = useOnboard()

Expand All @@ -157,7 +157,7 @@ Property that contains the latest connected wallet

#### Example usage

```tsx
```typescript
function SampleConnect() {
const { connectedWallet } = useOnboard()
return <span>Connected Wallet: {connectedWallet()?.label}</span>
Expand All @@ -170,7 +170,7 @@ Function to disconnect the `connectedWallet`

#### Example usage

```tsx
```typescript
import { useOnboard } from '@web3-onboard/solid'
function SampleConnect() {
const { disconnectConnectedWallet } = useOnboard()
Expand All @@ -189,7 +189,7 @@ Function that returns the current chain a wallet is connected to

#### Example usage

```tsx
```typescript
import { useOnboard } from '@web3-onboard/solid'
function SampleConnect() {
const { getChain } = useOnboard()
Expand All @@ -203,7 +203,7 @@ Function to set the chain of a wallet

#### Example usage

```tsx
```typescript
import { useOnboard } from '@web3-onboard/solid'
function SampleConnect() {
const { setChain } = useOnboard()
Expand All @@ -222,7 +222,7 @@ Readonly boolean ref that tracks the status of setting the chain

#### Example usage

```tsx
```typescript
import { useOnboard } from '@web3-onboard/solid'
function SampleConnect() {
const { settingChain } = useOnboard()
Expand All @@ -236,7 +236,7 @@ Readonly ref that contains every wallet that has been connected

#### Example usage

```tsx
```typescript
import { useOnboard } from '@web3-onboard/solid'
function SampleConnect() {
const { wallets } = useOnboard()
Expand All @@ -260,7 +260,7 @@ Readonly ref that contains the last time that the user connected a wallet in mil

#### Example usage

```tsx
```typescript
import { useOnboard } from '@web3-onboard/solid'
function SampleConnect() {
const { lastConnectedTimestamp } = useOnboard()
Expand Down
Loading