Skip to content

Commit c95301f

Browse files
xxhonggitbook-bot
authored andcommitted
GITBOOK-846: change request with no subject merged in GitBook
1 parent 83c5c65 commit c95301f

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

developers/auth-service/sdks/flutter.md

+13
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,19 @@ static void openWebWallet() {
430430
}
431431
```
432432

433+
### Set security account config
434+
435+
```dart
436+
// set security account config,
437+
// promptSettingWhenSign default value is 1.
438+
// promptMasterPasswordSettingWhenLogin default value is 0.
439+
// 0 no prompt
440+
// 1 first time show prompt
441+
// 2 every time show prompt
442+
final config = SecurityAccountConfig(1, 2);
443+
ParticleAuth.setSecurityAccountConfig(config);
444+
```
445+
433446
## EVM Service
434447

435448
### Write Contract

developers/node-service/evm-chains-api/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
### Structure
1010

11-
The EVM Chains API allows applications to connect to a EVM chain node that is part of the EVM blockchain. Developers can interact with on-chain data and send different types of transactions to the network by utilizing the endpoints provided by the API.
11+
The EVM Chains API allows applications to connect to an EVM chain node that is part of the EVM blockchain. Developers can interact with on-chain data and send different types of transactions to the network by utilizing the endpoints provided by the API.
1212

1313
The EVM Chains API follows a JSON-RPC 2.0 standard. We extended a field named **chainId** to specify which network we use.
1414

0 commit comments

Comments
 (0)