Skip to content

Commit 91a7441

Browse files
committed
Apply suggestions
1 parent 06b7a15 commit 91a7441

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

develop/parachains/customize-parachain/add-smart-contract-functionality.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Now that you understand how to enable smart contract functionality in your block
4242

4343
---
4444

45-
Learn how developers can build smart contracts on Polkadot by leveraging either Wasm/ink! or EVM contracts across many parachains.
45+
Learn how developers can build smart contracts on Polkadot by leveraging the PolkaVM, Wasm/ink! or EVM contracts across many parachains.
4646

4747
[:octicons-arrow-right-24: Reference](/develop/smart-contracts/overview/)
4848

@@ -52,14 +52,14 @@ Now that you understand how to enable smart contract functionality in your block
5252

5353
Learn to build Wasm smart contracts with ink!, a Rust-based eDSL. Explore installation, contract structure, and key features.
5454

55-
[:octicons-arrow-right-24: Reference](/develop/smart-contracts/wasm-ink/)
55+
[:octicons-arrow-right-24: Reference](/develop/smart-contracts/overview#wasm-ink)
5656

5757
- <span class="badge guide">Guide</span> __EVM Contracts__
5858

5959
---
6060

6161
Learn how Polkadot parachains such as Moonbeam, Astar, Acala, and Manta leverage the Ethereum Virtual Machine (EVM) and integrate it into their parachains.
6262

63-
[:octicons-arrow-right-24: Reference](/develop/smart-contracts/evm/)
63+
[:octicons-arrow-right-24: Reference](/develop/smart-contracts/overview#parachain-contracts)
6464

6565
</div>

develop/parachains/deployment/coretime-renewal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ To determine your parachain's sovereign account address, you can:
8181

8282
- For sibling chains - `0x7369626c` (decodes to `b"sibl"`)
8383

84-
2. Encode your parachain ID as a u32 [SCALE](https://docs.polkadot.com/polkadot-protocol/basics/data-encoding/#data-types){target=\_blank} value:
84+
2. Encode your parachain ID as a u32 [SCALE](/polkadot-protocol/parachain-basics/data-encoding#data-types){target=\_blank} value:
8585

8686
- For parachain 2000, this would be `d0070000`
8787

develop/parachains/maintenance/unlock-parachain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ You can identify your parachain's sovereign account using either of these method
9292

9393
- For parent/child chains use the prefix `0x70617261` (which decodes to `b"para"`)
9494
95-
2. Encode your parachain ID as a u32 [SCALE](/polkadot-protocol/basics/data-encoding/#data-types){target=\_blank} value:
95+
2. Encode your parachain ID as a u32 [SCALE](/polkadot-protocol/parachain-basics/data-encoding#data-types){target=\_blank} value:
9696

9797
- For parachain 2006, this would be `d6070000`
9898

develop/smart-contracts/libraries/ethers-js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ With the provider set up, you can start querying the blockchain. For instance, t
101101

102102
--8<-- 'text/smart-contracts/code-size.md'
103103

104-
The `revive` compiler transforms Solidity smart contracts into [PolkaVM](/develop/smart-contracts/native-evm-contracts/#polkavm){target=\_blank} bytecode for deployment on Polkadot Hub. Revive's Ethereum RPC interface allows you to use familiar tools like Ethers.js and MetaMask to interact with contracts.
104+
The `revive` compiler transforms Solidity smart contracts into [PolkaVM](/develop/smart-contracts/overview#native-smart-contracts){target=\_blank} bytecode for deployment on Polkadot Hub. Revive's Ethereum RPC interface allows you to use familiar tools like Ethers.js and MetaMask to interact with contracts.
105105

106106
### Install the Revive Library
107107

polkadot-protocol/architecture/polkadot-chain/pos-consensus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Key features of BABE include:
3838

3939
- **Epochs and slots** - BABE operates in phases called epochs, each of which is divided into slots (around 6 seconds per slot). Validators are assigned slots at the beginning of each epoch based on stake and randomness
4040

41-
- **Randomized block production** - validators enter a lottery to determine which will produce a block in a specific slot. This randomness is sourced from the relay chain's [randomness cycle](/polkadot-protocol/basics/randomness/){target=\_blank}
41+
- **Randomized block production** - validators enter a lottery to determine which will produce a block in a specific slot. This randomness is sourced from the relay chain's [randomness cycle](/polkadot-protocol/parachain-basics/randomness/){target=\_blank}
4242

4343
- **Multiple block producers per slot** - in some cases, more than one validator might win the lottery for the same slot, resulting in multiple blocks being produced. These blocks are broadcasted, and the network's fork choice rule helps decide which chain to follow
4444

polkadot-protocol/parachain-basics/node-and-runtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The runtime performs several critical functions, such as:
7474

7575
## Communication Between Node and Runtime
7676

77-
The client and runtime communicate exclusively using [SCALE-encoded](/polkadot-protocol/basics/data-encoding){target=\_blank} communication. This ensures efficient and compact data exchange between the two components.
77+
The client and runtime communicate exclusively using [SCALE-encoded](/polkadot-protocol/parachain-basics/data-encoding){target=\_blank} communication. This ensures efficient and compact data exchange between the two components.
7878

7979
### Runtime APIs
8080

polkadot-protocol/smart-contract-basics/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The Polkadot SDK supports multiple smart contract execution environments:
6868

6969
### PolkaVM Contracts
7070

71-
A component of the Asset Hub parachain, PolkaVM helps enable the deployment of Solidity-based smart contracts directly on Asset Hub. Learn more about how this cutting edge virtual machine facilitates using familiar EVM contracts and tools with Asset Hub by visiting the [Native EVM Contracts](/develop/smart-contracts/evm/native-evm-contracts/){target=\_blank} guide.
71+
A component of the Asset Hub parachain, PolkaVM helps enable the deployment of Solidity-based smart contracts directly on Asset Hub. Learn more about how this cutting edge virtual machine facilitates using familiar Ethereum-compatible contracts and tools with Asset Hub by visiting the [Native Smart Contracts](/develop/smart-contracts/overview#native-smart-contracts){target=\_blank} guide.
7272

7373
### EVM Contracts
7474

0 commit comments

Comments
 (0)