@@ -48,15 +48,15 @@ This module contains all the necessary code for creating, understanding and vali
48
48
#### Create record
49
49
50
50
``` js
51
- const ipns from 'ipns ')
51
+ import * as ipns from ' ipns'
52
52
53
53
const entryData = await ipns .create (privateKey, value, sequenceNumber, lifetime)
54
54
```
55
55
56
56
#### Validate record
57
57
58
58
``` js
59
- const ipns from 'ipns ')
59
+ import * as ipns from ' ipns'
60
60
61
61
await ipns .validate (publicKey, ipnsEntry)
62
62
// if no error thrown, the record is valid
@@ -65,23 +65,23 @@ await ipns.validate(publicKey, ipnsEntry)
65
65
#### Embed public key to record
66
66
67
67
``` js
68
- const ipns from 'ipns ')
68
+ import * as ipns from ' ipns'
69
69
70
70
const ipnsEntryWithEmbedPublicKey = await ipns .embedPublicKey (publicKey, ipnsEntry)
71
71
```
72
72
73
73
#### Extract public key from record
74
74
75
75
``` js
76
- const ipns from 'ipns ')
76
+ import * as ipns from ' ipns'
77
77
78
78
const publicKey = ipns .extractPublicKey (peerId, ipnsEntry)
79
79
```
80
80
81
81
#### Datastore key
82
82
83
83
``` js
84
- const ipns from 'ipns ')
84
+ import * as ipns from ' ipns'
85
85
86
86
ipns .getLocalKey (peerId)
87
87
```
@@ -95,7 +95,7 @@ Returns a key to be used for storing the ipns entry locally, that is:
95
95
#### Marshal data with proto buffer
96
96
97
97
``` js
98
- const ipns from 'ipns ')
98
+ import * as ipns from ' ipns'
99
99
100
100
const entryData = await ipns .create (privateKey, value, sequenceNumber, lifetime)
101
101
// ...
@@ -108,7 +108,7 @@ Returns the entry data serialized.
108
108
#### Unmarshal data from proto buffer
109
109
110
110
``` js
111
- const ipns from 'ipns ')
111
+ import * as ipns from ' ipns'
112
112
113
113
const data = ipns .unmarshal (storedData)
114
114
```
@@ -118,7 +118,7 @@ Returns the entry data structure after being serialized.
118
118
#### Validator
119
119
120
120
``` js
121
- const ipns from 'ipns ')
121
+ import * as ipns from ' ipns'
122
122
123
123
const validator = ipns .validator
124
124
```
@@ -160,7 +160,6 @@ Returns a `Promise` that resolves to an object with the entry's properties eg:
160
160
#### Validate record
161
161
162
162
``` js
163
-
164
163
ipns .validate (publicKey, ipnsEntry)
165
164
```
166
165
0 commit comments