Skip to content

Commit 58d46d4

Browse files
fix(docs): links
1 parent 616108f commit 58d46d4

File tree

4 files changed

+3
-13
lines changed

4 files changed

+3
-13
lines changed

docs/docs/installation.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ Now that you have the `xrpl-go` package downloaded and imported in your project,
6363

6464
To learn more about the `xrpl-go` packages, you can find the documentation for each package:
6565

66-
- [binary-codec](/docs/binary-codec)
67-
- [address-codec](/docs/address-codec)
6866
- [keypairs](/docs/keypairs)
6967
- [xrpl](/docs/xrpl/currency)
7068

docs/docs/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The [`xrpl-go`](https://github.com/Peersyst/xrpl-go) project is an SDK written i
1818

1919
The SDK can be split into the following packages:
2020

21-
- [`binary-codec`](/docs/binary-codec): A package for encoding and decoding XRPL binary messages, objects and transactions.
22-
- [`address-codec`](/docs/address-codec): A package for encoding and decoding XRPL addresses.
21+
- `binary-codec`: A package for encoding and decoding XRPL binary messages, objects and transactions.
22+
- `address-codec`: A package for encoding and decoding XRPL addresses.
2323
- [`keypairs`](/docs/keypairs): A package for generating and managing cryptographic keypairs.
2424
- [`xrpl`](/docs/xrpl/currency): The biggest package of the SDK. It contains clients, types, transactions, and utils to interact with the XRP Ledger.

docs/docs/keypairs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Derives a keypair (private and public keys) from a seed. If the `validator` para
9696
func DeriveClassicAddress(pubKey string) (string, error)
9797
```
9898

99-
After deriving a keypair, you can derive the classic address from the public key. The result is a base58 encoded address, which starts with the character `r`. If you're interested in X-Address derivation, the [`address-codec`](/docs/address-codec) package contains functions to encode and decode X-Addresses from and to classic addresses.
99+
After deriving a keypair, you can derive the classic address from the public key. The result is a base58 encoded address, which starts with the character `r`. If you're interested in X-Address derivation, the `address-codec` package contains functions to encode and decode X-Addresses from and to classic addresses.
100100

101101
#### DeriveNodeAddress
102102

docs/docusaurus.config.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,6 @@ const config: Config = {
9999
label: 'Installation',
100100
to: '/docs/installation',
101101
},
102-
{
103-
label: 'binary-codec',
104-
to: '/docs/binary-codec',
105-
},
106-
{
107-
label: 'address-codec',
108-
to: '/docs/address-codec',
109-
},
110102
{
111103
label: 'keypairs',
112104
to: '/docs/keypairs',

0 commit comments

Comments
 (0)