Skip to content

Commit 74ca128

Browse files
chaichuanfagitbook-bot
authored andcommitted
GITBOOK-847: change request with no subject merged in GitBook
1 parent c95301f commit 74ca128

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

developers/auth-service/sdks/web.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,13 @@ const particle = new ParticleNetwork({
6666
uiMode: "dark", //optional: light or dark, if not set, the default is the same as web auth.
6767
supportChains: [{ id: 1, name: "Ethereum"}, { id: 5, name: "Ethereum"}], // optional: web wallet support chains.
6868
<strong> customStyle: {}, //optional: custom wallet style
69-
</strong> }
69+
</strong> },
70+
securityAccount: { //optional: particle security account config
71+
//prompt set payment password. 0: None, 1: Once(default), 2: Always
72+
promptSettingWhenSign: 1,
73+
//prompt set master password. 0: None(default), 1: Once, 2: Always
74+
promptMasterPasswordSettingWhenLogin: 1
75+
},
7076
});
7177

7278
const particleProvider = new ParticleProvider(particle.auth);

developers/connect-service/sdks/web.md

+6
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ root.render(
5353
],
5454
customStyle: {}, //optional: custom wallet style
5555
},
56+
securityAccount: { //optional: particle security account config
57+
//prompt set payment password. 0: None, 1: Once(default), 2: Always
58+
promptSettingWhenSign: 1,
59+
//prompt set master password. 0: None(default), 1: Once, 2: Always
60+
promptMasterPasswordSettingWhenLogin: 1
61+
},
5662
wallets: evmWallets({ qrcode: false }),
5763
}}
5864
theme={'auto'}

0 commit comments

Comments
 (0)