@startbahn/startrail-sdk-js 1.27.0-beta.1 → 1.28.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/dist/startrail-sdk.js +173880 -116386
- package/package.json +12 -8
- package/types/startrail-sdk-js.d.ts +59 -44
package/README.md
CHANGED
|
@@ -95,7 +95,8 @@ sdk = new Startrail({
|
|
|
95
95
|
modal: {
|
|
96
96
|
continueLogin: 'Login with previous {verifier} account', // {verifier} is optional but to be replaced programmatically with the login provider name if it exists in the sentence
|
|
97
97
|
termsConditions: 'your termsConditions',
|
|
98
|
-
termsConditionsLinkUrl: 'your termsConditionsLinkUrl'
|
|
98
|
+
termsConditionsLinkUrl: 'your termsConditionsLinkUrl',
|
|
99
|
+
privacyPolicyLinkUrl: 'your privacyPolicyLinkUrl'
|
|
99
100
|
},
|
|
100
101
|
signPopup: {
|
|
101
102
|
title: 'your title',
|
|
@@ -113,7 +114,8 @@ sdk = new Startrail({
|
|
|
113
114
|
modal: {
|
|
114
115
|
continueLogin: '前回の{verifier}アカウントを使う', // {verifier}は任意ですが、文言の中に存在していれば選択したログイン方法の名前へと自動的に置き換わります。
|
|
115
116
|
termsConditions: 'あなたの termsConditions',
|
|
116
|
-
termsConditionsLinkUrl: 'あなたの termsConditionsLinkUrl'
|
|
117
|
+
termsConditionsLinkUrl: 'あなたの termsConditionsLinkUrl',
|
|
118
|
+
privacyPolicyLinkUrl: 'あなたの privacyPolicyLinkUrl'
|
|
117
119
|
},
|
|
118
120
|
signPopup: {
|
|
119
121
|
title: 'あなたの title',
|
|
@@ -133,4 +135,4 @@ sdk = new Startrail({
|
|
|
133
135
|
|
|
134
136
|
## Tips
|
|
135
137
|
If you use Metamask, call sdk.login() before requesting users to sign or call API, in order to fetch currently active EOA and compare
|
|
136
|
-
it in your web-application, because it is not possible by SDK to stop users from switching EOA.
|
|
138
|
+
it in your web-application, because it is not possible by SDK to stop users from switching EOA.
|