diff --git a/apps/base-docs/base-camp/assets/images/erc-721/erc-721-standard.png b/apps/base-docs/base-camp/assets/images/erc-721/erc-721-standard.png new file mode 100644 index 0000000..c2a31ea Binary files /dev/null and b/apps/base-docs/base-camp/assets/images/erc-721/erc-721-standard.png differ diff --git a/apps/base-docs/base-camp/assets/images/introduction-to-ethereum/gas-costs.png b/apps/base-docs/base-camp/assets/images/introduction-to-ethereum/gas-costs.png new file mode 100644 index 0000000..de93610 Binary files /dev/null and b/apps/base-docs/base-camp/assets/images/introduction-to-ethereum/gas-costs.png differ diff --git a/apps/base-docs/base-camp/assets/images/introduction-to-solidity/key-value-store.png b/apps/base-docs/base-camp/assets/images/introduction-to-solidity/key-value-store.png index 7386cb3..7029d63 100644 Binary files a/apps/base-docs/base-camp/assets/images/introduction-to-solidity/key-value-store.png and b/apps/base-docs/base-camp/assets/images/introduction-to-solidity/key-value-store.png differ diff --git a/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-order-inefficient.png b/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-order-inefficient.png index 2c92651..8a122e2 100644 Binary files a/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-order-inefficient.png and b/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-order-inefficient.png differ diff --git a/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-order-optimized.png b/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-order-optimized.png index dcd4b64..04ab47a 100644 Binary files a/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-order-optimized.png and b/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-order-optimized.png differ diff --git a/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-packing.png b/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-packing.png index 35382f4..542eac7 100644 Binary files a/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-packing.png and b/apps/base-docs/base-camp/assets/images/introduction-to-solidity/variable-packing.png differ diff --git a/apps/base-docs/base-camp/docs/erc-721-token/erc-721-standard.md b/apps/base-docs/base-camp/docs/erc-721-token/erc-721-standard.md index 0fa4d74..37d91ac 100644 --- a/apps/base-docs/base-camp/docs/erc-721-token/erc-721-standard.md +++ b/apps/base-docs/base-camp/docs/erc-721-token/erc-721-standard.md @@ -65,6 +65,8 @@ Standardizing non-fungible tokens via the ERC-721 token standard presents substa For users, the ERC-721 standard offers an intuitive, consistent interface for interacting with a wide array of unique tokens. Regardless of the token's specific use or design, users can reliably check their ownership of tokens, transfer tokens to other addresses, and approve transactions. This consistency enhances usability across the Ethereum platform, from digital art marketplaces to tokenized real estate and gaming applications. +![The Benefits of ERC-721 Standardization](../../assets/images/erc-721/erc-721-standard.png) + --- ## Applications diff --git a/apps/base-docs/base-camp/docs/introduction-to-ethereum/gas-use-in-eth-transactions.md b/apps/base-docs/base-camp/docs/introduction-to-ethereum/gas-use-in-eth-transactions.md index c59f922..935e47a 100644 --- a/apps/base-docs/base-camp/docs/introduction-to-ethereum/gas-use-in-eth-transactions.md +++ b/apps/base-docs/base-camp/docs/introduction-to-ethereum/gas-use-in-eth-transactions.md @@ -30,6 +30,8 @@ The amount of gas required for an operation depends on its complexity. More comp Gas costs can also vary depending on the state of the network, or more specifically, how congested it is. When there are more transactions waiting to be processed than the network can handle, it will prioritize transactions based on the gas price that was set by the user, meaning that higher gas prices are more likely to get processed first. When the network is congested, gas prices increase to encourage more efficient use of the network's resources and decrease when network usage is lower. This dynamic pricing mechanism ensures that the Ethereum network remains accessible and functional for all users, while also incentivizing responsible and efficient use of the network's resources. +![Gas Costs vs Network Congestion](../../assets/images/introduction-to-ethereum/gas-costs.png) + --- ## Why is gas necessary?