Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
docs: update remote pinning docs (#3786)
Browse files Browse the repository at this point in the history
Fix typos and errors in the example code.
  • Loading branch information
achingbrain committed Aug 4, 2021
1 parent fdc03ab commit 7fdba64
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions docs/core-api/PIN.md
Expand Up @@ -81,7 +81,7 @@ An optional object which may have the following keys:

| Type | Description |
| -------- | -------- |
| [CID][] | The CIDs that was pinned |
| [CID][] | The CID that was pinned |

### Example

Expand Down Expand Up @@ -295,13 +295,13 @@ An object may have the following optional fields:

| Type | Description |
| ---- | -------- |
| Promise<void> | Resolves if added succesfully, or fails with error e.g. if service with such name is already registered |
| Promise<void> | Resolves if added successfully, or fails with error e.g. if service with such name is already registered |


### Example

```JavaScript
await ipfs.pin.remote.sevice.add('pinata', {
await ipfs.pin.remote.service.add('pinata', {
endpoint: new URL('https://api.pinata.cloud'),
key: 'your-pinata-key'
})
Expand Down Expand Up @@ -349,7 +349,7 @@ If stats could not be fetched from service (e.g. endpoint was unreachable) objec
| status | `'invalid'` | Service status |


If stats were fetched from service succesfully object has following form:
If stats were fetched from service successfully object has following form:

| Name | Type | Description |
| ---- | ---- | -------- |
Expand All @@ -372,7 +372,7 @@ Object has following fields:
### Example

```JavaScript
await ipfs.pin.remote.sevice.ls()
await ipfs.pin.remote.service.ls()
// [{
// service: 'pinata'
// endpoint: new URL('https://api.pinata.cloud'),
Expand Down Expand Up @@ -426,7 +426,7 @@ An object may have the following optional fields:
### Example

```JavaScript
await ipfs.pin.remote.sevice.rm('pinata')
await ipfs.pin.remote.service.rm('pinata')
```

A great source of [examples][] can be found in the tests for this API.
Expand Down Expand Up @@ -529,21 +529,20 @@ An object may have the following optional fields:

| Type | Description |
| ---- | -------- |
| AyncIterable<[Pin][]> | Pin Objects |
| AysncIterable<[Pin][]> | Pin Objects |

### Example

```JavaScript
const pins = await ipfs.pin.remote.ls({
service: 'pinata'
})
console.log(pins)
for await (const pin of ipfs.pin.remote.ls({ service: 'pinata' })) {
console.log(pin)
}
// Logs:
// [{
// {
// status: 'pinned',
// cid: CID('QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u'),
// name: 'block-party'
// }]
// }
```

A great source of [examples][] can be found in the tests for this API.
Expand Down

0 comments on commit 7fdba64

Please sign in to comment.