Skip to content

Commit 06e75fb

Browse files
committed
llms
1 parent 1b9a420 commit 06e75fb

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

llms.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,24 +313,28 @@ This section covers everything you need to know about building and implementing
313313
<div class="card">
314314
<a href="https://paritytech.github.io/polkadot-sdk/master/xcm_docs/index.html" target="_blank">
315315
<h2 class="title">Review the Polkadot SDK's XCM Documentation</h2>
316+
<hr>
316317
<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>
317318
</a>
318319
</div>
319320
<div class="card">
320321
<a href="/tutorials/interoperability/">
321322
<h2 class="title">Follow Step-by-Step Tutorials</h2>
323+
<hr>
322324
<p class="description">Enhance your XCM skills with step-by-step tutorials on building interoperability solutions on Polkadot SDK-based blockchains.</p>
323325
</a>
324326
</div>
325327
<div class="card">
326328
<a href="https://github.com/polkadot-fellows/xcm-format" target="_blank">
327329
<h2 class="title">Familiarize Yourself with the XCM Format</h2>
330+
<hr>
328331
<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>
329332
</a>
330333
</div>
331334
<div class="card">
332335
<a href="/develop/toolkit/interoperability/">
333336
<h2 class="title">Essential XCM Tools</h2>
337+
<hr>
334338
<p class="description">Explore essential tools for creating and integrating cross-chain solutions within the Polkadot ecosystem.</p>
335339
</a>
336340
</div>
@@ -3177,18 +3181,21 @@ The [FRAME directory](https://github.com/paritytech/polkadot-sdk/tree/{{dependen
31773181
<div class="card">
31783182
<a href="https://github.com/paritytech/polkadot-sdk/tree/{{dependencies.repositories.polkadot_sdk.version}}/substrate/frame" target="_blank">
31793183
<h2 class="title">FRAME Repository</h2>
3184+
<hr>
31803185
<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>
31813186
</a>
31823187
</div>
31833188
<div class="card">
31843189
<a href="https://paritytech.github.io/polkadot-sdk/master/polkadot_sdk_docs/polkadot_sdk/frame_runtime/index.html" target="_blank">
31853190
<h2 class="title">FRAME Rust docs</h2>
3191+
<hr>
31863192
<p class="description">Check out the Rust documentation for FRAME, Substrate's preferred framework for building runtimes.</p>
31873193
</a>
31883194
</div>
31893195
<div class="card">
31903196
<a href="https://libro.blockdeep.dev/index.html" target="_blank">
31913197
<h2 class="title">Polkadot SDK Best Practices</h2>
3198+
<hr>
31923199
<p class="description">Understand and address common issues that can arise in blockchain development when building with the Polkadot SDK.</p>
31933200
</a>
31943201
</div>
@@ -4108,6 +4115,7 @@ If you’re building a standalone blockchain (solochain) that won’t connect to
41084115
<div class="card">
41094116
<a href="https://paritytech.github.io/polkadot-sdk/master/staging_chain_spec_builder/index.html" target="_blank">
41104117
<h2 class="title">Check Out the Chain Spec Builder Docs</h2>
4118+
<hr>
41114119
<p class="description">Learn about Substrate’s chain spec builder utility.</p>
41124120
</a>
41134121
</div>
@@ -4769,12 +4777,14 @@ Learn how to maintain Polkadot SDK-based networks, focusing on runtime monitorin
47694777
<div class="card">
47704778
<a href="https://paritytech.github.io/polkadot-sdk/master/pallet_example_single_block_migrations/index.html" target="_blank">
47714779
<h2 class="title">Single Block Migration Example</h2>
4780+
<hr>
47724781
<p class="description">Check out an example pallet demonstrating best practices for writing single-block migrations while upgrading pallet storage.</p>
47734782
</a>
47744783
</div>
47754784
<div class="card">
47764785
<a href="https://paritytech.github.io/polkadot-sdk/master/pallet_example_single_block_migrations/index.html" target="_blank">
47774786
<h2 class="title">Client Telemetry Crate</h2>
4787+
<hr>
47784788
<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>
47794789
</a>
47804790
</div>
@@ -5686,12 +5696,14 @@ Through these guides, you'll learn to:
56865696
<div class="card">
56875697
<a href="https://paritytech.github.io/polkadot-sdk/master/sp_runtime/" target="_blank">
56885698
<h2 class="title">`sp_runtime` crate Rust docs</h2>
5699+
<hr>
56895700
<p class="description">Learn about Substrate Runtime primitives that enable communication between a Substrate blockchain's runtime and client.</p>
56905701
</a>
56915702
</div>
56925703
<div class="card">
56935704
<a href="https://github.com/Moonsong-Labs/moonwall" target="_blank">
56945705
<h2 class="title">Moonwall Testing Framework</h2>
5706+
<hr>
56955707
<p class="description">Moonwall is a comprehensive blockchain test framework for Substrate-based networks.</p>
56965708
</a>
56975709
</div>
@@ -7094,12 +7106,14 @@ Explore the powerful API libraries designed for interacting with the Polkadot ne
70947106
<div class="card">
70957107
<a href="/polkadot-protocol/basics/chain-data/">
70967108
<h2 class="title">Understand Chain Data</h2>
7109+
<hr>
70977110
<p class="description">Familiarize yourself with the data provided by the APIs, including available calls, events, types, and storage items.</p>
70987111
</a>
70997112
</div>
71007113
<div class="card">
71017114
<a href="/develop/networks/">
71027115
<h2 class="title">Network Configurations</h2>
7116+
<hr>
71037117
<p class="description">Obtain the necessary configurations and WSS endpoints to interact with the APIs on Polkadot networks.</p>
71047118
</a>
71057119
</div>
@@ -8259,12 +8273,14 @@ The Asset Transfer API is a library designed to streamline asset transfers for P
82598273
<div class="card">
82608274
<a href="https://github.com/paritytech/asset-transfer-api" target="_blank">
82618275
<h2 class="title">View the Source Code</h2>
8276+
<hr>
82628277
<p class="description">Explore the Asset Transfer API repository on GitHub to familiarize yourself with the source code.</p>
82638278
</a>
82648279
</div>
82658280
<div class="card">
82668281
<a href="https://github.com/paritytech/asset-transfer-api" target="_blank">
82678282
<h2 class="title">Learn Through Examples</h2>
8283+
<hr>
82688284
<p class="description">Check out the provided examples on GitHub to get a better understanding of how to implement the Asset Transfer API.</p>
82698285
</a>
82708286
</div>
@@ -10332,12 +10348,14 @@ Whether you're debugging an issue, testing new features, or exploring cross-chai
1033210348
<div class="card">
1033310349
<a href="https://github.com/AcalaNetwork/chopsticks/" target="_blank">
1033410350
<h2 class="title">Chopsticks Repository</h2>
10351+
<hr>
1033510352
<p class="description">View the official Chopsticks Github Repository. Check out the code, check out sample commands, and track issues and new releases.</p>
1033610353
</a>
1033710354
</div>
1033810355
<div class="card">
1033910356
<a href="/tutorials/polkadot-sdk/testing/fork-live-chains/">
1034010357
<h2 class="title">Fork Live Chains with Chopsticks</h2>
10358+
<hr>
1034110359
<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>
1034210360
</a>
1034310361
</div>
@@ -10377,6 +10395,7 @@ Forking a live chain creates a controlled environment that mirrors live network
1037710395
<div class="card">
1037810396
<a href="/tutorials/polkadot-sdk/testing/fork-live-chains/">
1037910397
<h2 class="title">Step-by-Step Tutorial on Forking Live Chains with Chopsticks</h2>
10398+
<hr>
1038010399
<p class="description">This tutorial walks you through how to fork live Polkadot SDK chains with Chopsticks. Configure forks, replay blocks, test XCM execution.</p>
1038110400
</a>
1038210401
</div>
@@ -10441,6 +10460,7 @@ Spawning a network provides a controlled environment to test and validate variou
1044110460
<div class="card">
1044210461
<a href="/tutorials/polkadot-sdk/testing/spawn-basic-chain/">
1044310462
<h2 class="title">Spawn a Chain with Zombienet</h2>
10463+
<hr>
1044410464
<p class="description">Learn to spawn, connect to and monitor a basic blockchain network with Zombienet, using customizable configurations for streamlined development and debugging.</p>
1044510465
</a>
1044610466
</div>
@@ -11484,6 +11504,7 @@ Whether you're building a new parachain or testing runtime upgrades, Zombienet p
1148411504
<div class="card">
1148511505
<a href="/tutorials/polkadot-sdk/testing/spawn-basic-chain/">
1148611506
<h2 class="title">Spawn a Chain with Zombienet Tutorial</h2>
11507+
<hr>
1148711508
<p class="description">Follow step-by-step instructions to spawn, connect to and monitor a basic blockchain network with Zombienet, using customizable configurations for streamlined development and debugging.</p>
1148811509
</a>
1148911510
</div>
@@ -12552,18 +12573,21 @@ Learn the requirements for setting up a Polkadot validator node, along with deta
1255212573
<div class="card">
1255312574
<a href="/infrastructure/staking-mechanics/" target="_blank">
1255412575
<h2 class="title">Explore Rewards, Offenses, and Slashes</h2>
12576+
<hr>
1255512577
<p class="description">Learn about Polkadot's offenses and slashing system, along with validator rewards, era points, and nominator payments.</p>
1255612578
</a>
1255712579
</div>
1255812580
<div class="card">
1255912581
<a href="https://nodes.web3.foundation/" target="_blank">
1256012582
<h2 class="title">Check Out the Decentralized Nodes Program</h2>
12583+
<hr>
1256112584
<p class="description">The Decentralized Nodes program aims to support Polkadot's security and decentralization by involving a diverse set of validators. Learn more and apply.</p>
1256212585
</a>
1256312586
</div>
1256412587
<div class="card">
1256512588
<a href="https://matrix.to/#/#polkadotvalidatorlounge:web3.foundation" target="_blank">
1256612589
<h2 class="title">Get Help and Connect With Experts</h2>
12590+
<hr>
1256712591
<p class="description">For help, connect with the Polkadot Validator Lounge on Element, where both the team and experienced validators are ready to assist.</p>
1256812592
</a>
1256912593
</div>
@@ -12594,24 +12618,28 @@ This section provides guidance on how to set up, activate, and deactivate your v
1259412618
<div class="card">
1259512619
<a href="/infrastructure/running-a-validator/requirements/" target="_blank">
1259612620
<h2 class="title">Review the Requirements</h2>
12621+
<hr>
1259712622
<p class="description">Explore the technical and system requirements for running a Polkadot validator, including setup, hardware, staking prerequisites, and security best practices.</p>
1259812623
</a>
1259912624
</div>
1260012625
<div class="card">
1260112626
<a href="/infrastructure/staking-mechanics/rewards-payout/" target="_blank">
1260212627
<h2 class="title">Learn About Staking Mechanics</h2>
12628+
<hr>
1260312629
<p class="description">Explore the staking mechanics in Polkadot, focusing on how they relate to validators, including offenses and slashes, as well as reward payouts.</p>
1260412630
</a>
1260512631
</div>
1260612632
<div class="card">
1260712633
<a href="/infrastructure/running-a-validator/operational-tasks/" target="_blank">
1260812634
<h2 class="title">Maintain Your Node</h2>
12635+
<hr>
1260912636
<p class="description">Learn how to manage your Polkadot validator node, including monitoring performance, running a backup validator for maintenance, and rotating keys.</p>
1261012637
</a>
1261112638
</div>
1261212639
<div class="card">
1261312640
<a href="https://matrix.to/#/#polkadotvalidatorlounge:web3.foundation" target="_blank">
1261412641
<h2 class="title">Get Help and Connect With Experts</h2>
12642+
<hr>
1261512643
<p class="description">For help, connect with the Polkadot Validator Lounge on Element, where both the team and experienced validators are ready to assist.</p>
1261612644
</a>
1261712645
</div>
@@ -13953,12 +13981,14 @@ Running a Polkadot validator node involves several key operational tasks to ensu
1395313981
<div class="card">
1395413982
<a href="https://telemetry.polkadot.io/" target="_blank">
1395513983
<h2 class="title">Access Real-Time Validator Metrics</h2>
13984+
<hr>
1395613985
<p class="description">Check the Polkadot Telemetry dashboard for real-time insights into node performance, including validator status, connectivity, block production, and software version to identify potential issues.</p>
1395713986
</a>
1395813987
</div>
1395913988
<div class="card">
1396013989
<a href="https://wiki.polkadot.network/docs/learn-runtime-upgrades#monitoring-runtime-changes" target="_blank">
1396113990
<h2 class="title">Stay Up to Date with Runtime Upgrades</h2>
13991+
<hr>
1396213992
<p class="description">Learn how to monitor the Polkadot network for upcoming upgrades, so you can prepare your validator node for any required updates or modifications.</p>
1396313993
</a>
1396413994
</div>
@@ -14197,18 +14227,21 @@ Gain a deep understanding of the staking mechanics in Polkadot, with a focus on
1419714227
<div class="card">
1419814228
<a href="https://research.web3.foundation/Polkadot/protocols/NPoS/Overview" target="_blank">
1419914229
<h2 class="title">Learn About Nominated Proof of Staking</h2>
14230+
<hr>
1420014231
<p class="description">Take a deeper dive into the fundamentals of Polkadot's Nominated Proof of Stake (NPoS) consensus mechanism.</p>
1420114232
</a>
1420214233
</div>
1420314234
<div class="card">
1420414235
<a href="https://research.web3.foundation/Polkadot/security/slashing/amounts" target="_blank">
1420514236
<h2 class="title">Dive Deep into Slashing Mechanisms</h2>
14237+
<hr>
1420614238
<p class="description">Read the Web3 Foundation's research article on slashing mechanisms for a comprehensive understanding of slashing, along with an in-depth examination of the offenses involved.</p>
1420714239
</a>
1420814240
</div>
1420914241
<div class="card">
1421014242
<a href="https://dune.com/substrate/polkadot-staking-validators#polkadot-staking-rewards" target="_blank">
1421114243
<h2 class="title">Review Validator Rewards Metrics</h2>
14244+
<hr>
1421214245
<p class="description">Check out Dune's Polkadot Staking Rewards dashboard for a detailed look at validator-specific metrics over time, such as daily staking rewards, nominators count, reward points, and more.</p>
1421314246
</a>
1421414247
</div>
@@ -18539,12 +18572,14 @@ Learn to establish and use cross-chain communication channels:
1853918572
<div class="card">
1854018573
<a href="/polkadot-protocol/basics/interoperability/">
1854118574
<h2 class="title">Learn about Polkadot's Interoperability</h2>
18575+
<hr>
1854218576
<p class="description">Explore the importance of interoperability in the Polkadot ecosystem, covering XCM, bridges, and cross-chain communication.</p>
1854318577
</a>
1854418578
</div>
1854518579
<div class="card">
1854618580
<a href="/develop/interoperability/">
1854718581
<h2 class="title">Explore Comprehensive XCM Guides</h2>
18582+
<hr>
1854818583
<p class="description">Looking for comprehensive guides and technical resources on XCM? Explore foundational concepts, advanced configuration, and best practices for building cross-chain solutions using XCM.</p>
1854918584
</a>
1855018585
</div>
@@ -18581,6 +18616,7 @@ To enable communication between parachains, explicit HRMP channels must be estab
1858118616
<div class="card">
1858218617
<a href="/develop/interoperability/xcm-channels/">
1858318618
<h2 class="title">Review HRMP Configurations and Extrinsics</h2>
18619+
<hr>
1858418620
<p class="description">Learn about the configurable parameters that govern HRMP channel behavior and the dispatchable extrinsics used to manage them.</p>
1858518621
</a>
1858618622
</div>
@@ -23922,6 +23958,7 @@ This section provides step-by-step tutorials to help you navigate the technical
2392223958
<div class="card">
2392323959
<a href="/polkadot-protocol/onchain-governance/" target="_blank">
2392423960
<h2 class="title">Learn More About Polkadot's OpenGov</h2>
23961+
<hr>
2392523962
<p class="description">Explore Polkadot's decentralized on-chain governance system, OpenGov, including how it works, the proposal process, and key info for developers.</p>
2392623963
</a>
2392723964
</div>
@@ -23960,6 +23997,7 @@ Follow these key milestones to guide you through parachain development. Each ste
2396023997
<div class="card">
2396123998
<a href="https://github.com/paritytech/polkadot-sdk" target="_blank">
2396223999
<h2 class="title">View the Polkadot SDK Source Code</h2>
24000+
<hr>
2396324001
<p class="description">Check out the Polkadot SDK repository on GitHub to explore the source code and stay updated on the latest releases.</p>
2396424002
</a>
2396524003
</div>
@@ -27305,6 +27343,7 @@ Through these tutorials, you'll learn how to manage cross-chain assets, includin
2730527343
<div class="card">
2730627344
<a href="/polkadot-protocol/architecture/system-chains/asset-hub/">
2730727345
<h2 class="title">Learn More About Asset Hub</h2>
27346+
<hr>
2730827347
<p class="description">Explore the fundamentals of Asset Hub, including managing on-chain assets, foreign asset integration, and using XCM for cross-chain asset transfers.</p>
2730927348
</a>
2731027349
</div>

0 commit comments

Comments
 (0)