Skip to content

Commit d1b695a

Browse files
committed
fix broken links
1 parent d172032 commit d1b695a

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

content/stellar-contracts/access/access-control.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Access Control
33
---
44

5-
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/access/src/access-control)
5+
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/access/src/access_control)
66

77
## Overview
88

content/stellar-contracts/tokens/non-fungible/nft-enumerable.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Non-Fungible Enumerable
33
---
44

5-
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non-fungible/extensions/enumerable)
5+
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non_fungible/extensions/enumerable)
66

77
Enumerable extension for [Non-Fungible Token](/stellar-contracts/tokens/non-fungible/non-fungible) allows for enumeration
88
of all the token IDs in the contract as well as all the token IDs owned by each account. This is

content/stellar-contracts/tokens/non-fungible/non-fungible.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Non-Fungible Token
33
---
44

5-
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non-fungible)
5+
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non_fungible)
66

77
In the world of digital assets, not all tokens are alike. This becomes important in situations
88
like **real estate**, **voting rights**, or **collectibles**, where some items are valued more than
@@ -12,7 +12,7 @@ represents something distinct, with ownership tracked through Soroban smart cont
1212

1313
## Overview
1414

15-
The [non-fungible](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non-fungible) module
15+
The [non-fungible](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non_fungible) module
1616
provides three different NFT variants that differ in how certain features like ownership tracking,
1717
token creation and destruction are handled:
1818

@@ -75,12 +75,12 @@ impl NonFungibleBurnable for GameItem {}
7575
The following optional extensions are provided to enhance capabilities:
7676

7777
### - Burnable
78-
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non-fungible/extensions/burnable)
78+
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non_fungible/extensions/burnable)
7979

8080
The `NonFungibleBurnable` trait extends the `NonFungibleToken` trait to provide the capability to burn tokens.
8181

8282
### - Consecutive
83-
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non-fungible/extensions/consecutive)
83+
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non_fungible/extensions/consecutive)
8484

8585
The `NonFungibleConsecutive` extension is optimized for batch minting of tokens with consecutive IDs. This approach drastically reduces storage writes during minting by storing ownership only at boundaries and inferring ownership for other tokens. See [Non-Fungible Consecutive](/stellar-contracts/tokens/non-fungible/nft-consecutive) for detailed documentation.
8686

@@ -89,7 +89,7 @@ This extension is build around the contract variant `Consecutive`. Here is an ex
8989
* [Non-Fungible Consecutive](/stellar-contracts/tokens/non-fungible/nft-consecutive)
9090

9191
### - Enumerable
92-
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non-fungible/extensions/enumerable)
92+
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non_fungible/extensions/enumerable)
9393

9494
The `NonFungibleEnumerable` extension enables on-chain enumeration of tokens owned by an address. See [Non-Fungible Enumerable](/stellar-contracts/tokens/non-fungible/nft-enumerable) for detailed documentation.
9595

@@ -98,7 +98,7 @@ This extension is build around the contract variant `Enumerable`. Here is an exa
9898
* [Non-Fungible Enumerable](/stellar-contracts/tokens/non-fungible/nft-enumerable)
9999

100100
### - Royalties
101-
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non-fungible/extensions/royalties)
101+
[Source Code](https://github.com/OpenZeppelin/stellar-contracts/tree/main/packages/tokens/src/non_fungible/extensions/royalties)
102102

103103
The `NonFungibleRoyalties` trait extends the `NonFungibleToken` trait to provide royalty information for tokens, similar to ERC-2981 standard. This allows marketplaces to query royalty information and pay appropriate fees to creators.
104104

0 commit comments

Comments
 (0)