diff --git a/apps/wallet/src/shared/constants.ts b/apps/wallet/src/shared/constants.ts index fdf82897d15..61f24fe3181 100644 --- a/apps/wallet/src/shared/constants.ts +++ b/apps/wallet/src/shared/constants.ts @@ -3,7 +3,7 @@ // SPDX-License-Identifier: Apache-2.0 export const ToS_LINK = 'https://www.iota.org/iota-wallet-tos'; -export const FAQ_LINK = 'https://wiki.iota.org/'; +export const FAQ_LINK = 'https://docs.iota.org/about-iota/iota-wallet/FAQ '; // number of epochs before earning // Staking Rewards Redeemable diff --git a/apps/wallet/src/ui/app/pages/home/nft-details/index.tsx b/apps/wallet/src/ui/app/pages/home/nft-details/index.tsx index ddaafb3af36..00792a40e54 100644 --- a/apps/wallet/src/ui/app/pages/home/nft-details/index.tsx +++ b/apps/wallet/src/ui/app/pages/home/nft-details/index.tsx @@ -58,11 +58,12 @@ function NFTDetailsPage() { const isPending = isNftLoading || isPendingDisplay || isGuardLoading; function handleMoreAboutKiosk() { - window.open('https://wiki.iota.org/', '_blank'); + window.open('https://docs.iota.org/references/ts-sdk/kiosk/', '_blank'); } function handleMarketplace() { - window.open('https://wiki.iota.org/', '_blank'); + // TODO: https://github.com/iotaledger/iota/issues/4024 + window.open('https://docs.iota.org/references/ts-sdk/kiosk/', '_blank'); } function handleSend() { diff --git a/crates/iota-sdk/README.md b/crates/iota-sdk/README.md index 21ae42ca4ea..bb144dd7c1c 100644 --- a/crates/iota-sdk/README.md +++ b/crates/iota-sdk/README.md @@ -59,7 +59,7 @@ Unless otherwise specified, most of these examples assume `Rust` and `cargo` are In the root folder of the `iota` repository (or in the `iota-sdk` crate folder), you can individually run examples using the command `cargo run --example filename` (without `.rs` extension). For example: -- `cargo run --example iota_client` -- this one requires a local Iota network running (see [#Connecting to Iota Network](https://wiki.iota.cafe/developer/getting-started/local-network#start-the-local-network). If you do not have a local Iota network running, please skip this example. +- `cargo run --example iota_client` -- this one requires a local Iota network running (see [#Connecting to Iota Network](https://docs.iota.org/developer/getting-started/local-network#start-a-local-network). If you do not have a local Iota network running, please skip this example. - `cargo run --example coin_read_api` - `cargo run --example event_api` -- note that this will subscribe to a stream and thus the program will not terminate unless forced (Ctrl+C) - `cargo run --example governance_api` @@ -80,7 +80,7 @@ The `IotaClientBuilder` struct provides a connection to the JSON-RPC server that For all available servers, see [here](TODO: https://github.com/iotaledger/iota/issues/1614). -For running a local IOTA network, please follow [this guide](https://wiki.iota.cafe/developer/getting-started/iota-install) for installing IOTA and [this guide](https://wiki.iota.cafe/developer/getting-started/local-network#start-the-local-network) for starting the local IOTA network. +For running a local IOTA network, please follow [this guide](https://docs.iota.org/developer/getting-started/install-iota) for installing IOTA and [this guide](https://docs.iota.org/developer/getting-started/local-network#start-a-local-network) for starting the local IOTA network. ```rust use iota_sdk::IotaClientBuilder; @@ -141,15 +141,15 @@ See the programmable transactions [example](https://github.com/iotaledger/iota/b 1. Prepare the environment - 1. Install `iota` binary following the [IOTA installation](https://wiki.iota.cafe/developer/getting-started/iota-install) docs. - 1. [Connect to IOTA Devnet](https://wiki.iota.cafe/developer/getting-started/connect). - 1. [Make sure you have two addresses with gas](https://wiki.iota.cafe/developer/getting-started/get-address) by using the `new-address` command to create new addresses: + 1. Install `iota` binary following the [IOTA installation](https://docs.iota.org/developer/getting-started/install-iota) docs. + 1. [Connect to IOTA Devnet](https://docs.iota.org/developer/getting-started/connect). + 1. [Make sure you have two addresses with gas](https://docs.iota.org/developer/getting-started/get-address) by using the `new-address` command to create new addresses: ```shell iota client new-address ed25519 ``` You must specify the key scheme, one of `ed25519` or `secp256k1` or `secp256r1`. You can skip this step if you are going to play with a friend. :) - 1. [Request IOTA tokens](https://wiki.iota.cafe/developer/getting-started/get-coins) for all addresses that will be used to join the game. + 1. [Request IOTA tokens](https://docs.iota.org/developer/getting-started/get-coins) for all addresses that will be used to join the game. 2. Publish the move contract diff --git a/dapps/kiosk/src/components/Kiosk/KioskCreation.tsx b/dapps/kiosk/src/components/Kiosk/KioskCreation.tsx index 1248e4388fa..f90b06c5d02 100644 --- a/dapps/kiosk/src/components/Kiosk/KioskCreation.tsx +++ b/dapps/kiosk/src/components/Kiosk/KioskCreation.tsx @@ -29,7 +29,7 @@ export function KioskCreation({ onCreate }: { onCreate: () => void }) { wallet connects to Testnet and that you have at least 1 IOTA to cover gas fees. You can get test IOTA tokens using{' '} IOTA MultiSig Address - https://wiki.iota.org/testnet/learn/cryptography/iota-multisig + https://docs.iota.org/developer/cryptography/transaction-auth/multisig @@ -249,7 +249,7 @@ export default function MultiSigCombineSignatureGenerator() { IOTA MultiSig Combined Address - https://wiki.iota.org/testnet/learn/cryptography/iota-multisig + https://docs.iota.org/developer/cryptography/transaction-auth/multisig diff --git a/dapps/multisig-toolkit/src/routes/multisig-address.tsx b/dapps/multisig-toolkit/src/routes/multisig-address.tsx index 9dcea4b9863..9d7759cdd19 100644 --- a/dapps/multisig-toolkit/src/routes/multisig-address.tsx +++ b/dapps/multisig-toolkit/src/routes/multisig-address.tsx @@ -137,7 +137,7 @@ export default function MultiSigAddressGenerator() { IOTA MultiSig Address - https://wiki.iota.org/testnet/learn/cryptography/iota-multisig + https://docs.iota.org/references/ts-sdk/typescript/cryptography/multisig diff --git a/docs/README.md b/docs/README.md index 0296c0dffdb..63ade6b76f9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,6 @@ ## Overview -This directory contains the assets required to build and update the [IOTA documentation](https://wiki.iota.org). The directory is split between `content` and `site`. To run the site locally, open the root directory in a terminal or console. Use a package manager to install the required modules: +This directory contains the assets required to build and update the [IOTA documentation](https://docs.iota.org). The directory is split between `content` and `site`. To run the site locally, open the root directory in a terminal or console. Use a package manager to install the required modules: ```shell pnpm install @@ -38,11 +38,10 @@ If you'd like to view the Vercel preview before your changes are ready for revie IOTA is for the community. Contribute for the benefit of all. -- [Docs contributing guidelines](https://wiki.iota.cafe/references/contribute/contribution-process) -- [Repo contributing guidelines](https://wiki.iota.cafe/contribute-to-iota-repos) -- [Style guide](https://wiki.iota.cafe/style-guide) -- [Localization](https://wiki.iota.cafe/localize-iota-docs) -- [Code of conduct](https://wiki.iota.cafe/code-of-conduct) +- [Docs contributing guidelines](https://docs.iota.org/references/contribute/contribution-process) +- [Repo contributing guidelines](https://github.com/iotaledger/iota/blob/develop/CONTRIBUTING.md) +- [Style guide](https://docs.iota.org/style-guide) +- [Code of conduct](https://docs.iota.org/code-of-conduct) ## License diff --git a/docs/content/developer/advanced/_graphql-migration.mdx b/docs/content/developer/advanced/graphql-migration.mdx similarity index 100% rename from docs/content/developer/advanced/_graphql-migration.mdx rename to docs/content/developer/advanced/graphql-migration.mdx diff --git a/docs/content/developer/getting-started/getting-started.mdx b/docs/content/developer/getting-started/getting-started.mdx index d1beaeceee3..1596b9d378e 100644 --- a/docs/content/developer/getting-started/getting-started.mdx +++ b/docs/content/developer/getting-started/getting-started.mdx @@ -16,16 +16,11 @@ The guides in this section will guide you as you start your IOTA Rebased journey by [setting up your development environment](iota-environment.mdx), and then move on to [install IOTA](install-iota.mdx). +## GraphQL queries -[//]: # (## GraphQL queries) +Use the GraphQL service for IOTA RPC to interact with on-chain data. -[//]: # () - -[//]: # (Use the GraphQL service for IOTA RPC to interact with on-chain data. ) - -[//]: # () - -[//]: # (Go to [Query IOTA RPC with GraphQL](getting-started/graphql-rpc.mdx).) +Go to [Query IOTA RPC with GraphQL](graphql-rpc.mdx). ## What's Next? diff --git a/docs/content/developer/getting-started/_graphql-rpc.mdx b/docs/content/developer/getting-started/graphql-rpc.mdx similarity index 100% rename from docs/content/developer/getting-started/_graphql-rpc.mdx rename to docs/content/developer/getting-started/graphql-rpc.mdx diff --git a/docs/content/developer/_graphql-rpc.mdx b/docs/content/developer/graphql-rpc.mdx similarity index 98% rename from docs/content/developer/_graphql-rpc.mdx rename to docs/content/developer/graphql-rpc.mdx index 9fb700c8685..6232f00f2a3 100644 --- a/docs/content/developer/_graphql-rpc.mdx +++ b/docs/content/developer/graphql-rpc.mdx @@ -247,7 +247,7 @@ It is an error to apply both a `first` and a `last` limit. ### Examples -To see these principles put into practice, consult the examples for [paginating forwards](getting-started/graphql-rpc.mdx#paginating-checkpoints-forward-five-at-a-time-page-forward) and [paginating backwards](getting-started/graphql-rpc.mdx#paginating-checkpoints-backwards-five-at-a-time-page-back) in the getting started guide. +To see these principles put into practice, consult the examples for [paginating forwards](getting-started/graphql-rpc.mdx#paginating-checkpoints-forward-five-at-a-time) and [paginating backwards](getting-started/graphql-rpc.mdx#paginating-checkpoints-backwards-five-at-a-time) in the getting started guide. ## Limits diff --git a/docs/content/references/iota-api.mdx b/docs/content/references/iota-api.mdx index 9fd2bb0fa22..ac1d15e9f42 100644 --- a/docs/content/references/iota-api.mdx +++ b/docs/content/references/iota-api.mdx @@ -2,13 +2,13 @@ title: IOTA RPC --- -[//]: # (:::info) +:::info -[//]: # () -[//]: # (The IOTA RPC is upgrading from JSON-RPC to GraphQL. See [GraphQL for IOTA RPC](../developer/_graphql-rpc.mdx) for more information.) -[//]: # () -[//]: # (:::) +The IOTA RPC is upgrading from JSON-RPC to GraphQL. See [GraphQL for IOTA RPC](../developer/graphql-rpc.mdx) for more information. + + +::: _IOTAJSON_ is a JSON-based format with restrictions that allow IOTA to align JSON inputs more closely with Move call arguments. diff --git a/docs/content/references/_iota-graphql.mdx b/docs/content/references/iota-graphql.mdx similarity index 75% rename from docs/content/references/_iota-graphql.mdx rename to docs/content/references/iota-graphql.mdx index 6c60bcff812..1e1ca11bf4c 100644 --- a/docs/content/references/_iota-graphql.mdx +++ b/docs/content/references/iota-graphql.mdx @@ -5,7 +5,7 @@ description: GraphQL is a public service for the IOTA RPC that enables you to ef GraphQL for the IOTA RPC is a public service that enables interacting with the IOTA [network](https://iota.io/networkinfo). -To get started with GraphQL for the IOTA RPC, check out the [Getting Started](../developer/getting-started/_graphql-rpc.mdx) guide. If you'd like to learn more about the concepts used in the GraphQL service, check out the [GraphQL](../developer/_graphql-rpc.mdx) for IOTA RPC concepts page. +To get started with GraphQL for the IOTA RPC, check out the [Getting Started](../developer/getting-started/graphql-rpc.mdx) guide. If you'd like to learn more about the concepts used in the GraphQL service, check out the [GraphQL](../developer/graphql-rpc.mdx) for IOTA RPC concepts page. ## Key Types @@ -19,6 +19,6 @@ All GraphQL API elements are accessible via the left sidebar, the following are ## Related links -- [GraphQL migration](../developer/advanced/_graphql-migration.mdx): Migrating to GraphQL guides you through migrating IOTA RPC projects from JSON-RPC to GraphQL. -- [GraphQL quick-start](../developer/getting-started/_graphql-rpc.mdx): Querying IOTA RPC with GraphQL gets you started using GraphQL to query the IOTA RPC for on-chain data. -- [GraphQL concepts](../developer/_graphql-rpc.mdx): GraphQL for IOTA RPC examines the elements of GraphQL that you should know to get the most from the service. +- [GraphQL migration](../developer/advanced/graphql-migration.mdx): Migrating to GraphQL guides you through migrating IOTA RPC projects from JSON-RPC to GraphQL. +- [GraphQL quick-start](../developer/getting-started/graphql-rpc.mdx): Querying IOTA RPC with GraphQL gets you started using GraphQL to query the IOTA RPC for on-chain data. +- [GraphQL concepts](../developer/graphql-rpc.mdx): GraphQL for IOTA RPC examines the elements of GraphQL that you should know to get the most from the service. diff --git a/docs/content/sidebars/references.js b/docs/content/sidebars/references.js index 142c82dc1a0..72e04fe7835 100644 --- a/docs/content/sidebars/references.js +++ b/docs/content/sidebars/references.js @@ -18,7 +18,7 @@ const references = [ id: 'references/iota-api', }, items: [ - /*{ + { type: 'category', label: 'GraphQL', link: { @@ -31,7 +31,7 @@ const references = [ dirName: 'references/iota-api/iota-graphql/reference', }, ], - },*/ + }, { type: 'link', label: 'JSON-RPC', diff --git a/examples/custom-indexer/rust/README.md b/examples/custom-indexer/rust/README.md index 52804260008..ff88fc603b5 100644 --- a/examples/custom-indexer/rust/README.md +++ b/examples/custom-indexer/rust/README.md @@ -2,7 +2,7 @@ This is a complimentary example to the Iota Custom Indexer documentation. It demonstrates how to create a custom indexer for the Iota search engine. -See the [Iota Custom Indexer documentation](https://wiki.iota.org/guides/developer/advanced/custom-indexer) for more information. +See the [Iota Custom Indexer documentation](https://docs.iota.org/developer/advanced/custom-indexer) for more information. ## Prerequisites diff --git a/examples/tic-tac-toe/ui/README.md b/examples/tic-tac-toe/ui/README.md index 2a3dc86c2a4..cad40e908a2 100644 --- a/examples/tic-tac-toe/ui/README.md +++ b/examples/tic-tac-toe/ui/README.md @@ -22,7 +22,7 @@ Client dApp using the following tools: - [Vite](https://vitejs.dev/) for build tooling - [Radix UI](https://www.radix-ui.com/) for pre-built UI components - [ESLint](https://eslint.org/) -- [`@iota/dapp-kit`](https://wiki.iota.org/references/ts-sdk/dapp-kit) for connecting to +- [`@iota/dapp-kit`](https://docs.iota.org/references/ts-sdk/dapp-kit) for connecting to wallets and loading data - [pnpm](https://pnpm.io/) for package management diff --git a/external-crates/move/crates/move-analyzer/editors/code/README.md b/external-crates/move/crates/move-analyzer/editors/code/README.md index ca25dc39830..0c4b6749a7d 100644 --- a/external-crates/move/crates/move-analyzer/editors/code/README.md +++ b/external-crates/move/crates/move-analyzer/editors/code/README.md @@ -22,7 +22,7 @@ the pre-built move-analyzer binary is not available for your platform or if you binary stored in a different location. If you want to build and test Move code using the extension, you must install the `iota` binary on -your machine - see [here](https://wiki.iota.org/guides/developer/getting-started/iota-install) for +your machine - see [here](https://docs.iota.org/developer/getting-started/install-iota) for instructions. The extension assumes that the `iota` binary is in your system path, but you can set its custom location location using VSCode's settings (`⌘` + `,` on macOS, or use the menu item _Code > Preferences > Settings_). Search for the `move.iota.path` user setting, set it to the new location of @@ -41,7 +41,7 @@ This can be done in two steps: 1. Install the move-analyzer installation prerequisites for your platform. They are the same as prerequisites for Iota installation - for Linux, macOS and Windows these prerequisites and their installation instructions can be found - [here](https://wiki.iota.org/guides/developer/getting-started/iota-install#additional-prerequisites-by-operating-system) + [here](https://docs.iota.org/developer/getting-started/install-iota#additional-prerequisites-by-operating-system) 2. Invoke `cargo install --git https://github.com/iotaledger/iota iota-move-lsp` to install the `move-analyzer` language server in your Cargo binary directory, which is typically located in the `~/.cargo/bin` (macOS/Linux) or `C:\Users\USER\.cargo\bin` (Windows) directory. diff --git a/nre/helm/README.md b/nre/helm/README.md index 41b0f769623..d77e77806ad 100644 --- a/nre/helm/README.md +++ b/nre/helm/README.md @@ -67,7 +67,7 @@ _Resource Reccomendations_ ### Containers -**iota-indexer-writer** - Indexer writer syncs and indexes iota checkpoint data into a Postgres database. Checkpoint data can be pulled from a fullnode or a cloud provider hosted bucket. More info and available buckets can be found in iota [doc site](https://wiki.iota.org/guides/developer/advanced/custom-indexer#remote-reader). +**iota-indexer-writer** - Indexer writer syncs and indexes iota checkpoint data into a Postgres database. Checkpoint data can be pulled from a fullnode or a cloud provider hosted bucket. More info and available buckets can be found in iota [doc site](https://docs.iota.org/developer/advanced/custom-indexer#remote-reader). ### Resource Recommendations diff --git a/nre/validator_tool.md b/nre/validator_tool.md index 51b294e4e94..3c6c3291463 100644 --- a/nre/validator_tool.md +++ b/nre/validator_tool.md @@ -6,7 +6,7 @@ This document is focused on using Validator Tool. ## Preparation -1. Make sure you have completed all the [prerequisites](https://wiki.iota.org/devnet/build/install). +1. Make sure you have completed all the [prerequisites](https://docs.iota.org/developer/getting-started/install-iota#prerequisites). 2. Build the `iota` binary, which you will need for the genesis ceremony. This step can be done on any machine you like. It does not have to be done on the machine on which you will run the validator. @@ -35,7 +35,7 @@ This document is focused on using Validator Tool. b. `active_address` is correct in `client.yaml`. b. `iota.keystore` contains your account key pair. - If at this point you can't find where `client.yaml` or `iota.keystore` is or have other questions, read [Iota Client CLI tutorial](https://wiki.iota.org/devnet/build/cli-client). + If at this point you can't find where `client.yaml` or `iota.keystore` is or have other questions, read [Iota Client CLI tutorial](https://docs.iota.org/references/cli/client). ```bash $IOTA_BINARY client diff --git a/sdk/create-dapp/README.md b/sdk/create-dapp/README.md index 690bff2783e..43655d7126c 100644 --- a/sdk/create-dapp/README.md +++ b/sdk/create-dapp/README.md @@ -27,7 +27,7 @@ you including: - [Vite](https://vitejs.dev/) - [Radix UI](https://www.radix-ui.com/) - [ESLint](https://eslint.org/) -- [`@iota/dapp-kit`](https://wiki.iota.org/references/ts-sdk/dapp-kit) +- [`@iota/dapp-kit`](https://docs.iota.org/references/ts-sdk/dapp-kit) These templates are still new, and would love to get feedback and suggestions for improvements or future templates. Please open an issue on GitHub if you have any feedback. diff --git a/sdk/create-dapp/package.json b/sdk/create-dapp/package.json index 4ee9291df38..3a5c20fd272 100644 --- a/sdk/create-dapp/package.json +++ b/sdk/create-dapp/package.json @@ -2,6 +2,7 @@ "name": "@iota/create-dapp", "author": "IOTA Foundation ", "description": "A CLI for creating new IOTA dApps", + "homepage": "https://docs.iota.org/references/ts-sdk/typescript/", "version": "0.2.0", "license": "Apache-2.0", "files": [ diff --git a/sdk/create-dapp/templates/react-client-dapp/README.md b/sdk/create-dapp/templates/react-client-dapp/README.md index c2e02daefce..0ab6d299881 100644 --- a/sdk/create-dapp/templates/react-client-dapp/README.md +++ b/sdk/create-dapp/templates/react-client-dapp/README.md @@ -8,7 +8,7 @@ Client dApp using the following tools: - [Vite](https://vitejs.dev/) for build tooling - [Radix UI](https://www.radix-ui.com/) for pre-built UI components - [ESLint](https://eslint.org/) -- [`@iota/dapp-kit`](https://wiki.iota.org/references/ts-sdk/dapp-kit) for +- [`@iota/dapp-kit`](https://docs.iota.org/references/ts-sdk/dapp-kit) for connecting to wallets and loading data - [pnpm](https://pnpm.io/) for package management diff --git a/sdk/create-dapp/templates/react-e2e-counter/README.md b/sdk/create-dapp/templates/react-e2e-counter/README.md index a222ee66d02..7e7f648f195 100644 --- a/sdk/create-dapp/templates/react-e2e-counter/README.md +++ b/sdk/create-dapp/templates/react-e2e-counter/README.md @@ -8,20 +8,17 @@ Client dApp using the following tools: - [Vite](https://vitejs.dev/) for build tooling - [Radix UI](https://www.radix-ui.com/) for pre-built UI components - [ESLint](https://eslint.org/) for linting -- [`@iota/dapp-kit`](https://wiki.iota.org/references/ts-sdk/dapp-kit) for +- [`@iota/dapp-kit`](https://docs.iota.org/references/ts-sdk/dapp-kit) for connecting to wallets and loading data - [pnpm](https://pnpm.io/) for package management -For a full guide on how to build this dApp from scratch, visit this -[guide](http://wiki.iota.org/guides/developer/app-examples/e2e-counter#frontend). - ## Deploying your Move code ### Install IOTA cli Before deploying your move code, ensure that you have installed the IOTA CLI. You can follow the -[IOTA installation instruction](https://wiki.iota.org/build/install) to get +[IOTA installation instruction](https://docs.iota.org/developer/getting-started/install-iota) to get everything set up. This template uses `testnet` by default, so we'll need to set up a testnet diff --git a/sdk/dapp-kit/README.md b/sdk/dapp-kit/README.md index 57fb238d3db..8ee45dda9a2 100644 --- a/sdk/dapp-kit/README.md +++ b/sdk/dapp-kit/README.md @@ -4,7 +4,7 @@ The IOTA dApp Kit is a set of React components, hooks, and utilities that make i dApp for the IOTA ecosystem. It provides hooks and components for querying data from the IOTA blockchain, and connecting to IOTA wallets. -See https://wiki.iota.org/references/ts-sdk/typescript for full documentation +See https://docs.iota.org/references/ts-sdk/typescript for full documentation ### Core Features @@ -68,7 +68,7 @@ dApp up and running. To use our provided UI components, you will need to import the dApp Kit's CSS stylesheet into your dApp as shown below. For more information regarding customization options, check out the respective documentation pages for the components and -[themes](https://wiki.iota.org/references/ts-sdk/dapp-kit/themes). +[themes](https://docs.iota.org/references/ts-sdk/dapp-kit/themes). ```tsx import '@iota/dapp-kit/dist/index.css'; diff --git a/sdk/dapp-kit/package.json b/sdk/dapp-kit/package.json index c7e9c4b9fca..a2317e098c5 100644 --- a/sdk/dapp-kit/package.json +++ b/sdk/dapp-kit/package.json @@ -2,6 +2,7 @@ "name": "@iota/dapp-kit", "author": "IOTA Foundation ", "description": "A collection of React hooks and components for interacting with the IOTA blockchain and wallets.", + "homepage": "https://docs.iota.org/references/ts-sdk/dapp-kit/", "version": "0.3.0", "license": "Apache-2.0", "files": [ diff --git a/sdk/kiosk/README.md b/sdk/kiosk/README.md index 10bc36a2c7a..5c76569cb4c 100644 --- a/sdk/kiosk/README.md +++ b/sdk/kiosk/README.md @@ -3,6 +3,6 @@ This Kiosk SDK library provides different utilities to interact/create/manage a [Kiosk](https://github.com/iotaledger/iota/tree/main/kiosk). -[You can read the documentation and see examples by clicking here.](https://wiki.iota.org/references/ts-sdk/kiosk) +[You can read the documentation and see examples by clicking here.](https://docs.iota.org/references/ts-sdk/kiosk) -[If you are migrating from `0.6.x`, you can follow these instructions](https://wiki.iota.org/references/ts-sdk/kiosk/from-v1) +[If you are migrating from `0.6.x`, you can follow these instructions](https://docs.iota.org/references/ts-sdk/kiosk/from-v1) diff --git a/sdk/typescript/README.md b/sdk/typescript/README.md index 9aae6026a27..619edbb58c2 100644 --- a/sdk/typescript/README.md +++ b/sdk/typescript/README.md @@ -1,7 +1,7 @@ # Docs site For more complete docs, visit the -[IOTA TypeScript SDK docs](https://wiki.iota.org/references/ts-sdk/) +[IOTA TypeScript SDK docs](https://docs.iota.org/references/ts-sdk/typescript/) # IOTA TypeScript SDK @@ -126,7 +126,7 @@ await client.getCoins({ For local development, you can run `cargo run --bin --with-faucet --force-regenesis` to spin up a local network with a local validator, a fullnode, and a faucet server. Refer to -[this guide](https://wiki.iota.org/build/iota-local-network) for more information. +[this guide](https://docs.iota.org/developer/getting-started/local-network) for more information. ```typescript import { getFullnodeUrl, IotaClient } from '@iota/iota-sdk/client'; @@ -172,7 +172,7 @@ await requestIotaFromFaucetV0({ ## Writing APIs For a primer for building transactions, refer to -[this guide](https://wiki.iota.org/build/prog-trans-ts-sdk). +[this guide](https://docs.iota.org/references/ts-sdk/typescript/transaction-building/basics). ### Transfer Object diff --git a/sdk/typescript/package.json b/sdk/typescript/package.json index a5a599c9de8..663f6506736 100644 --- a/sdk/typescript/package.json +++ b/sdk/typescript/package.json @@ -2,6 +2,7 @@ "name": "@iota/iota-sdk", "author": "IOTA Foundation ", "description": "IOTA TypeScript API", + "homepage": "https://docs.iota.org/references/ts-sdk/typescript/", "version": "0.3.0", "license": "Apache-2.0", "sideEffects": false, diff --git a/sdk/wallet-standard/README.md b/sdk/wallet-standard/README.md index 5a8ebb4c274..83b89e24ea2 100644 --- a/sdk/wallet-standard/README.md +++ b/sdk/wallet-standard/README.md @@ -3,4 +3,4 @@ A suite of standard utilities for implementing wallets and libraries based on the [Wallet Standard](https://github.com/wallet-standard/wallet-standard/). -**Documentation:** https://wiki.iota.org/standards/wallet-standard +**Documentation:** https://docs.iota.org/developer/standards/wallet-standard