You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .ai/categories/basics.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2247,7 +2247,7 @@ Before starting, make sure you have:
2247
2247
2248
2248
- [Talisman](https://talisman.xyz/){target=\_blank} installed and connected to the Polkadot Hub TestNet. Check the [Connect to Polkadot](/develop/smart-contracts/connect-to-polkadot/){target=\_blank} guide for more information.
2249
2249
- A funded account with some PAS tokens (you can get them from the [Faucet](https://faucet.polkadot.io/?parachain=1111){target=\_blank}, noting that the faucet imposes a daily token limit, which may require multiple requests to obtain sufficient funds for testing).
2250
-
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
2250
+
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://www.soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
2251
2251
2252
2252
## Create the NFT Contract
2253
2253
@@ -6041,7 +6041,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
6041
6041
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
6042
6042
6043
6043
- **PolkaVM-compatible contracts**: Support Solidity and any language that compiles down to RISC-V while maintaining compatibility with Ethereum based tools.
6044
-
- **EVM-compatible contracts**: Support languages like [Solidity](https://soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
6044
+
- **EVM-compatible contracts**: Support languages like [Solidity](https://www.soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
6045
6045
- **Wasm-based smart contracts**: Using [ink!](https://use.ink/){target=\_blank}, a Rust-based embedded domain-specific language (eDSL), enabling developers to leverage Rust’s safety and tooling.
6046
6046
6047
6047
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.
Copy file name to clipboardExpand all lines: .ai/categories/dapps.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2859,7 +2859,7 @@ Before starting, make sure you have:
2859
2859
2860
2860
- [Talisman](https://talisman.xyz/){target=\_blank} installed and connected to the Polkadot Hub TestNet. Check the [Connect to Polkadot](/develop/smart-contracts/connect-to-polkadot/){target=\_blank} guide for more information.
2861
2861
- A funded account with some PAS tokens (you can get them from the [Faucet](https://faucet.polkadot.io/?parachain=1111){target=\_blank}, noting that the faucet imposes a daily token limit, which may require multiple requests to obtain sufficient funds for testing).
2862
-
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
2862
+
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://www.soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
2863
2863
2864
2864
## Create the NFT Contract
2865
2865
@@ -4089,7 +4089,7 @@ A mechanism for specifying the initial state of a blockchain. By convention, thi
4089
4089
4090
4090
## GRANDPA
4091
4091
4092
-
A deterministic finality mechanism for blockchains that is implemented in the [Rust](https://www.rust-lang.org/){target=\_blank} programming language.
4092
+
A deterministic finality mechanism for blockchains that is implemented in the [Rust](https://rust-lang.org/){target=\_blank} programming language.
4093
4093
4094
4094
The [formal specification](https://github.com/w3f/consensus/blob/master/pdf/grandpa-old.pdf){target=\_blank} is maintained by the [Web3 Foundation](https://web3.foundation/){target=\_blank}.
4095
4095
@@ -4225,7 +4225,7 @@ Learn more in the [storage items](https://paritytech.github.io/polkadot-sdk/mast
4225
4225
4226
4226
## Substrate
4227
4227
4228
-
A flexible framework for building modular, efficient, and upgradeable blockchains. Substrate is written in the [Rust](https://www.rust-lang.org/){target=\_blank} programming language and is maintained by [Parity Technologies](https://www.parity.io/){target=\_blank}.
4228
+
A flexible framework for building modular, efficient, and upgradeable blockchains. Substrate is written in the [Rust](https://rust-lang.org/){target=\_blank} programming language and is maintained by [Parity Technologies](https://www.parity.io/){target=\_blank}.
4229
4229
4230
4230
## Transaction
4231
4231
@@ -4252,7 +4252,7 @@ An execution architecture that allows for the efficient, platform-neutral expres
4252
4252
deterministic, machine-executable logic.
4253
4253
4254
4254
[Wasm](https://webassembly.org/){target=\_blank} can be compiled from many languages, including
4255
-
the [Rust](https://www.rust-lang.org/){target=\_blank} programming language. Polkadot SDK-based chains use a Wasm binary to provide portable [runtimes](#runtime) that can be included as part of the chain's state.
4255
+
the [Rust](https://rust-lang.org/){target=\_blank} programming language. Polkadot SDK-based chains use a Wasm binary to provide portable [runtimes](#runtime) that can be included as part of the chain's state.
4256
4256
4257
4257
## Weight
4258
4258
@@ -9226,7 +9226,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
9226
9226
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
9227
9227
9228
9228
- **PolkaVM-compatible contracts**: Support Solidity and any language that compiles down to RISC-V while maintaining compatibility with Ethereum based tools.
9229
-
- **EVM-compatible contracts**: Support languages like [Solidity](https://soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
9229
+
- **EVM-compatible contracts**: Support languages like [Solidity](https://www.soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
9230
9230
- **Wasm-based smart contracts**: Using [ink!](https://use.ink/){target=\_blank}, a Rust-based embedded domain-specific language (eDSL), enabling developers to leverage Rust’s safety and tooling.
9231
9231
9232
9232
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.
Copy file name to clipboardExpand all lines: .ai/categories/infrastructure.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2248,7 +2248,7 @@ Before starting, make sure you have:
2248
2248
2249
2249
- [Talisman](https://talisman.xyz/){target=\_blank} installed and connected to the Polkadot Hub TestNet. Check the [Connect to Polkadot](/develop/smart-contracts/connect-to-polkadot/){target=\_blank} guide for more information.
2250
2250
- A funded account with some PAS tokens (you can get them from the [Faucet](https://faucet.polkadot.io/?parachain=1111){target=\_blank}, noting that the faucet imposes a daily token limit, which may require multiple requests to obtain sufficient funds for testing).
2251
-
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
2251
+
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://www.soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
2252
2252
2253
2253
## Create the NFT Contract
2254
2254
@@ -3951,7 +3951,7 @@ A mechanism for specifying the initial state of a blockchain. By convention, thi
3951
3951
3952
3952
## GRANDPA
3953
3953
3954
-
A deterministic finality mechanism for blockchains that is implemented in the [Rust](https://www.rust-lang.org/){target=\_blank} programming language.
3954
+
A deterministic finality mechanism for blockchains that is implemented in the [Rust](https://rust-lang.org/){target=\_blank} programming language.
3955
3955
3956
3956
The [formal specification](https://github.com/w3f/consensus/blob/master/pdf/grandpa-old.pdf){target=\_blank} is maintained by the [Web3 Foundation](https://web3.foundation/){target=\_blank}.
3957
3957
@@ -4087,7 +4087,7 @@ Learn more in the [storage items](https://paritytech.github.io/polkadot-sdk/mast
4087
4087
4088
4088
## Substrate
4089
4089
4090
-
A flexible framework for building modular, efficient, and upgradeable blockchains. Substrate is written in the [Rust](https://www.rust-lang.org/){target=\_blank} programming language and is maintained by [Parity Technologies](https://www.parity.io/){target=\_blank}.
4090
+
A flexible framework for building modular, efficient, and upgradeable blockchains. Substrate is written in the [Rust](https://rust-lang.org/){target=\_blank} programming language and is maintained by [Parity Technologies](https://www.parity.io/){target=\_blank}.
4091
4091
4092
4092
## Transaction
4093
4093
@@ -4114,7 +4114,7 @@ An execution architecture that allows for the efficient, platform-neutral expres
4114
4114
deterministic, machine-executable logic.
4115
4115
4116
4116
[Wasm](https://webassembly.org/){target=\_blank} can be compiled from many languages, including
4117
-
the [Rust](https://www.rust-lang.org/){target=\_blank} programming language. Polkadot SDK-based chains use a Wasm binary to provide portable [runtimes](#runtime) that can be included as part of the chain's state.
4117
+
the [Rust](https://rust-lang.org/){target=\_blank} programming language. Polkadot SDK-based chains use a Wasm binary to provide portable [runtimes](#runtime) that can be included as part of the chain's state.
4118
4118
4119
4119
## Weight
4120
4120
@@ -9256,7 +9256,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
9256
9256
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
9257
9257
9258
9258
- **PolkaVM-compatible contracts**: Support Solidity and any language that compiles down to RISC-V while maintaining compatibility with Ethereum based tools.
9259
-
- **EVM-compatible contracts**: Support languages like [Solidity](https://soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
9259
+
- **EVM-compatible contracts**: Support languages like [Solidity](https://www.soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
9260
9260
- **Wasm-based smart contracts**: Using [ink!](https://use.ink/){target=\_blank}, a Rust-based embedded domain-specific language (eDSL), enabling developers to leverage Rust’s safety and tooling.
9261
9261
9262
9262
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.
Copy file name to clipboardExpand all lines: .ai/categories/networks.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2248,7 +2248,7 @@ Before starting, make sure you have:
2248
2248
2249
2249
- [Talisman](https://talisman.xyz/){target=\_blank} installed and connected to the Polkadot Hub TestNet. Check the [Connect to Polkadot](/develop/smart-contracts/connect-to-polkadot/){target=\_blank} guide for more information.
2250
2250
- A funded account with some PAS tokens (you can get them from the [Faucet](https://faucet.polkadot.io/?parachain=1111){target=\_blank}, noting that the faucet imposes a daily token limit, which may require multiple requests to obtain sufficient funds for testing).
2251
-
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
2251
+
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://www.soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
2252
2252
2253
2253
## Create the NFT Contract
2254
2254
@@ -3226,7 +3226,7 @@ A mechanism for specifying the initial state of a blockchain. By convention, thi
3226
3226
3227
3227
## GRANDPA
3228
3228
3229
-
A deterministic finality mechanism for blockchains that is implemented in the [Rust](https://www.rust-lang.org/){target=\_blank} programming language.
3229
+
A deterministic finality mechanism for blockchains that is implemented in the [Rust](https://rust-lang.org/){target=\_blank} programming language.
3230
3230
3231
3231
The [formal specification](https://github.com/w3f/consensus/blob/master/pdf/grandpa-old.pdf){target=\_blank} is maintained by the [Web3 Foundation](https://web3.foundation/){target=\_blank}.
3232
3232
@@ -3362,7 +3362,7 @@ Learn more in the [storage items](https://paritytech.github.io/polkadot-sdk/mast
3362
3362
3363
3363
## Substrate
3364
3364
3365
-
A flexible framework for building modular, efficient, and upgradeable blockchains. Substrate is written in the [Rust](https://www.rust-lang.org/){target=\_blank} programming language and is maintained by [Parity Technologies](https://www.parity.io/){target=\_blank}.
3365
+
A flexible framework for building modular, efficient, and upgradeable blockchains. Substrate is written in the [Rust](https://rust-lang.org/){target=\_blank} programming language and is maintained by [Parity Technologies](https://www.parity.io/){target=\_blank}.
3366
3366
3367
3367
## Transaction
3368
3368
@@ -3389,7 +3389,7 @@ An execution architecture that allows for the efficient, platform-neutral expres
3389
3389
deterministic, machine-executable logic.
3390
3390
3391
3391
[Wasm](https://webassembly.org/){target=\_blank} can be compiled from many languages, including
3392
-
the [Rust](https://www.rust-lang.org/){target=\_blank} programming language. Polkadot SDK-based chains use a Wasm binary to provide portable [runtimes](#runtime) that can be included as part of the chain's state.
3392
+
the [Rust](https://rust-lang.org/){target=\_blank} programming language. Polkadot SDK-based chains use a Wasm binary to provide portable [runtimes](#runtime) that can be included as part of the chain's state.
3393
3393
3394
3394
## Weight
3395
3395
@@ -7281,7 +7281,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
7281
7281
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
7282
7282
7283
7283
- **PolkaVM-compatible contracts**: Support Solidity and any language that compiles down to RISC-V while maintaining compatibility with Ethereum based tools.
7284
-
- **EVM-compatible contracts**: Support languages like [Solidity](https://soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
7284
+
- **EVM-compatible contracts**: Support languages like [Solidity](https://www.soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
7285
7285
- **Wasm-based smart contracts**: Using [ink!](https://use.ink/){target=\_blank}, a Rust-based embedded domain-specific language (eDSL), enabling developers to leverage Rust’s safety and tooling.
7286
7286
7287
7287
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.
Copy file name to clipboardExpand all lines: .ai/categories/parachains.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3460,7 +3460,7 @@ Before starting, make sure you have:
3460
3460
3461
3461
- [Talisman](https://talisman.xyz/){target=\_blank} installed and connected to the Polkadot Hub TestNet. Check the [Connect to Polkadot](/develop/smart-contracts/connect-to-polkadot/){target=\_blank} guide for more information.
3462
3462
- A funded account with some PAS tokens (you can get them from the [Faucet](https://faucet.polkadot.io/?parachain=1111){target=\_blank}, noting that the faucet imposes a daily token limit, which may require multiple requests to obtain sufficient funds for testing).
3463
-
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
3463
+
- Basic understanding of Solidity and NFTs, see the [Solidity Basics](https://www.soliditylang.org/){target=\_blank} and the [NFT Overview](https://ethereum.org/nft/){target=\_blank} guides for more details.
3464
3464
3465
3465
## Create the NFT Contract
3466
3466
@@ -5652,7 +5652,7 @@ It's important to note that each provider has specific requirements and associat
5652
5652
Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services. Zombienet is designed to be compatible with a variety of Kubernetes clusters, including:
@@ -6716,7 +6716,7 @@ A mechanism for specifying the initial state of a blockchain. By convention, thi
6716
6716
6717
6717
## GRANDPA
6718
6718
6719
-
A deterministic finality mechanism for blockchains that is implemented in the [Rust](https://www.rust-lang.org/){target=\_blank} programming language.
6719
+
A deterministic finality mechanism for blockchains that is implemented in the [Rust](https://rust-lang.org/){target=\_blank} programming language.
6720
6720
6721
6721
The [formal specification](https://github.com/w3f/consensus/blob/master/pdf/grandpa-old.pdf){target=\_blank} is maintained by the [Web3 Foundation](https://web3.foundation/){target=\_blank}.
6722
6722
@@ -6852,7 +6852,7 @@ Learn more in the [storage items](https://paritytech.github.io/polkadot-sdk/mast
6852
6852
6853
6853
## Substrate
6854
6854
6855
-
A flexible framework for building modular, efficient, and upgradeable blockchains. Substrate is written in the [Rust](https://www.rust-lang.org/){target=\_blank} programming language and is maintained by [Parity Technologies](https://www.parity.io/){target=\_blank}.
6855
+
A flexible framework for building modular, efficient, and upgradeable blockchains. Substrate is written in the [Rust](https://rust-lang.org/){target=\_blank} programming language and is maintained by [Parity Technologies](https://www.parity.io/){target=\_blank}.
6856
6856
6857
6857
## Transaction
6858
6858
@@ -6879,7 +6879,7 @@ An execution architecture that allows for the efficient, platform-neutral expres
6879
6879
deterministic, machine-executable logic.
6880
6880
6881
6881
[Wasm](https://webassembly.org/){target=\_blank} can be compiled from many languages, including
6882
-
the [Rust](https://www.rust-lang.org/){target=\_blank} programming language. Polkadot SDK-based chains use a Wasm binary to provide portable [runtimes](#runtime) that can be included as part of the chain's state.
6882
+
the [Rust](https://rust-lang.org/){target=\_blank} programming language. Polkadot SDK-based chains use a Wasm binary to provide portable [runtimes](#runtime) that can be included as part of the chain's state.
6883
6883
6884
6884
## Weight
6885
6885
@@ -13768,7 +13768,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
13768
13768
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
13769
13769
13770
13770
- **PolkaVM-compatible contracts**: Support Solidity and any language that compiles down to RISC-V while maintaining compatibility with Ethereum based tools.
13771
-
- **EVM-compatible contracts**: Support languages like [Solidity](https://soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
13771
+
- **EVM-compatible contracts**: Support languages like [Solidity](https://www.soliditylang.org/){target=\_blank} and [Vyper](https://vyperlang.org/){target=\_blank}, offering compatibility with popular Ethereum tools and wallets.
13772
13772
- **Wasm-based smart contracts**: Using [ink!](https://use.ink/){target=\_blank}, a Rust-based embedded domain-specific language (eDSL), enabling developers to leverage Rust’s safety and tooling.
13773
13773
13774
13774
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.
0 commit comments