zigap-utils 2.0.4 → 2.0.6
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
CHANGED
|
@@ -112,6 +112,7 @@ interface LoginResultType {
|
|
|
112
112
|
issuedDateTime: string;
|
|
113
113
|
expire: LoginExpireType;
|
|
114
114
|
isVerified: boolean;
|
|
115
|
+
signature: string;
|
|
115
116
|
}
|
|
116
117
|
```
|
|
117
118
|
|
|
@@ -189,6 +190,7 @@ interface SignatureResultType {
|
|
|
189
190
|
issuedDateTime: string;
|
|
190
191
|
expire: SignatureLoginExpireType;
|
|
191
192
|
isVerified: boolean;
|
|
193
|
+
signature: string;
|
|
192
194
|
}
|
|
193
195
|
```
|
|
194
196
|
|
|
@@ -216,7 +218,7 @@ const App = () => {
|
|
|
216
218
|
transaction={{
|
|
217
219
|
type: 0,
|
|
218
220
|
to: '0x1234567890123456789012345678901234567890',
|
|
219
|
-
value: '1000000000000000000', // 1
|
|
221
|
+
value: '1000000000000000000', // 1 XP
|
|
220
222
|
gasLimit: '21000',
|
|
221
223
|
gasPrice: '1000000000',
|
|
222
224
|
}}
|