Skip to content

Commit a023c0f

Browse files
committedSep 10, 2021
docs: update readme
1 parent e4175cc commit a023c0f

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed
 

‎README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ This module contains all the necessary code for creating, understanding and vali
4848
#### Create record
4949

5050
```js
51-
const ipns from 'ipns')
51+
import * as ipns from 'ipns'
5252

5353
const entryData = await ipns.create(privateKey, value, sequenceNumber, lifetime)
5454
```
5555

5656
#### Validate record
5757

5858
```js
59-
const ipns from 'ipns')
59+
import * as ipns from 'ipns'
6060

6161
await ipns.validate(publicKey, ipnsEntry)
6262
// if no error thrown, the record is valid
@@ -65,23 +65,23 @@ await ipns.validate(publicKey, ipnsEntry)
6565
#### Embed public key to record
6666

6767
```js
68-
const ipns from 'ipns')
68+
import * as ipns from 'ipns'
6969

7070
const ipnsEntryWithEmbedPublicKey = await ipns.embedPublicKey(publicKey, ipnsEntry)
7171
```
7272

7373
#### Extract public key from record
7474

7575
```js
76-
const ipns from 'ipns')
76+
import * as ipns from 'ipns'
7777

7878
const publicKey = ipns.extractPublicKey(peerId, ipnsEntry)
7979
```
8080

8181
#### Datastore key
8282

8383
```js
84-
const ipns from 'ipns')
84+
import * as ipns from 'ipns'
8585

8686
ipns.getLocalKey(peerId)
8787
```
@@ -95,7 +95,7 @@ Returns a key to be used for storing the ipns entry locally, that is:
9595
#### Marshal data with proto buffer
9696

9797
```js
98-
const ipns from 'ipns')
98+
import * as ipns from 'ipns'
9999

100100
const entryData = await ipns.create(privateKey, value, sequenceNumber, lifetime)
101101
// ...
@@ -108,7 +108,7 @@ Returns the entry data serialized.
108108
#### Unmarshal data from proto buffer
109109

110110
```js
111-
const ipns from 'ipns')
111+
import * as ipns from 'ipns'
112112

113113
const data = ipns.unmarshal(storedData)
114114
```
@@ -118,7 +118,7 @@ Returns the entry data structure after being serialized.
118118
#### Validator
119119

120120
```js
121-
const ipns from 'ipns')
121+
import * as ipns from 'ipns'
122122

123123
const validator = ipns.validator
124124
```
@@ -160,7 +160,6 @@ Returns a `Promise` that resolves to an object with the entry's properties eg:
160160
#### Validate record
161161

162162
```js
163-
164163
ipns.validate(publicKey, ipnsEntry)
165164
```
166165

0 commit comments

Comments
 (0)
Please sign in to comment.