@ceramicnetwork/ipfs-topology 2.2.2-rc.2 → 2.2.3-hotfix.0
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 +33 -33
- package/lib/index.d.ts +0 -0
- package/lib/index.d.ts.map +0 -0
- package/lib/index.js +0 -0
- package/lib/index.js.map +0 -0
- package/lib/ipfs-topology.d.ts +0 -0
- package/lib/ipfs-topology.d.ts.map +0 -0
- package/lib/ipfs-topology.js +0 -0
- package/lib/ipfs-topology.js.map +0 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
# Ceramic topology
|
|
2
|
-

|
|
3
|
-
[](https://lbesson.mit-license.org/)
|
|
4
|
-
[](https://discord.gg/6VRZpGP)
|
|
5
|
-
[](https://twitter.com/ceramicnetwork)
|
|
6
|
-
|
|
7
|
-
> Bootstrap IPFS topology for Ceramic network
|
|
8
|
-
|
|
9
|
-
## Getting started
|
|
10
|
-
|
|
11
|
-
### Installation
|
|
12
|
-
```
|
|
13
|
-
$ npm install @ceramicnetwork/ipfs-topology
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
### Usage
|
|
17
|
-
|
|
18
|
-
See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package.
|
|
19
|
-
|
|
20
|
-
```
|
|
21
|
-
import {IpfsTopology} from "@ceramicnetwork/ipfs-topology";
|
|
22
|
-
|
|
23
|
-
const topology = new IpfsTopology(ipfs, networkName)
|
|
24
|
-
// Sets up topology right away, and set it periodically
|
|
25
|
-
await topology.start()
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
## Contributing
|
|
29
|
-
We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/ceramic/blob/main/SPECIFICATION.md) for details of how the protocol works.
|
|
30
|
-
|
|
31
|
-
## License
|
|
32
|
-
|
|
33
|
-
Apache-2.0 or MIT
|
|
1
|
+
# Ceramic topology
|
|
2
|
+

|
|
3
|
+
[](https://lbesson.mit-license.org/)
|
|
4
|
+
[](https://discord.gg/6VRZpGP)
|
|
5
|
+
[](https://twitter.com/ceramicnetwork)
|
|
6
|
+
|
|
7
|
+
> Bootstrap IPFS topology for Ceramic network
|
|
8
|
+
|
|
9
|
+
## Getting started
|
|
10
|
+
|
|
11
|
+
### Installation
|
|
12
|
+
```
|
|
13
|
+
$ npm install @ceramicnetwork/ipfs-topology
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
### Usage
|
|
17
|
+
|
|
18
|
+
See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package.
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
import {IpfsTopology} from "@ceramicnetwork/ipfs-topology";
|
|
22
|
+
|
|
23
|
+
const topology = new IpfsTopology(ipfs, networkName)
|
|
24
|
+
// Sets up topology right away, and set it periodically
|
|
25
|
+
await topology.start()
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Contributing
|
|
29
|
+
We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/ceramic/blob/main/SPECIFICATION.md) for details of how the protocol works.
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
Apache-2.0 or MIT
|
package/lib/index.d.ts
CHANGED
|
File without changes
|
package/lib/index.d.ts.map
CHANGED
|
File without changes
|
package/lib/index.js
CHANGED
|
File without changes
|
package/lib/index.js.map
CHANGED
|
File without changes
|
package/lib/ipfs-topology.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/lib/ipfs-topology.js
CHANGED
|
File without changes
|
package/lib/ipfs-topology.js.map
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceramicnetwork/ipfs-topology",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3-hotfix.0",
|
|
4
4
|
"description": "Setup IPFS topology right",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ipfs",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"test": "exit 0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@ceramicnetwork/common": "^2.8.
|
|
33
|
+
"@ceramicnetwork/common": "^2.8.1-hotfix.0",
|
|
34
34
|
"cross-fetch": "^3.1.4"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"multiaddr": "^10.0.1"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "b93be4b28fd28e460dfbbdedd37f62e657027868"
|
|
40
40
|
}
|