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 @@ -219,7 +219,7 @@ Make sure you are in the `dating-ai-bot-app` folder. Remember to push your code

```solidity
git add .
git commit -m "the dating ai coach app is successfuly working"
git commit -m "the dating ai coach app is successfully working"
git push
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ First, let’s code the component which will handle the MetaMask connection and
Now, in the `App()` function, under the loading messages constants (`const`), we created in the last lesson paste these two `useEffects()`:

```
// To intialize metamask and connect with the smart contract
// To initialize metamask and connect with the smart contract
useEffect(() => {
if (started) {
if (window.ethereum) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ So, to obtain the current transaction signer we call something like this: `tx_co
}
}

// create function is used to call the constrcutor function and
// create function is used to call the constructor function and
// transfer the ownership of the object and make it public using
// `transfer` module and function.
public entry fun create(red: u8, green: u8, blue: u8, ctx: &mut TxContext){
Expand Down
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 @@ -40,7 +40,7 @@ Example: In the previous example, Bor is the employee of company XY who creates

### 4\. Checkpoint Mechanism

Since Polygon is a Layer-2 protocol hence it is dependant on the Ethereum Mainnet for its Layer 1 Settlement Layer. All staking mechanisms must be compatible with the Ethereum Mainnet's contracts.
Since Polygon is a Layer-2 protocol hence it is dependent on the Ethereum Mainnet for its Layer 1 Settlement Layer. All staking mechanisms must be compatible with the Ethereum Mainnet's contracts.

The checkpointing mechanism periodically publishes the checkpoint to the Ethereum Mainchain.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ So what are we building today? Today we will learn how to create your own Polygo

Why Polygon? Polygon is a layer-2 blockchain that helps solve many issues with the Ethereum blockchain. Polygon supports EVM and Solidity, which makes it the best choice for developers like you.

Not only this, Polygon commited $20 million to build web3 communities that can build on web3 and come up with scaling solutions. Polygon raised over $450,000 in 2019 in two rounds of startup, which shows how much promising the Polygon is and how much growth it will bring in web3 world.
Not only this, Polygon committed $20 million to build web3 communities that can build on web3 and come up with scaling solutions. Polygon raised over $450,000 in 2019 in two rounds of startup, which shows how much promising the Polygon is and how much growth it will bring in web3 world.

Before we start, we need to understand a few things and trust me I'm not gonna bore you!

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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gm everyone 🌈, I am very excited to bring the exciting course for developers

So, what are we building today? Today I will be helping you learn everything about NFTs. To be precise, my focus will be on teaching you what exactly NFTs are and how you can build your own NFTs.

Why NFTs? Becuase NFTs have gained significant popularity and are being used in various industries and applications. Some of those industries and applications are:
Why NFTs? Because NFTs have gained significant popularity and are being used in various industries and applications. Some of those industries and applications are:

1. Digital Art
2. Collectibles
Expand Down