Skip to content

Commit 71e6dd2

Browse files
committed
docs: fix broken links
1 parent 4a72b4b commit 71e6dd2

File tree

10 files changed

+23
-28
lines changed

10 files changed

+23
-28
lines changed

docs/content/docs/addresses/address-types/base.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,6 @@ console.log("Script-based address:", bech32);
9797

9898
## Related
9999

100-
- **[Enterprise Addresses](./enterprise)** - Payment credential only
101-
- **[Reward Addresses](./reward)** - Staking credential only
100+
- **[Enterprise Addresses](/docs/addresses/address-types/enterprise)** - Payment credential only
101+
- **[Reward Addresses](/docs/addresses/address-types/reward)** - Staking credential only
102102
- **[Franken Addresses](/docs/addresses/franken)** - Addresses with credentials from different sources

docs/content/docs/addresses/address-types/enterprise.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,5 @@ console.log("Script enterprise address:", bech32);
9999

100100
## Related
101101

102-
- **[Base Addresses](./base)** - Addresses with both payment and staking credentials
103-
- **[Reward Addresses](./reward)** - Staking credential only
102+
- **[Base Addresses](/docs/addresses/address-types/base)** - Addresses with both payment and staking credentials
103+
- **[Reward Addresses](/docs/addresses/address-types/reward)** - Staking credential only

docs/content/docs/addresses/address-types/index.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ Each address type encodes different credential combinations:
3232

3333
| Address Type | Payment | Staking | On-Chain Size | Bech32 Prefix | Header Bits |
3434
|--------------|---------|---------|---------------|---------------|-------------|
35-
| **[Base](./base)** ||| 57 bytes | `addr`/`addr_test` | `0000xxxx` |
36-
| **[Enterprise](./enterprise)** ||| 29 bytes | `addr`/`addr_test` | `0110xxxx` |
37-
| **[Reward](./reward)** ||| 29 bytes | `stake`/`stake_test` | `1110xxxx` |
38-
| **[Pointer](./pointer)** || Pointer | Variable | `addr`/`addr_test` | `0100xxxx` |
35+
| **[Base](/docs/addresses/address-types/base)** ||| 57 bytes | `addr`/`addr_test` | `0000xxxx` |
36+
| **[Enterprise](/docs/addresses/address-types/enterprise)** ||| 29 bytes | `addr`/`addr_test` | `0110xxxx` |
37+
| **[Reward](/docs/addresses/address-types/reward)** ||| 29 bytes | `stake`/`stake_test` | `1110xxxx` |
38+
| **[Pointer](/docs/addresses/address-types/pointer)** || Pointer | Variable | `addr`/`addr_test` | `0100xxxx` |
3939

4040
## Address Type Documentation
4141

4242
Detailed serialization specifications for each format:
4343

44-
- **[Base Addresses](./base)** - Payment and staking credential encoding
45-
- **[Enterprise Addresses](./enterprise)** - Payment credential only encoding
46-
- **[Reward Addresses](./reward)** - Staking credential only encoding
47-
- **[Pointer Addresses](./pointer)** - On-chain stake registration reference encoding
44+
- **[Base Addresses](/docs/addresses/address-types/base)** - Payment and staking credential encoding
45+
- **[Enterprise Addresses](/docs/addresses/address-types/enterprise)** - Payment credential only encoding
46+
- **[Reward Addresses](/docs/addresses/address-types/reward)** - Staking credential only encoding
47+
- **[Pointer Addresses](/docs/addresses/address-types/pointer)** - On-chain stake registration reference encoding
4848

4949
## Related
5050

docs/content/docs/addresses/address-types/pointer.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,5 @@ console.log("Pointer address (deprecated):", pointerAddr);
119119

120120
## Related
121121

122-
- **[Base Addresses](./base)** - Standard address format with embedded stake credential
123-
- **[Enterprise Addresses](./enterprise)** - Payment credential only
122+
- **[Base Addresses](/docs/addresses/address-types/base)** - Standard address format with embedded stake credential
123+
- **[Enterprise Addresses](/docs/addresses/address-types/enterprise)** - Payment credential only

docs/content/docs/addresses/address-types/reward.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ Reward addresses enable separation between payment and staking operations:
9999

100100
## Related
101101

102-
- **[Base Addresses](./base)** - Addresses with both payment and staking credentials
103-
- **[Enterprise Addresses](./enterprise)** - Payment credential only
102+
- **[Base Addresses](/docs/addresses/address-types/base)** - Addresses with both payment and staking credentials
103+
- **[Enterprise Addresses](/docs/addresses/address-types/enterprise)** - Payment credential only
104104
- **[Staking](/docs/staking)** - Using reward addresses for delegation and withdrawals

docs/content/docs/architecture/provider-layer.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,6 @@ The provider layer integrates with other architectural components:
128128

129129
## Related Topics
130130

131-
- [Client Architecture](/docs/architecture/index) - How providers attach to clients
131+
- [Client Architecture](/docs/architecture) - How providers attach to clients
132132
- [Transaction Flow](/docs/architecture/transaction-flow) - Provider queries during build phase
133133
- [Deferred Execution](/docs/architecture/deferred-execution) - Provider integration with program execution

docs/content/docs/architecture/wallet-layer.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ Compiler automatically selects correct return type based on wallet parameter.
130130

131131
## Related Topics
132132

133-
- [Client Architecture](/docs/architecture/index) - How clients compose with wallets and providers
133+
- [Client Architecture](/docs/architecture) - How clients compose with wallets and providers
134134
- [Transaction Flow](/docs/architecture/transaction-flow) - How wallet type affects build/sign/submit flow
135135
- [Deferred Execution](/docs/architecture/deferred-execution) - Change address resolution from wallet

docs/content/docs/index.mdx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,10 @@ import { Card, Cards } from 'fumadocs-ui/components/card'
3232
description="Generate TypeScript types from Plutus Blueprint JSON"
3333
href="/tools/blueprint-codegen"
3434
/>
35-
<Card
36-
title="Examples"
37-
description="Explore real-world examples and common patterns"
38-
href="/docs/examples"
39-
/>
4035
<Card
4136
title="API Reference"
4237
description="Complete API documentation for all modules"
43-
href="/docs/api"
38+
href="/docs/modules"
4439
/>
4540
</Cards>
4641

@@ -69,7 +64,7 @@ Learn the fundamentals of working with Evolution SDK.
6964
<Card
7065
title="Querying"
7166
description="Query blockchain data and UTxOs"
72-
href="/docs/getting-started/provider"
67+
href="/docs/querying"
7368
/>
7469
</Cards>
7570

docs/content/docs/introduction/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const client = createClient({
3939
});
4040
```
4141

42-
See [Creating Wallets](/docs/wallets/creating-wallets) for all wallet types.
42+
See [Creating Wallets](/docs/wallets) for all wallet types.
4343

4444
### 3. Attach a Provider
4545
Connect to the blockchain via a provider:

docs/content/docs/introduction/installation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@ console.log("Evolution SDK loaded successfully!");
7777

7878
## Next Steps
7979

80-
- [Create a wallet](/docs/wallets/creating-wallets)
80+
- [Create a wallet](/docs/wallets)
8181
- [Connect a provider](/docs/clients/providers)
82-
- [Build your first transaction](/docs/getting-started)
82+
- [Build your first transaction](/docs/introduction/getting-started)

0 commit comments

Comments
 (0)