Skip to content

Commit 1455edc

Browse files
committed
Merge branch 'dev' into Revamp_find_wallet_header
2 parents ef1e39d + 9a3de91 commit 1455edc

File tree

216 files changed

+9327
-1540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+9327
-1540
lines changed

next.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,14 @@ module.exports = (phase, { defaultConfig }) => {
5959
// Modify the file loader rule to ignore *.svg, since we have it handled now.
6060
fileLoaderRule.exclude = /\.svg$/i
6161

62+
config.module.rules.push({
63+
test: /\.(mp3)$/,
64+
type: "asset/resource",
65+
generator: {
66+
filename: "static/media/[name][ext]",
67+
},
68+
})
69+
6270
return config
6371
},
6472
trailingSlash: true,

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereum-org-website",
3-
"version": "9.6.0",
3+
"version": "9.7.0",
44
"license": "MIT",
55
"private": true,
66
"scripts": {
@@ -57,6 +57,7 @@
5757
"ethereum-blockies-base64": "^1.0.2",
5858
"framer-motion": "^10.13.0",
5959
"gray-matter": "^4.0.3",
60+
"howler": "^2.2.4",
6061
"htmr": "^1.0.2",
6162
"lodash.merge": "^4.6.2",
6263
"lodash.shuffle": "^4.2.0",
@@ -67,7 +68,7 @@
6768
"next-sitemap": "^4.2.3",
6869
"next-themes": "^0.3.0",
6970
"prism-react-renderer": "1.1.0",
70-
"prismjs": "^1.27.0",
71+
"prismjs": "^1.30.0",
7172
"react": "^18.2.0",
7273
"react-chartjs-2": "^5.2.0",
7374
"react-dom": "^18.2.0",

public/content/community/online/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ If you believe a community should be added or removed based on these guidelines,
5757
<SocialListItem socialIcon="webpage"><Link href="https://ethereum.stackexchange.com/">Ethereum Stack Exchange</Link> <i>- question and answer forum</i></SocialListItem>
5858
<SocialListItem socialIcon="webpage"><Link href="https://app.peera.ai/">Peera Community Forum</Link> <i>- decentralized question and answer forum</i></SocialListItem>
5959

60-
## YouTube and X formerly (Twitter) {#youtube-and-twitter}
60+
## YouTube and X (formerly Twitter) {#youtube-and-twitter}
6161

6262
<SocialListItem socialIcon="youtube"><Link href="https://www.youtube.com/c/EthereumFoundation">Ethereum Foundation</Link> - Keep up to date with the latest from the Ethereum Foundation</SocialListItem>
6363
<SocialListItem socialIcon="twitter"><Link href="https://x.com/ethereum">@ethereum</Link> - Main Ethereum account for the community</SocialListItem>

public/content/decentralized-identity/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ These traditional examples of identifiers are issued, held and controlled by cen
3939

4040
1. Decentralized identity increases individual control of identifying information. Decentralized identifiers and attestations can be verified without relying on centralized authorities and third-party services.
4141

42-
2. Decentralized identity solutions facilitates a trustless, seamless, and privacy-protecting method for verifying and managing user identity.
42+
2. Decentralized identity solutions facilitate a trustless, seamless, and privacy-protecting method for verifying and managing user identity.
4343

4444
3. Decentralized identity harnesses blockchain technology, which creates trust between different parties and provides cryptographic guarantees to prove the validity of attestations.
4545

public/content/defi/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ One of the best ways to see the potential of DeFi is to understand the problems
3232
- Financial services can block you from getting paid.
3333
- A hidden charge of financial services is your personal data.
3434
- Governments and centralized institutions can close down markets at will.
35-
- Trading hours are often limited to business hours of specific time zone.
35+
- Trading hours are often limited to business hours of a specific time zone.
3636
- Money transfers can take days due to internal human processes.
3737
- There's a premium to financial services because intermediary institutions need their cut.
3838

public/content/developers/tutorials/erc20-with-safety-rails/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Freezing and thawing contracts requires several changes:
146146
mapping(address => bool) public frozenAccounts;
147147
```
148148

149-
- [Events](https://www.tutorialspoint.com/solidity/solidity_events.htm) to inform anybody interested when an account is frozen or thawed. Technically speaking events are not required for these actions, but it helps offchain code to be able to listen to these events and know what is happening. It's considered good manners for a smart contract to emit them when something that miught be relevant to somebody else happens.
149+
- [Events](https://www.tutorialspoint.com/solidity/solidity_events.htm) to inform anybody interested when an account is frozen or thawed. Technically speaking events are not required for these actions, but it helps offchain code to be able to listen to these events and know what is happening. It's considered good manners for a smart contract to emit them when something that might be relevant to somebody else happens.
150150

151151
The events are indexed so will be possible to search for all the times an account has been frozen or thawed.
152152

public/content/developers/tutorials/hello-world-smart-contract-fullstack/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
"alchemy",
1010
"smart contracts",
1111
"deploying",
12-
"blockexplorer",
12+
"block explorer",
1313
"frontend",
1414
"transactions",
1515
]

public/content/developers/tutorials/how-to-use-slither-to-find-smart-contract-bugs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to use Slither to find smart contract bugs
33
description: How to use Slither to automatically find bugs in smart contracts
44
author: Trailofbits
55
lang: en
6-
tags: ["solidity", "smart contracts", "security", "testing", "static analysis"]
6+
tags: ["solidity", "smart contracts", "security", "testing"]
77
skill: advanced
88
published: 2020-06-09
99
source: Building secure contracts

public/content/developers/tutorials/ipfs-decentralized-ui/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: IPFS for decentralized user interfaces
33
description: This tutorial teaches the reader how to use IPFS to store the user interface for a dapp. Although the application's data and business logic are decentralized, without a censorship resistant user interface users might lose access to it anyway.
44
author: Ori Pomerantz
5-
tags: ["ipfs", "user interface"]
5+
tags: ["ipfs"]
66
skill: beginner
77
lang: en
88
published: 2024-06-29

public/content/developers/tutorials/kickstart-your-dapp-frontend-development-with-create-eth-app/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Kickstart your dapp frontend development with create-eth-app
33
description: An overview of how to use create-eth-app and its features
44
author: "Markus Waas"
55
tags:
6-
["create-eth-app", "frontend", "javascript", "ethers.js", "the graph", "defi"]
6+
["frontend", "javascript", "ethers.js", "the graph", "defi"]
77
skill: beginner
88
lang: en
99
published: 2020-04-27

0 commit comments

Comments
 (0)