Skip to content

Commit

Permalink
chore: remove unnecessary description
Browse files Browse the repository at this point in the history
  • Loading branch information
yk-saito committed Oct 11, 2023
1 parent 4288ace commit 3666bc6
Showing 1 changed file with 5 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
Hardhatを使用する場合、ファイル構造は非常に重要ですので、注意する必要があります。ファイル構造が下記のようになっていれば大丈夫です 😊

```
contract
|_ contracts
|_ Domains.sol
packages
└── contract
└── contracts
└── Domains.sol
```

次に、コードエディタでプロジェクトのコードを開きます。
Expand Down Expand Up @@ -207,16 +208,7 @@ console.log("Contract deployed to:", domainContract.address);

### 💨 実行してみよう

`packages/contract/package.json``script`部分を以下のように編集してください。

```json
"scripts": {
"run:script":"npx hardhat run scripts/run.js",
"test": "npx hardhat test",
"deploy": "npx hardhat run scripts/deploy.js --network mumbai"
},
```
その後、ターミナル上で、下記を実行してみましょう。
ターミナル上で、下記を実行してみましょう。

```
yarn contract run:script
Expand Down

0 comments on commit 3666bc6

Please sign in to comment.