Skip to content

Commit 3ba9a22

Browse files
committed
run vale locally
1 parent ab79a07 commit 3ba9a22

11 files changed

Lines changed: 19 additions & 12 deletions

File tree

embedded-wallets/authentication/id-token.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,7 @@ try {
388388

389389
</TabItem>
390390
<TabItem value="jsonwebtoken">
391+
391392
```bash
392393
npm install jsonwebtoken
393394
```

embedded-wallets/connect-blockchain/other/README.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ While the first is generally quite straightforward and well documented, the seco
5353

5454
:::
5555

56+
<!-- vale off -->
57+
5658
export const OtherChains = [
5759
{
5860
name: "",
@@ -129,6 +131,8 @@ export const OtherChains = [
129131

130132
}, ];
131133

134+
<!-- vale on -->
135+
132136
## Non-EVM chain guides
133137

134138
You can checkout the following guides we've written for certain non EVM blockchains. The approach mentioned in this doc is very similar to the one followed in each one of them.

embedded-wallets/sdk/android/usage/login.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ val loginCompletableFuture: CompletableFuture<Web3AuthResponse> = web3Auth.login
251251
</TabItem>
252252

253253
<TabItem value="sms_passwordless">
254+
254255
```kotlin
255256
import com.web3auth.core.Web3Auth
256257
import com.web3auth.core.types.Web3AuthOptions
@@ -273,7 +274,7 @@ extraLoginOptions = ExtraLoginOptions(login_hint = "+91-9911223344")
273274
)
274275
// focus-end
275276

276-
````
277+
```
277278

278279
</TabItem>
279280

@@ -297,7 +298,7 @@ val loginCompletableFuture: CompletableFuture<Web3AuthResponse> = web3Auth.login
297298
LoginParams(Provider.Farcaster)
298299
)
299300
// focus-end
300-
````
301+
```
301302

302303
</TabItem>
303304

embedded-wallets/sdk/ios/usage/login.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ let result = try await web3Auth.login(
207207
</TabItem>
208208

209209
<TabItem value="sms_passwordless">
210+
210211
```swift
211212
import Web3Auth
212213

@@ -222,7 +223,7 @@ extraLoginOptions: .init(loginHint: "+91-9911223344")
222223
)
223224
// focus-end
224225

225-
````
226+
```
226227

227228
</TabItem>
228229

@@ -242,7 +243,7 @@ let web3auth = try await Web3Auth(
242243
// focus-next-line
243244
let result = try await web3Auth.login(W3ALoginParams(loginProvider: .FARCASTER))
244245

245-
````
246+
```
246247

247248
</TabItem>
248249

embedded-wallets/sdk/js/advanced/custom-authentication.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ await web3auth.connectTo(WALLET_CONNECTORS.AUTH, {
440440
authConnection: AUTH_CONNECTION.CUSTOM,
441441
authConnectionId: "w3a-cognito-demo",
442442
extraLoginOptions: {
443-
clientId: import.meta.env.VITE_COGNITO_CLIENT_ID,
443+
clientId: import.meta.env['VITE_COGNITO_CLIENT_ID'],
444444
domain: "https://shahbaz-web3auth.auth.ap-south-1.amazoncognito.com",
445445
verifierIdField: "email",
446446
response_type: "token",

embedded-wallets/sdk/react-native/advanced/mfa.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function MFAControls() {
8686

8787
:::note
8888

89-
Configuring `mfaSettings` is a paid feature. See [pricing](https://web3auth.io/pricing.html). You can test it on `sapphire_devnet` for free.
89+
Configuring `mfaSettings` is a paid feature. See [pricing](https://web3auth.io/pricing.html). You can test it on `sapphire_devnet` at no cost.
9090

9191
:::
9292

embedded-wallets/sdk/react/advanced/custom-authentication.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export type LoginParamMap = {
162162
*/
163163
getWalletKey?: boolean;
164164
/**
165-
* extraLoginOptions can be used to pass standard oauth login options to
165+
* extraLoginOptions can be used to pass standard OAuth login options to
166166
* loginProvider.
167167
*
168168
* For ex: you will have to pass `login_hint` as user's email and `domain`

embedded-wallets/sdk/unity/advanced/mfa.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void login()
7171

7272
:::note
7373

74-
This is a paid feature and the minimum [pricing plan](https://web3auth.io/pricing.html) to use this SDK in a production environment is the **SCALE Plan**. You can use this feature for free in the `sapphire_devnet`.
74+
This is a paid feature and the minimum [pricing plan](https://web3auth.io/pricing.html) to use this SDK in a production environment is the **SCALE Plan**. You can use this feature at no cost on `sapphire_devnet`.
7575

7676
:::
7777

embedded-wallets/sdk/vue/advanced/custom-authentication.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export type LoginParamMap = {
242242
*/
243243
getWalletKey?: boolean;
244244
/**
245-
* extraLoginOptions can be used to pass standard oauth login options to
245+
* extraLoginOptions can be used to pass standard OAuth login options to
246246
* loginProvider.
247247
*
248248
* For ex: you will have to pass `login_hint` as user's email and `domain`
@@ -443,7 +443,7 @@ await connectTo(WALLET_CONNECTORS.AUTH, {
443443
authConnection: AUTH_CONNECTION.CUSTOM,
444444
authConnectionId: "w3a-cognito-demo",
445445
extraLoginOptions: {
446-
clientId: import.meta.env.VITE_COGNITO_CLIENT_ID,
446+
clientId: import.meta.env['VITE_COGNITO_CLIENT_ID'],
447447
domain: "https://shahbaz-web3auth.auth.ap-south-1.amazoncognito.com",
448448
verifierIdField: "email",
449449
response_type: "token",

src/pages/quickstart/builder/embedded-wallets/react_native/stepContent/blockchainCallsReactNative.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Make blockchain calls
22

3-
After the user connects, use `useWeb3Auth().provider` with the Ethers library to make blockchain calls no extra provider setup is needed.
3+
After the user connects, use `useWeb3Auth().provider` with the Ethers library to make blockchain calls; no extra provider setup is needed.
44

55
```tsx
66
import { useWeb3Auth } from '@web3auth/react-native-sdk'

0 commit comments

Comments
 (0)