Skip to content

Commit 8404125

Browse files
committed
fix
1 parent 5b4bc32 commit 8404125

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

develop/parachains/customize-parachain/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The Polkadot SDK allows developers to construct a runtime by combining various p
7171

7272
The following diagram illustrates the process of selecting and combining FRAME pallets to compose a runtime:
7373

74-
![](/images/develop/parachains/customize-parachain/overview/frame-overview-2.webp)
74+
![](/images/develop/parachains/customize-parachain/overview/frame-overview-2.webp){ style="background:white; padding:1em;" }
7575

7676
This modular design allows developers to:
7777

develop/smart-contracts/precompiles/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ flowchart LR
3535
Precompiles
3636
Runtime
3737
end
38-
39-
classDef edgeLabel background:#eceff3;
4038
```
4139

4240
## Standard Precompiles in Polkadot Hub

polkadot-protocol/architecture/polkadot-chain/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ According to Polkadot's design, any blockchain that can compile to WebAssembly (
4242

4343
Here’s a high-level overview of the Polkadot protocol architecture:
4444

45-
![](/images/polkadot-protocol/architecture/polkadot-chain/overview/overview-1.webp)
45+
![](/images/polkadot-protocol/architecture/polkadot-chain/overview/overview-1.webp){ style="background:white" }
4646

4747
Parachains propose blocks to Polkadot validators, who check for availability and validity before finalizing them. With the relay chain providing security, collators—full nodes of parachains—can focus on their tasks without needing strong incentives.
4848

polkadot-protocol/parachain-basics/blocks-transactions-fees/transactions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Pallets, which compose the runtime's logic, define the specific transactions tha
170170

171171
In Polkadot SDK-based networks, some nodes are authorized to author blocks. These nodes validate and process transactions. When a transaction is sent to a node that can produce blocks, it undergoes a lifecycle that involves several stages, including validation and execution. Non-authoring nodes gossip the transaction across the network until an authoring node receives it. The following diagram illustrates the lifecycle of a transaction that's submitted to a network and processed by an authoring node.
172172

173-
![Transaction lifecycle diagram](/images/polkadot-protocol/parachain-basics/blocks-transactions-fees/transactions/transaction-lifecycle-1.webp)
173+
![Transaction lifecycle diagram](/images/polkadot-protocol/parachain-basics/blocks-transactions-fees/transactions/transaction-lifecycle-1.webp){ style="background:white" }
174174

175175
### Validate and Queue
176176

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ flowchart LR
3838
E[Transaction] --> D
3939
D --> F[(New State)]
4040
D --> G[Execution Logs]
41-
style A fill:#ffffff,stroke:#000000,stroke-width:1px
41+
style A stroke:#000000,stroke-width:1px
4242
```
4343

4444
In addition, because smart contracts are programs that execute on top of existing chains, teams don't have to think about the underlying consensus they are built on.
@@ -108,8 +108,8 @@ flowchart TD
108108
F --> J[(New Ethereum<br/>Emulated State)]
109109
F --> K[Execution Logs]
110110
111-
style C fill:#ffffff,stroke:#000000,stroke-width:1px
112-
style F fill:#ffffff,stroke:#000000,stroke-width:1px
111+
style C stroke:#000000,stroke-width:1px
112+
style F stroke:#000000,stroke-width:1px
113113
```
114114

115115
Although it seems complex, users and developers are abstracted of that complexity, and tools can easily interact with the parachain as they would with any other Ethereum-compatible environment.
@@ -144,5 +144,5 @@ flowchart TD
144144
A --> F[(New State)]
145145
A --> G[Execution Logs]
146146
147-
style A fill:#ffffff,stroke:#000000,stroke-width:1px
147+
style A stroke:#000000,stroke-width:1px
148148
```

0 commit comments

Comments
 (0)