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