diff --git a/docs/developers/tutorials/your-first-dapp.md b/docs/developers/tutorials/your-first-dapp.md index 4e432fe9..fb36daca 100644 --- a/docs/developers/tutorials/your-first-dapp.md +++ b/docs/developers/tutorials/your-first-dapp.md @@ -38,7 +38,7 @@ Other rules: For the web app we'll have two pages: -- The _Sign in_ page - here we can authenticate with ledger, web wallet or with Maiar Wallet +- The _Sign in_ page - here we can authenticate with ledger, web wallet or with xPortal app - The _Dashboard_ page - here we can either ping or pong, if we already deposited, then we will see a countdown timer until the time interval clears out. [comment]: # (mx-context-auto) @@ -46,7 +46,7 @@ For the web app we'll have two pages: ### **Blockchain Layer (The Backend)** We will create a smart contract that can handle the deposit (`ping`), claim (`pong`) and status actions (`did_user_ping`, `get_time_to_pong`). -Let's say that, for now, this smart contract plays the role of an API in a dApp. Also this is where our business logic resides. +Let's say that, for now, this smart contract plays the role of an API in a dApp. Also, this is where our business logic resides. The MultiversX _devnet_ is a public test network maintained by our community where any developer can test their smart contracts and dApps in a real world environment. @@ -54,7 +54,7 @@ The MultiversX _devnet_ is a public test network maintained by our community whe ## **Set up the environment** -Let's set up the evironment for getting your first dapp up and running. +Let's set up the environment for getting your first dapp up and running. [comment]: # (mx-context-auto) @@ -112,8 +112,6 @@ git clone https://github.com/multiversx/mx-ping-pong-sc contract We now have the source code for the smart contract, but we need to compile it into a _binary_ that the MultiversX Virtual Machine can run. The VM can run Web Assembly code, so we need to compile our Rust source code into Web Assembly (WASM). -We now have the source code for the smart contract, but we need to compile it into a _binary_ that the MultiversX (previously Elrond) Virtual Machine can run. The VM can run Web Assembly code, so we need to compile our Rust source code into Web Assembly (WASM). - Run the following command in order to build the rust smart contract into a _wasm file_. ```sh diff --git a/pull_request_template.md b/pull_request_template.md index 6ba4dca9..40f7539b 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -1,5 +1,3 @@ - - #### Description of the pull request (what is new / what has changed) #### Did you test the changes locally ? diff --git a/static/developers/tutorial/dapp-architecture.png b/static/developers/tutorial/dapp-architecture.png index 61d35b30..b5ab8a9b 100644 Binary files a/static/developers/tutorial/dapp-architecture.png and b/static/developers/tutorial/dapp-architecture.png differ diff --git a/static/developers/tutorial/dapp-problem.png b/static/developers/tutorial/dapp-problem.png index fdb2d173..a67e9399 100644 Binary files a/static/developers/tutorial/dapp-problem.png and b/static/developers/tutorial/dapp-problem.png differ diff --git a/static/developers/tutorial/folder-structure.png b/static/developers/tutorial/folder-structure.png index b34a226a..476f7f03 100644 Binary files a/static/developers/tutorial/folder-structure.png and b/static/developers/tutorial/folder-structure.png differ