diff --git a/packages/3id-did-resolver/README.md b/packages/3id-did-resolver/README.md index fb9a1dd562..4a0c69430d 100644 --- a/packages/3id-did-resolver/README.md +++ b/packages/3id-did-resolver/README.md @@ -18,7 +18,7 @@ $ npm install @ceramicnetwork/3id-did-resolver See the [Ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ``` -import ThreeIdResolver from '@ceramicnetwork/3id-did-resolver' +import { getResolver } from '@ceramicnetwork/3id-did-resolver' import { Resolver } from 'did-resolver' // You need an instance of Ceramic to call getResolver. @@ -28,8 +28,8 @@ const ceramic = // ... // getResolver will return an object with a key/value pair of { '3': resolver } // where resolver is a function used by the generic did resolver. -const threeIdResolver = ThreeIdResolver.getResolver(ceramic) -const didResolver = Resolver(threeIdResolver) +const threeIdResolver = getResolver(ceramic) +const didResolver = new Resolver(threeIdResolver) const doc = await didResolver.resolve('did:ethr:0xf3beac30c498d9e26865f34fcaa57dbb935b0d74') console.log(doc) @@ -48,7 +48,7 @@ npm run lint ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/blockchain-utils-linking/README.md b/packages/blockchain-utils-linking/README.md index 0b58eba0b7..afa6c8031e 100644 --- a/packages/blockchain-utils-linking/README.md +++ b/packages/blockchain-utils-linking/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/blockchain-utils-linking See the [Ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/blockchain-utils-validation/README.md b/packages/blockchain-utils-validation/README.md index ead77c8fe5..e54b8ab37e 100644 --- a/packages/blockchain-utils-validation/README.md +++ b/packages/blockchain-utils-validation/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/blockchain-utils-validation See the [Ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/cli/README.md b/packages/cli/README.md index 82fcd41299..702fe42185 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -30,6 +30,6 @@ $ ceramic daemon ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/common/README.md b/packages/common/README.md index 261e9d36b0..7cc7c78186 100644 --- a/packages/common/README.md +++ b/packages/common/README.md @@ -16,6 +16,6 @@ $ npm install @ceramicnetwork/common See the [Ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/core/README.md b/packages/core/README.md index 4dd8494187..1111476bdc 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -51,6 +51,6 @@ npm run lint ``` ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/http-client/README.md b/packages/http-client/README.md index a74eba7e7d..e8cf08e494 100644 --- a/packages/http-client/README.md +++ b/packages/http-client/README.md @@ -47,6 +47,6 @@ npm run lint ``` ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/ipfs-daemon/README.md b/packages/ipfs-daemon/README.md index 5f2057b888..403c532826 100644 --- a/packages/ipfs-daemon/README.md +++ b/packages/ipfs-daemon/README.md @@ -48,7 +48,7 @@ docker pull ceramicnetwork/ipfs-daemon docker run -p 5011:5011 -e CERAMIC_NETWORK=testnet-clay ceramicnetwork/ipfs-daemon ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/ipfs-topology/README.md b/packages/ipfs-topology/README.md index 9a4bf46a2e..654e1567e2 100644 --- a/packages/ipfs-topology/README.md +++ b/packages/ipfs-topology/README.md @@ -26,7 +26,7 @@ await topology.start() ``` ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/key-did-resolver/README.md b/packages/key-did-resolver/README.md index bf1e9a6a77..43a3bb12f5 100644 --- a/packages/key-did-resolver/README.md +++ b/packages/key-did-resolver/README.md @@ -261,6 +261,6 @@ https://tools.ietf.org/id/draft-jivsov-ecc-compact-05.html See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/logger/README.md b/packages/logger/README.md index 1958332fa9..23e25aa130 100644 --- a/packages/logger/README.md +++ b/packages/logger/README.md @@ -16,6 +16,6 @@ $ npm install @ceramicnetwork/logger See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/metrics/README.md b/packages/metrics/README.md index 97e6561160..6e750dd659 100644 --- a/packages/metrics/README.md +++ b/packages/metrics/README.md @@ -16,6 +16,6 @@ $ npm install @ceramicnetwork/metrics See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/pkh-did-resolver/README.md b/packages/pkh-did-resolver/README.md index b844c1fa38..a1e35176a6 100644 --- a/packages/pkh-did-resolver/README.md +++ b/packages/pkh-did-resolver/README.md @@ -59,7 +59,7 @@ Result: ``` ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License Apache-2.0 OR MIT diff --git a/packages/stream-caip10-link-handler/README.md b/packages/stream-caip10-link-handler/README.md index d32ca6a51c..280a23cc69 100644 --- a/packages/stream-caip10-link-handler/README.md +++ b/packages/stream-caip10-link-handler/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/stream-caip10-link-handler See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/stream-caip10-link/README.md b/packages/stream-caip10-link/README.md index 332857f72e..9ed20645d4 100644 --- a/packages/stream-caip10-link/README.md +++ b/packages/stream-caip10-link/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/stream-caip10-link See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/stream-model-handler/README.md b/packages/stream-model-handler/README.md index 32c534d82f..8f69fb73e5 100644 --- a/packages/stream-model-handler/README.md +++ b/packages/stream-model-handler/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/stream-model-handler See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/stream-model-instance-handler/README.md b/packages/stream-model-instance-handler/README.md index bfb6bcee9e..fe57ac8cb9 100644 --- a/packages/stream-model-instance-handler/README.md +++ b/packages/stream-model-instance-handler/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/stream-model-instance-handler See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/stream-model-instance/README.md b/packages/stream-model-instance/README.md index 2dc5ceac69..081b6e9922 100644 --- a/packages/stream-model-instance/README.md +++ b/packages/stream-model-instance/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/stream-model-instance See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/stream-model/README.md b/packages/stream-model/README.md index 3e17a81003..a79e9e6813 100644 --- a/packages/stream-model/README.md +++ b/packages/stream-model/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/stream-model See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/stream-tile-handler/README.md b/packages/stream-tile-handler/README.md index 3d3d73136f..4aafef3805 100644 --- a/packages/stream-tile-handler/README.md +++ b/packages/stream-tile-handler/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/stream-tile-handler See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/stream-tile/README.md b/packages/stream-tile/README.md index 0d4ad44d43..96d9eb6c89 100644 --- a/packages/stream-tile/README.md +++ b/packages/stream-tile/README.md @@ -16,7 +16,7 @@ npm install @ceramicnetwork/stream-tile See the [ceramic developer site](https://developers.ceramic.network/) for more details about how to use this package. ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License diff --git a/packages/streamid/README.md b/packages/streamid/README.md index 38a19d302d..9bc5ae4e4c 100644 --- a/packages/streamid/README.md +++ b/packages/streamid/README.md @@ -122,7 +122,7 @@ npm run lint ## Contributing -We are happy to accept small and large contributions. Make sure to check out the [Ceramic specifications](https://github.com/ceramicnetwork/specs) for details of how the protocol works. +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. ## License