Skip to content

Commit b4b8b84

Browse files
committed
fix url and fresh llms
1 parent 4c850cb commit b4b8b84

19 files changed

+128
-128
lines changed

.ai/categories/basics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2247,7 +2247,7 @@ Before starting, make sure you have:
22472247
22482248
- [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.
22492249
- 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.
22512251
22522252
## Create the NFT Contract
22532253
@@ -6041,7 +6041,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
60416041
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
60426042
60436043
- **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.
60456045
- **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.
60466046
60476047
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.

.ai/categories/dapps.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2859,7 +2859,7 @@ Before starting, make sure you have:
28592859

28602860
- [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.
28612861
- 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.
28632863

28642864
## Create the NFT Contract
28652865

@@ -4089,7 +4089,7 @@ A mechanism for specifying the initial state of a blockchain. By convention, thi
40894089

40904090
## GRANDPA
40914091

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.
40934093

40944094
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}.
40954095

@@ -4225,7 +4225,7 @@ Learn more in the [storage items](https://paritytech.github.io/polkadot-sdk/mast
42254225

42264226
## Substrate
42274227

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}.
42294229

42304230
## Transaction
42314231

@@ -4252,7 +4252,7 @@ An execution architecture that allows for the efficient, platform-neutral expres
42524252
deterministic, machine-executable logic.
42534253

42544254
[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.
42564256

42574257
## Weight
42584258

@@ -9226,7 +9226,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
92269226
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
92279227

92289228
- **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.
92309230
- **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.
92319231

92329232
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.

.ai/categories/infrastructure.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2248,7 +2248,7 @@ Before starting, make sure you have:
22482248

22492249
- [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.
22502250
- 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.
22522252

22532253
## Create the NFT Contract
22542254

@@ -3951,7 +3951,7 @@ A mechanism for specifying the initial state of a blockchain. By convention, thi
39513951

39523952
## GRANDPA
39533953

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.
39553955

39563956
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}.
39573957

@@ -4087,7 +4087,7 @@ Learn more in the [storage items](https://paritytech.github.io/polkadot-sdk/mast
40874087

40884088
## Substrate
40894089

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}.
40914091

40924092
## Transaction
40934093

@@ -4114,7 +4114,7 @@ An execution architecture that allows for the efficient, platform-neutral expres
41144114
deterministic, machine-executable logic.
41154115

41164116
[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.
41184118

41194119
## Weight
41204120

@@ -9256,7 +9256,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
92569256
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
92579257

92589258
- **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.
92609260
- **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.
92619261

92629262
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.

.ai/categories/networks.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2248,7 +2248,7 @@ Before starting, make sure you have:
22482248

22492249
- [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.
22502250
- 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.
22522252

22532253
## Create the NFT Contract
22542254

@@ -3226,7 +3226,7 @@ A mechanism for specifying the initial state of a blockchain. By convention, thi
32263226

32273227
## GRANDPA
32283228

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.
32303230

32313231
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}.
32323232

@@ -3362,7 +3362,7 @@ Learn more in the [storage items](https://paritytech.github.io/polkadot-sdk/mast
33623362

33633363
## Substrate
33643364

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}.
33663366

33673367
## Transaction
33683368

@@ -3389,7 +3389,7 @@ An execution architecture that allows for the efficient, platform-neutral expres
33893389
deterministic, machine-executable logic.
33903390

33913391
[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.
33933393

33943394
## Weight
33953395

@@ -7281,7 +7281,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
72817281
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
72827282

72837283
- **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.
72857285
- **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.
72867286

72877287
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.

.ai/categories/parachains.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3460,7 +3460,7 @@ Before starting, make sure you have:
34603460

34613461
- [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.
34623462
- 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.
34643464

34653465
## Create the NFT Contract
34663466

@@ -5652,7 +5652,7 @@ It's important to note that each provider has specific requirements and associat
56525652
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:
56535653

56545654
- [Google Kubernetes Engine (GKE)](https://cloud.google.com/kubernetes-engine){target=\_blank}
5655-
- [Docker Desktop](https://docs.docker.com/desktop/features/kubernetes/){target=\_blank}
5655+
- [Docker Desktop](https://docs.docker.com/desktop/use-desktop/kubernetes/){target=\_blank}
56565656
- [kind](https://kind.sigs.k8s.io/){target=\_blank}
56575657

56585658
#### Requirements
@@ -6716,7 +6716,7 @@ A mechanism for specifying the initial state of a blockchain. By convention, thi
67166716

67176717
## GRANDPA
67186718

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.
67206720

67216721
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}.
67226722

@@ -6852,7 +6852,7 @@ Learn more in the [storage items](https://paritytech.github.io/polkadot-sdk/mast
68526852

68536853
## Substrate
68546854

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}.
68566856

68576857
## Transaction
68586858

@@ -6879,7 +6879,7 @@ An execution architecture that allows for the efficient, platform-neutral expres
68796879
deterministic, machine-executable logic.
68806880

68816881
[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.
68836883

68846884
## Weight
68856885

@@ -13768,7 +13768,7 @@ Polkadot is designed to support an ecosystem of parachains, rather than hosting
1376813768
This guide outlines the primary approaches to developing smart contracts in the Polkadot ecosystem:
1376913769

1377013770
- **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.
1377213772
- **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.
1377313773

1377413774
You'll explore the key differences between these development paths, along with considerations for parachain developers integrating smart contract functionality.

0 commit comments

Comments
 (0)