@@ -130,7 +130,7 @@ Function to open the onboard modal and connect to a wallet provider. For referen
130130
131131#### Example usage
132132
133- ``` tsx
133+ ``` typescript
134134function SampleConnect() {
135135 const { connectWallet } = useOnboard ()
136136
@@ -144,7 +144,7 @@ Property that contains the current chain to which `connectedChain` is connected
144144
145145#### Example usage
146146
147- ``` tsx
147+ ``` typescript
148148function SampleConnect() {
149149 const { connectedChain } = useOnboard ()
150150
@@ -157,7 +157,7 @@ Property that contains the latest connected wallet
157157
158158#### Example usage
159159
160- ` ` ` tsx
160+ ` ` ` typescript
161161function SampleConnect() {
162162 const { connectedWallet } = useOnboard ()
163163 return <span >Connected Wallet : {connectedWallet()?.label}< / span >
@@ -170,7 +170,7 @@ Function to disconnect the `connectedWallet`
170170
171171#### Example usage
172172
173- ` ` ` tsx
173+ ` ` ` typescript
174174import { useOnboard } from ' @web3-onboard/solid'
175175function SampleConnect() {
176176 const { disconnectConnectedWallet } = useOnboard ()
@@ -189,7 +189,7 @@ Function that returns the current chain a wallet is connected to
189189
190190#### Example usage
191191
192- ` ` ` tsx
192+ ` ` ` typescript
193193import { useOnboard } from ' @web3-onboard/solid'
194194function SampleConnect() {
195195 const { getChain } = useOnboard ()
@@ -203,7 +203,7 @@ Function to set the chain of a wallet
203203
204204#### Example usage
205205
206- ` ` ` tsx
206+ ` ` ` typescript
207207import { useOnboard } from ' @web3-onboard/solid'
208208function SampleConnect() {
209209 const { setChain } = useOnboard ()
@@ -222,7 +222,7 @@ Readonly boolean ref that tracks the status of setting the chain
222222
223223#### Example usage
224224
225- ` ` ` tsx
225+ ` ` ` typescript
226226import { useOnboard } from ' @web3-onboard/solid'
227227function SampleConnect() {
228228 const { settingChain } = useOnboard ()
@@ -236,7 +236,7 @@ Readonly ref that contains every wallet that has been connected
236236
237237#### Example usage
238238
239- ` ` ` tsx
239+ ` ` ` typescript
240240import { useOnboard } from ' @web3-onboard/solid'
241241function SampleConnect() {
242242 const { wallets } = useOnboard ()
@@ -260,7 +260,7 @@ Readonly ref that contains the last time that the user connected a wallet in mil
260260
261261#### Example usage
262262
263- ``` tsx
263+ ` ` ` typescript
264264import { useOnboard } from ' @web3-onboard/solid'
265265function SampleConnect() {
266266 const { lastConnectedTimestamp } = useOnboard ()
0 commit comments