Skip to content

Commit

Permalink
fix: Fix broken internal docs links (#2228)
Browse files Browse the repository at this point in the history
  • Loading branch information
fijter authored Sep 4, 2024
1 parent b9148de commit 27f2d30
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/content/developer/iota-101/objects/object-model.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: Everything on the IOTA blockchain is an object, with metadata, type
The fundamental unit of storage on IOTA is the object.
Unlike many blockchains that focus on accounts containing key-value stores, IOTA's storage model centers around objects,
each of which is addressable on-chain by a unique ID.
In IOTA, a smart contract is an object known as a [package](../../iota-101/iota-move-concepts/packages/packages.mdx),
In IOTA, a smart contract is an object known as a [package](../../../references/framework/iota-framework/package.mdx),
and these smart contracts interact with other objects on the IOTA network:

- **IOTA Move Package:** A collection of IOTA Move bytecode modules. Each module has a unique name within its containing package. The combination of the package's on-chain ID and the module name uniquely identifies the module. When you publish smart contracts on IOTA, the package is the unit of publication. Once published, a package object can only be upgraded with the appropriate permissions. A package object may depend on other package objects previously published on IOTA.
Expand Down
2 changes: 1 addition & 1 deletion docs/content/developer/stardust/claiming/alias.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Coming soon

### 2. Check the Native Token Balance

Next, check the native tokens that might be held by this output. A [`Bag`](../../../references/framework/iota-framework/bag.mdx) is used for holding these tokens. In this step, we are interested in obtaining the dynamic field keys that are bag indexes. For native tokens, the keys are strings representing the [`OTW`](../../iota-101/iota-move-concepts/one-time-witness.mdx) used for the native token declaration.
Next, check the native tokens that might be held by this output. A [`Bag`](../../../references/framework/iota-framework/bag.mdx) is used for holding these tokens. In this step, we are interested in obtaining the dynamic field keys that are bag indexes. For native tokens, the keys are strings representing the [`OTW`](../../iota-101/move-overview/one-time-witness.mdx) used for the native token declaration.


<Tabs groupId="language">
Expand Down
2 changes: 1 addition & 1 deletion docs/content/developer/stardust/claiming/basic.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ After fetching the `BasicOutput`, you need to check for any native tokens that m
These tokens are typically stored in a [`Bag`](../../../references/framework/iota-framework/bag.mdx).
You'll need to obtain the dynamic field keys used as bag indexes to access the native tokens.
For native tokens,
these keys are strings representing the [`OTW`](../../iota-101/iota-move-concepts/one-time-witness.mdx) used for the native token [`Coin`](../../../references/framework/iota-framework/coin.mdx#resource-coin).
these keys are strings representing the [`OTW`](../../iota-101/move-overview/one-time-witness.mdx) used for the native token [`Coin`](../../../references/framework/iota-framework/coin.mdx#resource-coin).


<Tabs groupId="language">
Expand Down
2 changes: 1 addition & 1 deletion docs/content/developer/stardust/claiming/foundry.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Coming soon

### 4. Extract the One-Time Witness (OTW)

Since each native token is tied to its own package, a Foundry's native token has a specific [`OTW`](../../iota-101/iota-move-concepts/one-time-witness.mdx). Here, you will extract the `OTW` from the `CoinManagerTreasuryCap` object.
Since each native token is tied to its own package, a Foundry's native token has a specific [`OTW`](../../iota-101/move-overview/one-time-witness.mdx). Here, you will extract the `OTW` from the `CoinManagerTreasuryCap` object.

<Tabs groupId="language">
<TabItem value="rust" label="Rust">
Expand Down
2 changes: 1 addition & 1 deletion docs/content/developer/stardust/claiming/nft.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ After fetching the `NftOutput`, you need to check for any native tokens that mig
These tokens are stored in a [`Bag`](../../../references/framework/iota-framework/bag).
You'll need to obtain the dynamic field keys used as bag indexes to access the native tokens.
For native tokens, these keys are strings
representing the [`OTW`](../../iota-101/iota-move-concepts/one-time-witness.mdx) used for the native token
representing the [`OTW`](../../iota-101/move-overview/one-time-witness.mdx) used for the native token
[`Coin`](../../../references/framework/iota-framework/coin.mdx#resource-coin).


Expand Down

0 comments on commit 27f2d30

Please sign in to comment.