Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ I assume you have already installed MetaMask in your system. Now, I will walk yo
![Frame 3560339 (8).png](https://github.com/0xmetaschool/Learning-Projects/blob/main/assests_for_all/assests_for_astar/3.%20Setup%20MetaMask%20Using%20Astar%20Portal/Frame_3560339_(8).webp?raw=true)

3. Next, click on “MetaMask” button and follow the connection process to add Shibuya network to your MetaMask wallet.
1. First of all, click on “Next” and “Connect” bottons to confirm the connection with MetaMask.
1. First of all, click on “Next” and “Connect” bottoms, buttons to confirm the connection with MetaMask.
2. Then, click on “Sign”, “Approve”, and “Switch Network” to switch to the Shibuya network.

![Connect MetaMask GIF_1.gif](https://github.com/0xmetaschool/Learning-Projects/blob/main/assests_for_all/assests_for_astar/3.%20Setup%20MetaMask%20Using%20Astar%20Portal/Connect_MetaMask_GIF_1.webp?raw=true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Let’s break this down.
contract MyCrypto is ERC20
```

This line basically intializes the smart contract, `MyCrypto`, that inherits the `ERC20` token using `is` keyword.
This line basically initializes the smart contract, `MyCrypto`, that inherits the `ERC20` token using `is` keyword.

```
constructor() ERC20("MetaCoin", "META")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Let’s break this down.
contract MyToken is ERC20
```

This line basically intializes the smart contract, `MyToken`, that inherits the `ERC20` token using `is` keyword.
This line basically initializes the smart contract, `MyToken`, that inherits the `ERC20` token using `is` keyword.

```
constructor() ERC20("MetaCoin", "META")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Let’s break this down.
contract MyToken is ERC20
```

This line basically intializes the smart contract, `MyToken`, that inherits the `ERC20` token using `is` keyword.
This line basically initializes the smart contract, `MyToken`, that inherits the `ERC20` token using `is` keyword.

```
constructor() ERC20("MetaCoin", "META")
Expand Down