Skip to content

Commit

Permalink
Update client lib links
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Electron committed Sep 27, 2022
1 parent 9ed8e91 commit 239a480
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion next/develop/nodes/explanations/nodes_101.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Nodes come with two sets of low-level APIs:

:::note

Developers do not need to communicate with nodes using a mentioned low-level API. Developers can leverage the [iota client libraries](/iota.rs/develop/libraries/overview) that provide a high-level abstraction to all features IOTA nodes provide, either on HTTP API level or Event API level.
Developers do not need to communicate with nodes using a mentioned low-level API. Developers can leverage the [iota client libraries](/iota.rs/libraries/overview) that provide a high-level abstraction to all features IOTA nodes provide, either on HTTP API level or Event API level.

:::

Expand Down
4 changes: 2 additions & 2 deletions next/develop/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ module.exports = {
{
label: 'Client',
type: 'link',
href: '/iota.rs/develop/welcome',
href: '/iota.rs/welcome',
},
{
label: 'Wallet.rs',
type: 'link',
href: '/wallet.rs/develop/welcome',
href: '/wallet.rs/welcome',
},
{
label: 'Client Typescript',
Expand Down
4 changes: 2 additions & 2 deletions next/develop/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Welcome to the Developer Section. Here you will find all information to start de
- [WASP CLI](/smart-contracts/guide/chains_and_nodes/wasp-cli)
- [Schema Tool](/smart-contracts/guide/schema)
- Libraries
- [Client.rs](/iota.rs/develop/welcome)
- [Wallet.rs](/wallet.rs/develop/welcome)
- [Client.rs](/iota.rs/welcome)
- [Wallet.rs](/wallet.rs/welcome)
- [Client.js](/iotajs/welcome)
- [Stronghold](/stronghold.rs/welcome)
- Node Software
Expand Down
2 changes: 1 addition & 1 deletion shimmer/develop/nodes/explanations/nodes_101.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Nodes come with two sets of low-level APIs:

:::note

Developers do not need to communicate with nodes using a mentioned low-level API. Developers can leverage the [iota client libraries](/iota.rs/develop/libraries/overview) that provide a high-level abstraction to all features IOTA nodes provide, either on HTTP API level or Event API level.
Developers do not need to communicate with nodes using a mentioned low-level API. Developers can leverage the [iota client libraries](/iota.rs/libraries/overview) that provide a high-level abstraction to all features IOTA nodes provide, either on HTTP API level or Event API level.

:::

Expand Down
4 changes: 2 additions & 2 deletions shimmer/develop/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ module.exports = {
{
label: 'Client',
type: 'link',
href: '/iota.rs/develop/welcome',
href: '/iota.rs/welcome',
},
{
label: 'Wallet.rs',
type: 'link',
href: '/wallet.rs/develop/welcome',
href: '/wallet.rs/welcome',
},
{
label: 'Client Typescript',
Expand Down
4 changes: 2 additions & 2 deletions shimmer/develop/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Welcome to the Developer Section. Here you will find all information to start de
- [WASP CLI](/smart-contracts/guide/chains_and_nodes/wasp-cli)
- [Schema Tool](/smart-contracts/guide/schema)
- Libraries
- [Client.rs](/iota.rs/develop/welcome)
- [Wallet.rs](/wallet.rs/develop/welcome)
- [Client.rs](/iota.rs/welcome)
- [Wallet.rs](/wallet.rs/welcome)
- [Client.js](/iotajs/welcome)
- [Stronghold](/stronghold.rs/welcome)
- Node Software
Expand Down
24 changes: 12 additions & 12 deletions src/components/next/HomeLayout/CoreLibrariesSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,33 +36,33 @@ const LibrariesSection: FC = () => (
</div>
<Languages
languages={{
Rust: '/iota.rs/develop/libraries/rust/getting_started',
NodeJS: '/iota.rs/develop/libraries/nodejs/getting_started',
Python: '/iota.rs/develop/libraries/python/getting_started',
Java: '/iota.rs/develop/libraries/java/getting_started',
Rust: '/iota.rs/libraries/rust/getting_started',
NodeJS: '/iota.rs/libraries/nodejs/getting_started',
Python: '/iota.rs/libraries/python/getting_started',
Java: '/iota.rs/libraries/java/getting_started',
}}
/>
</div>
<h3 className='libraries__header'>Client</h3>
<ul className='libraries__features'>
<li className='libraries__feature'>
<Link to='/iota.rs/develop/examples/get_info'>
<Link to='/iota.rs/examples/get_info'>
Interact with the IOTA network
</Link>
</li>
<li className='libraries__feature'>
<Link to='/iota.rs/develop/examples/data_message'>
<Link to='/iota.rs/examples/data_message'>
Send a data message
</Link>
</li>
<li className='libraries__feature'>
<Link to='/iota.rs/develop/explanations/messages_payloads_and_transactions'>
<Link to='/iota.rs/explanations/messages_payloads_and_transactions'>
Learn about transactions
</Link>
</li>
</ul>
<Link
to='/iota.rs/develop/welcome'
to='/iota.rs/welcome'
className='libraries__button button button--outline button--primary'
>
Get started
Expand All @@ -77,9 +77,9 @@ const LibrariesSection: FC = () => (
</div>
<Languages
languages={{
Rust: '/wallet.rs/develop/libraries/rust/getting_started',
NodeJS: '/wallet.rs/develop/libraries/nodejs/getting_started',
Python: '/wallet.rs/develop/libraries/python/getting_started',
Rust: '/wallet.rs/libraries/rust/getting_started',
NodeJS: '/wallet.rs/libraries/nodejs/getting_started',
Python: '/wallet.rs/libraries/python/getting_started',
}}
/>
</div>
Expand All @@ -102,7 +102,7 @@ const LibrariesSection: FC = () => (
</li>
</ul>
<Link
to='/wallet.rs/develop/welcome'
to='/wallet.rs/welcome'
className='libraries__button button button--outline button--primary'
>
Integrate a wallet
Expand Down
24 changes: 12 additions & 12 deletions src/components/shimmer/HomeLayout/CoreLibrariesSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,33 +36,33 @@ const LibrariesSection: FC = () => (
</div>
<Languages
languages={{
Rust: '/iota.rs/develop/libraries/rust/getting_started',
NodeJS: '/iota.rs/develop/libraries/nodejs/getting_started',
Python: '/iota.rs/develop/libraries/python/getting_started',
Java: '/iota.rs/develop/libraries/java/getting_started',
Rust: '/iota.rs/libraries/rust/getting_started',
NodeJS: '/iota.rs/libraries/nodejs/getting_started',
Python: '/iota.rs/libraries/python/getting_started',
Java: '/iota.rs/libraries/java/getting_started',
}}
/>
</div>
<h3 className='libraries__header'>Client</h3>
<ul className='libraries__features'>
<li className='libraries__feature'>
<Link to='/iota.rs/develop/examples/get_info'>
<Link to='/iota.rs/examples/get_info'>
Interact with the IOTA network
</Link>
</li>
<li className='libraries__feature'>
<Link to='/iota.rs/develop/examples/data_message'>
<Link to='/iota.rs/examples/data_message'>
Send a data message
</Link>
</li>
<li className='libraries__feature'>
<Link to='/iota.rs/develop/explanations/messages_payloads_and_transactions'>
<Link to='/iota.rs/explanations/messages_payloads_and_transactions'>
Learn about transactions
</Link>
</li>
</ul>
<Link
to='/iota.rs/develop/welcome'
to='/iota.rs/welcome'
className='libraries__button button button--outline button--primary'
>
Get started
Expand All @@ -77,9 +77,9 @@ const LibrariesSection: FC = () => (
</div>
<Languages
languages={{
Rust: '/wallet.rs/develop/libraries/rust/getting_started',
NodeJS: '/wallet.rs/develop/libraries/nodejs/getting_started',
Python: '/wallet.rs/develop/libraries/python/getting_started',
Rust: '/wallet.rs/libraries/rust/getting_started',
NodeJS: '/wallet.rs/libraries/nodejs/getting_started',
Python: '/wallet.rs/libraries/python/getting_started',
}}
/>
</div>
Expand All @@ -102,7 +102,7 @@ const LibrariesSection: FC = () => (
</li>
</ul>
<Link
to='/wallet.rs/develop/welcome'
to='/wallet.rs/welcome'
className='libraries__button button button--outline button--primary'
>
Integrate a wallet
Expand Down

0 comments on commit 239a480

Please sign in to comment.