Skip to content

Commit d777128

Browse files
committed
Merge branch 'refs/heads/develop'
2 parents cba3359 + 3d6dca3 commit d777128

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

docs/tutorials/deploying-contracts/using-foundry.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ src = "src"
7272
out = "out"
7373
libs = ["lib"]
7474
solc = "0.8.24"
75+
evm_version = "paris"
7576

7677
[rpc_endpoints]
7778
status_testnet = "https://public.sepolia.rpc.status.network"

docs/tutorials/deploying-contracts/using-hardhat.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,12 @@ dotenv.config();
8585
const PRIVATE_KEY = process.env.PRIVATE_KEY || "";
8686

8787
const config: HardhatUserConfig = {
88-
solidity: "0.8.24",
88+
solidity: {
89+
version: "0.8.24",
90+
settings: {
91+
evmVersion: "paris"
92+
},
93+
},
8994
networks: {
9095
statusTestnet: {
9196
url: "https://public.sepolia.rpc.status.network",

docs/tutorials/deploying-contracts/using-remix.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ contract HelloWorld {
5555

5656
1. Click the "Solidity Compiler" icon (second icon on the left sidebar)
5757
2. Select compiler version "0.8.24"
58-
3. Click "Compile HelloWorld.sol"
59-
4. Ensure compilation succeeds (you'll see a green checkmark)
58+
3. Select "Advanced Configurations", select evm version "paris"
59+
4. Click "Compile HelloWorld.sol"
60+
5. Ensure compilation succeeds (you'll see a green checkmark)
6061

6162
### 5. Deploy the Contract
6263

i18n/ja/docusaurus-plugin-content-docs/current/tutorials/deploying-contracts/using-remix.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ contract HelloWorld {
4949

5050
1. 「Solidity Compiler」アイコン(左サイドバーの2番目のアイコン)をクリック
5151
2. コンパイラバージョン「0.8.24」を選択
52-
3. 「Compile HelloWorld.sol」をクリック
53-
4. コンパイルが成功することを確認(緑のチェックマークが表示されます)
52+
3. 「高度な構成」を選択し、EVM バージョン「paris」を選択します。
53+
4. 「Compile HelloWorld.sol」をクリック
54+
5. コンパイルが成功することを確認(緑のチェックマークが表示されます)
5455

5556
### 5. コントラクトのデプロイ
5657

i18n/ko/docusaurus-plugin-content-docs/current/tutorials/deploying-contracts/using-remix.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ contract HelloWorld {
4949

5050
1. "Solidity Compiler" 아이콘(왼쪽 사이드바의 두 번째 아이콘) 클릭
5151
2. 컴파일러 버전 "0.8.24" 선택
52-
3. "Compile HelloWorld.sol" 클릭
53-
4. 컴파일이 성공했는지 확인(녹색 체크마크가 표시됨)
52+
3. "고급 구성"을 선택하고 EVM 버전 "paris"를 선택합니다.
53+
4. "Compile HelloWorld.sol" 클릭
54+
5. 컴파일이 성공했는지 확인(녹색 체크마크가 표시됨)
5455

5556
### 5. 컨트랙트 배포
5657

i18n/zh/docusaurus-plugin-content-docs/current/tutorials/deploying-contracts/using-remix.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ contract HelloWorld {
4949

5050
1. 点击"Solidity Compiler"图标(左侧边栏的第二个图标)
5151
2. 选择编译器版本"0.8.24"
52-
3. 点击"Compile HelloWorld.sol"
53-
4. 确保编译成功(会看到绿色对勾)
52+
3. 选择“高级配置”,然后选择 EVM 版本“paris”。
53+
4. 点击"Compile HelloWorld.sol"
54+
5. 确保编译成功(会看到绿色对勾)
5455

5556
### 5. 部署合约
5657

0 commit comments

Comments
 (0)