Skip to content

Commit

Permalink
Use relative links
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Electron committed May 29, 2024
1 parent c111bc6 commit 7ce7a1b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/build/identity.rs/1.3/docs/contribute.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ All of the code is open source and hosted on [GitHub](https://github.com/iotaled

- [Report a bug](https://github.com/iotaledger/identity.rs/issues/new/choose).
- [Suggest a new feature](https://github.com/iotaledger/identity.rs/blob/main/.github/CONTRIBUTING.md).
- [Contribute to the documentation](/identity.rs/contribute#contribute-to-the-documentation).
- [Contribute to the documentation](#contribute-to-the-documentation).

## Contribute to the Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ while facilitating encrypted communication.
A DID is a unique identifier that can be resolved to a DID Document. This document contains data such as public keys, enabling the holder to prove ownership over their personal data, but also URIs that link to public information about the identity. DIDs are the fundamental building blocks of decentralized digital identity.
This implementation complies with the [DID specifications v1.0](https://www.w3.org/TR/did-core//) from the World Wide Web Consortium (W3C).

In the IOTA Identity framework, we have implemented the DID standard according to the `iota` [DID Method Specification](/identity.rs/references/specifications/iota-did-method-spec/). Other implementations of DID on IOTA must follow the `iota` DID Method Specification if they want to use the `iota` method name. Libraries implementing the `iota` DID Method Specification are provided for [Rust](../getting-started/rust.mdx) and [WASM](../getting-started/wasm.mdx).
In the IOTA Identity framework, we have implemented the DID standard according to the `iota` [DID Method Specification](../references/specifications/iota-did-method-spec.mdx). Other implementations of DID on IOTA must follow the `iota` DID Method Specification if they want to use the `iota` method name. Libraries implementing the `iota` DID Method Specification are provided for [Rust](../getting-started/rust.mdx) and [WASM](../getting-started/wasm.mdx).

An example of a DID conforming to the `iota` method specification:
`did:iota:0xe4edef97da1257e83cbeb49159cfdd2da6ac971ac447f233f8439cf29376ebfe`
Expand All @@ -52,7 +52,7 @@ The identifier contains all information to resolve a DID, providing the latest D
The first three characters `did` indicate that the DID standard from W3C must be used to resolve the identifier.
It is followed by a unique method name, in our case `iota`, to indicate that the IOTA method is used.

The IOTA method is a specific implementation following the [IOTA DID Method Specification](/identity.rs/references/specifications/iota-did-method-spec/).
The IOTA method is a specific implementation following the [IOTA DID Method Specification](../references/specifications/iota-did-method-spec.mdx).
This provides unique rules for the protocol to follow in order to manage a DID Document.
In our case, it describes how DID Documents are uploaded and queried to and from the IOTA ledger.

Expand Down
2 changes: 1 addition & 1 deletion docs/build/identity.rs/1.3/docs/getting-started/wasm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,6 @@ You may find it useful to see how the WASM bindings are being used in existing a

- [Zebra IOTA Edge SDK](https://github.com/ZebraDevs/Zebra-Iota-Edge-SDK) (mobile apps using Capacitor.js + Svelte)

## [API Reference](/identity.rs/references/api/wasm)
## [API Reference](../references/api/wasm.mdx)

## [Examples](https://github.com/iotaledger/identity.rs/blob/v1.3.0/bindings/wasm/examples/README.md)
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This invalidates all credentials that were signed with that verification method.
## Revocation methods
The IOTA Identity Framework supports two different revocation methods: `RevocationBitmap2022` and `StatusList2021`.
### Revocation Bitmap
[RevocationBitmap2022](/identity.rs/references/specifications/revocation-bitmap-2022/) is the default credential revocation method used in the IOTA Identity Framework. It allows
[RevocationBitmap2022](../../references/specifications/revocation-bitmap-2022.mdx) is the default credential revocation method used in the IOTA Identity Framework. It allows
issuers to control whether a credential is _valid_ or _revoked_. To do so, a revocation list (represented
as a bitmap) is stored in the issuer's DID document.
When a credential is issued, a unique index from the issuer's revocation list
Expand Down

0 comments on commit 7ce7a1b

Please sign in to comment.