Skip to content

Commit 1169b8b

Browse files
authored
Additional Resources Index Cards (#576)
* add divider to all the Additional Resources cards * llms * add divider * llms
1 parent 9e2e871 commit 1169b8b

File tree

24 files changed

+96
-0
lines changed

24 files changed

+96
-0
lines changed

develop/interoperability/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,28 @@ This section covers everything you need to know about building and implementing
2121
<div class="card">
2222
<a href="https://paritytech.github.io/polkadot-sdk/master/xcm_docs/index.html" target="_blank">
2323
<h2 class="title">Review the Polkadot SDK's XCM Documentation</h2>
24+
<hr>
2425
<p class="description">Dive into the official documentation to learn about the key components for supporting XCM in your parachain and enabling seamless cross-chain communication.</p>
2526
</a>
2627
</div>
2728
<div class="card">
2829
<a href="/tutorials/interoperability/">
2930
<h2 class="title">Follow Step-by-Step Tutorials</h2>
31+
<hr>
3032
<p class="description">Enhance your XCM skills with step-by-step tutorials on building interoperability solutions on Polkadot SDK-based blockchains.</p>
3133
</a>
3234
</div>
3335
<div class="card">
3436
<a href="https://github.com/polkadot-fellows/xcm-format" target="_blank">
3537
<h2 class="title">Familiarize Yourself with the XCM Format</h2>
38+
<hr>
3639
<p class="description">Gain a deeper understanding of the XCM format and structure, including any extra data it may need and what each part of a message means.</p>
3740
</a>
3841
</div>
3942
<div class="card">
4043
<a href="/develop/toolkit/interoperability/">
4144
<h2 class="title">Essential XCM Tools</h2>
45+
<hr>
4246
<p class="description">Explore essential tools for creating and integrating cross-chain solutions within the Polkadot ecosystem.</p>
4347
</a>
4448
</div>

develop/parachains/customize-parachain/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,21 @@ The [FRAME directory](https://github.com/paritytech/polkadot-sdk/tree/{{dependen
2020
<div class="card">
2121
<a href="https://github.com/paritytech/polkadot-sdk/tree/{{dependencies.repositories.polkadot_sdk.version}}/substrate/frame" target="_blank">
2222
<h2 class="title">FRAME Repository</h2>
23+
<hr>
2324
<p class="description">View the source code of the FRAME development environment that provides pallets you can use, modify, and extend to build the runtime logic to suit the needs of your blockchain.</p>
2425
</a>
2526
</div>
2627
<div class="card">
2728
<a href="https://paritytech.github.io/polkadot-sdk/master/polkadot_sdk_docs/polkadot_sdk/frame_runtime/index.html" target="_blank">
2829
<h2 class="title">FRAME Rust docs</h2>
30+
<hr>
2931
<p class="description">Check out the Rust documentation for FRAME, Substrate's preferred framework for building runtimes.</p>
3032
</a>
3133
</div>
3234
<div class="card">
3335
<a href="https://libro.blockdeep.dev/index.html" target="_blank">
3436
<h2 class="title">Polkadot SDK Best Practices</h2>
37+
<hr>
3538
<p class="description">Understand and address common issues that can arise in blockchain development when building with the Polkadot SDK.</p>
3639
</a>
3740
</div>

develop/parachains/deployment/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ If you’re building a standalone blockchain (solochain) that won’t connect to
7171
<div class="card">
7272
<a href="https://paritytech.github.io/polkadot-sdk/master/staging_chain_spec_builder/index.html" target="_blank">
7373
<h2 class="title">Check Out the Chain Spec Builder Docs</h2>
74+
<hr>
7475
<p class="description">Learn about Substrate’s chain spec builder utility.</p>
7576
</a>
7677
</div>

develop/parachains/maintenance/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ Learn how to maintain Polkadot SDK-based networks, focusing on runtime monitorin
1818
<div class="card">
1919
<a href="https://paritytech.github.io/polkadot-sdk/master/pallet_example_single_block_migrations/index.html" target="_blank">
2020
<h2 class="title">Single Block Migration Example</h2>
21+
<hr>
2122
<p class="description">Check out an example pallet demonstrating best practices for writing single-block migrations while upgrading pallet storage.</p>
2223
</a>
2324
</div>
2425
<div class="card">
2526
<a href="https://paritytech.github.io/polkadot-sdk/master/pallet_example_single_block_migrations/index.html" target="_blank">
2627
<h2 class="title">Client Telemetry Crate</h2>
28+
<hr>
2729
<p class="description">Check out the docs on Substrate's client telemetry, a part of Substrate that allows ingesting telemetry data with, for example, Polkadot telemetry.</p>
2830
</a>
2931
</div>

develop/parachains/testing/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ Through these guides, you'll learn to:
2525
<div class="card">
2626
<a href="https://paritytech.github.io/polkadot-sdk/master/sp_runtime/" target="_blank">
2727
<h2 class="title">`sp_runtime` crate Rust docs</h2>
28+
<hr>
2829
<p class="description">Learn about Substrate Runtime primitives that enable communication between a Substrate blockchain's runtime and client.</p>
2930
</a>
3031
</div>
3132
<div class="card">
3233
<a href="https://github.com/Moonsong-Labs/moonwall" target="_blank">
3334
<h2 class="title">Moonwall Testing Framework</h2>
35+
<hr>
3436
<p class="description">Moonwall is a comprehensive blockchain test framework for Substrate-based networks.</p>
3537
</a>
3638
</div>

develop/smart-contracts/evm/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,21 @@ Whether deploying existing Ethereum contracts on Polkadot or creating new applic
3434
<div class="card">
3535
<a href="https://docs.astar.network/docs/build/EVM/first-contract/" target="_blank">
3636
<h2 class="title">Deploy a Smart Contract on Astar</h2>
37+
<hr>
3738
<p class="description">Follow instructions to deploy your first contract on the Astar parachain using Remix.</p>
3839
</a>
3940
</div>
4041
<div class="card">
4142
<a href="https://docs.moonbeam.network/builders/ethereum/dev-env/remix/" target="_blank">
4243
<h2 class="title">Deploy a Smart Contract on Moonbeam</h2>
44+
<hr>
4345
<p class="description">Follow instructions to deploy your first contract on the Moonbeam parachain using Remix.</p>
4446
</a>
4547
</div>
4648
<div class="card">
4749
<a href="https://evmdocs.acala.network/tooling/remix-ide/deploying-a-smart-contract" target="_blank">
4850
<h2 class="title">Deploy a Smart Contract on Acala</h2>
51+
<hr>
4952
<p class="description">Follow instructions to deploy your first contract on the Acala parachain using Remix.</p>
5053
</a>
5154
</div>

develop/smart-contracts/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Throughout the pages in this section, you'll find resources and guides to help y
3737
<div class="card">
3838
<a href="https://use.ink/" target="_blank">
3939
<h2 class="title">View the Official ink! Documentation</h2>
40+
<hr>
4041
<p class="description">Learn everything you need to know about developing smart contracts with ink!.</p>
4142
</a>
4243
</div>

develop/toolkit/api-libraries/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ Explore the powerful API libraries designed for interacting with the Polkadot ne
1818
<div class="card">
1919
<a href="/polkadot-protocol/basics/chain-data/">
2020
<h2 class="title">Understand Chain Data</h2>
21+
<hr>
2122
<p class="description">Familiarize yourself with the data provided by the APIs, including available calls, events, types, and storage items.</p>
2223
</a>
2324
</div>
2425
<div class="card">
2526
<a href="/develop/networks/">
2627
<h2 class="title">Network Configurations</h2>
28+
<hr>
2729
<p class="description">Obtain the necessary configurations and WSS endpoints to interact with the APIs on Polkadot networks.</p>
2830
</a>
2931
</div>

develop/toolkit/interoperability/asset-transfer-api/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@ The Asset Transfer API is a library designed to streamline asset transfers for P
2626
<div class="card">
2727
<a href="https://github.com/paritytech/asset-transfer-api" target="_blank">
2828
<h2 class="title">View the Source Code</h2>
29+
<hr>
2930
<p class="description">Explore the Asset Transfer API repository on GitHub to familiarize yourself with the source code.</p>
3031
</a>
3132
</div>
3233
<div class="card">
3334
<a href="https://github.com/paritytech/asset-transfer-api" target="_blank">
3435
<h2 class="title">Learn Through Examples</h2>
36+
<hr>
3537
<p class="description">Check out the provided examples on GitHub to get a better understanding of how to implement the Asset Transfer API.</p>
3638
</a>
3739
</div>

develop/toolkit/parachains/fork-chains/chopsticks/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@ Whether you're debugging an issue, testing new features, or exploring cross-chai
2828
<div class="card">
2929
<a href="https://github.com/AcalaNetwork/chopsticks/" target="_blank">
3030
<h2 class="title">Chopsticks Repository</h2>
31+
<hr>
3132
<p class="description">View the official Chopsticks Github Repository. Check out the code, check out sample commands, and track issues and new releases.</p>
3233
</a>
3334
</div>
3435
<div class="card">
3536
<a href="/tutorials/polkadot-sdk/testing/fork-live-chains/">
3637
<h2 class="title">Fork Live Chains with Chopsticks</h2>
38+
<hr>
3739
<p class="description">Learn how to fork live Polkadot SDK chains with Chopsticks. Configure forks, replay blocks, test XCM, and interact programmatically or via UI.</p>
3840
</a>
3941
</div>

0 commit comments

Comments
 (0)