From 9f60331964c4b7a28175257f5566992b94110fda Mon Sep 17 00:00:00 2001 From: hatty hattington <181872047+hattyhattington17@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:11:52 +0700 Subject: [PATCH 1/3] Update docs/zkapps/front-end-integration-guides/angular.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Boray Saygılıer --- docs/zkapps/front-end-integration-guides/angular.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zkapps/front-end-integration-guides/angular.mdx b/docs/zkapps/front-end-integration-guides/angular.mdx index 18d6e8b16..5efb5445d 100644 --- a/docs/zkapps/front-end-integration-guides/angular.mdx +++ b/docs/zkapps/front-end-integration-guides/angular.mdx @@ -13,7 +13,7 @@ keywords: - Install a wallet that supports zkApp transactions. For this tutorial, we’ll use **Auro Wallet**. [Download it here](https://www.aurowallet.com/). - Add the Auro Wallet browser extension. - Open the extension and follow the steps to create a new wallet. -- Click **"Mainnet"** at the top of the extension view, then select **Show Testnet** from the menu. After that, select **Devnet**. +- Click **"Mainnet"** at the top of the extension view, then select **"Show Testnet"** from the menu. After that, select **"Devnet"**. - Using Devnet will allow us to interact with a test version of the Mina network without needing to spend real Mina to pay for transaction fees. - Fund your wallet using the [Mina Faucet](https://faucet.minaprotocol.com/). - You'll need to wait about 3 minutes to see the change in balance reflected on chain. You can use [Minascan](https://minascan.io/devnet) to track the status of your transaction. From f618e13dc69cb4f803c711c7cb8f6c2566f70f32 Mon Sep 17 00:00:00 2001 From: hatty hattington <181872047+hattyhattington17@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:12:05 +0700 Subject: [PATCH 2/3] Update docs/zkapps/front-end-integration-guides/angular.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Boray Saygılıer --- docs/zkapps/front-end-integration-guides/angular.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zkapps/front-end-integration-guides/angular.mdx b/docs/zkapps/front-end-integration-guides/angular.mdx index 5efb5445d..ed644a896 100644 --- a/docs/zkapps/front-end-integration-guides/angular.mdx +++ b/docs/zkapps/front-end-integration-guides/angular.mdx @@ -16,7 +16,7 @@ keywords: - Click **"Mainnet"** at the top of the extension view, then select **"Show Testnet"** from the menu. After that, select **"Devnet"**. - Using Devnet will allow us to interact with a test version of the Mina network without needing to spend real Mina to pay for transaction fees. - Fund your wallet using the [Mina Faucet](https://faucet.minaprotocol.com/). - - You'll need to wait about 3 minutes to see the change in balance reflected on chain. You can use [Minascan](https://minascan.io/devnet) to track the status of your transaction. + - You'll need to wait one block (~3 minutes) to see the change in balance reflected on chain. You can use [Minascan](https://minascan.io/devnet) to track the status of your transaction. ## Initialize the Project From 116887dca7c9ccda3954192c072c3d82449769fb Mon Sep 17 00:00:00 2001 From: hatty hattington <181872047+hattyhattington17@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:12:41 +0700 Subject: [PATCH 3/3] Update docs/zkapps/front-end-integration-guides/angular.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Boray Saygılıer --- docs/zkapps/front-end-integration-guides/angular.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zkapps/front-end-integration-guides/angular.mdx b/docs/zkapps/front-end-integration-guides/angular.mdx index ed644a896..cb7c92df7 100644 --- a/docs/zkapps/front-end-integration-guides/angular.mdx +++ b/docs/zkapps/front-end-integration-guides/angular.mdx @@ -219,7 +219,7 @@ npm i @angular-builders/custom-webpack - rename the browser property to `main` in `options`. - add `"customWebpackConfig": { "path": "./webpack.config.js" },` to `options`. - delete `server`, `prerender`, and `ssr` from `options`. - - In `angular.json` under `/projects/angular-o1js-demo/architect/serve`, replace the default builder `"builder": "@angular-devkit/build-angular:dev-server",` with ` "builder": "@angular-builders/custom-webpack:dev-server". + - In `angular.json` under `/projects/angular-o1js-demo/architect/serve`, replace the default builder `"builder": "@angular-devkit/build-angular:dev-server",` with `"builder": "@angular-builders/custom-webpack:dev-server"`. - The build targets should look like this: ```json