@bsv/sdk 1.2.1 → 1.2.2
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/dist/cjs/package.json +2 -2
- package/dist/cjs/src/overlay-tools/SHIPBroadcaster.js +3 -2
- package/dist/cjs/src/overlay-tools/SHIPBroadcaster.js.map +1 -1
- package/dist/cjs/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/esm/src/overlay-tools/SHIPBroadcaster.js +3 -2
- package/dist/esm/src/overlay-tools/SHIPBroadcaster.js.map +1 -1
- package/dist/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/types/src/overlay-tools/SHIPBroadcaster.d.ts.map +1 -1
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/dist/umd/bundle.js +1 -1
- package/docs/compat.md +166 -135
- package/docs/messages.md +63 -55
- package/docs/overlay-tools.md +131 -101
- package/docs/primitives.md +4095 -3812
- package/docs/script.md +506 -467
- package/docs/totp.md +8 -0
- package/docs/transaction.md +822 -735
- package/docs/wallet.md +1025 -849
- package/package.json +2 -2
- package/src/overlay-tools/SHIPBroadcaster.ts +3 -2
- package/src/overlay-tools/__tests/SHIPBroadcaster.test.ts +4 -4
package/docs/totp.md
CHANGED
|
@@ -17,6 +17,8 @@ export interface TOTPOptions {
|
|
|
17
17
|
}
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
See also: [TOTPAlgorithm](#type-totpalgorithm)
|
|
21
|
+
|
|
20
22
|
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
|
|
21
23
|
|
|
22
24
|
---
|
|
@@ -31,6 +33,8 @@ export class TOTP {
|
|
|
31
33
|
}
|
|
32
34
|
```
|
|
33
35
|
|
|
36
|
+
See also: [TOTPOptions](#interface-totpoptions), [TOTPValidateOptions](#type-totpvalidateoptions)
|
|
37
|
+
|
|
34
38
|
<details>
|
|
35
39
|
|
|
36
40
|
<summary>Class TOTP Details</summary>
|
|
@@ -42,6 +46,7 @@ Generates a Time-based One-Time Password (TOTP).
|
|
|
42
46
|
```ts
|
|
43
47
|
static generate(secret: number[], options?: TOTPOptions): string
|
|
44
48
|
```
|
|
49
|
+
See also: [TOTPOptions](#interface-totpoptions)
|
|
45
50
|
|
|
46
51
|
Returns
|
|
47
52
|
|
|
@@ -61,6 +66,7 @@ Validates a Time-based One-Time Password (TOTP).
|
|
|
61
66
|
```ts
|
|
62
67
|
static validate(secret: number[], passcode: string, options?: TOTPValidateOptions): boolean
|
|
63
68
|
```
|
|
69
|
+
See also: [TOTPValidateOptions](#type-totpvalidateoptions)
|
|
64
70
|
|
|
65
71
|
Returns
|
|
66
72
|
|
|
@@ -112,6 +118,8 @@ export type TOTPValidateOptions = TOTPOptions & {
|
|
|
112
118
|
}
|
|
113
119
|
```
|
|
114
120
|
|
|
121
|
+
See also: [TOTPOptions](#interface-totpoptions)
|
|
122
|
+
|
|
115
123
|
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
|
|
116
124
|
|
|
117
125
|
---
|