From 693984389869e67600505ef5081d6b26a40c7c12 Mon Sep 17 00:00:00 2001 From: Romashka Date: Sun, 29 Dec 2024 16:57:50 +0200 Subject: [PATCH] typos-Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 91662d25..10a50a03 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ cd scaffold-balancer-v3 yarn install ``` -3. Set the follwing RPC URLs in the `packages/foundry/.env` file +3. Set the following RPC URLs in the `packages/foundry/.env` file ``` SEPOLIA_RPC_URL= @@ -115,7 +115,7 @@ To force the use of burner wallet, disable your browsers wallet extensions and r
🐛 Debug Contracts Page -The [Debug Contracts Page](http://localhost:3000/debug) can be useful for viewing and interacting with all of the externally avaiable read and write functions of a contract. The page will automatically hot reload with contracts that are deployed via the `01_DeployConstantSumFactory.s.sol` script. We use this handy setup to mint `mockERC20` tokens to any connected wallet +The [Debug Contracts Page](http://localhost:3000/debug) can be useful for viewing and interacting with all of the externally available read and write functions of a contract. The page will automatically hot reload with contracts that are deployed via the `01_DeployConstantSumFactory.s.sol` script. We use this handy setup to mint `mockERC20` tokens to any connected wallet
@@ -215,7 +215,7 @@ After designing a pool contract, the next step is to prepare a factory contract - A pool factory contract must inherit from [BasePoolFactory](https://github.com/balancer/balancer-v3-monorepo/blob/main/pkg/vault/contracts/factories/BasePoolFactory.sol) - Use the internal `_create` function to deploy a new pool -- Use the internal `_registerPoolWithVault` fuction to register a pool immediately after creation +- Use the internal `_registerPoolWithVault` function to register a pool immediately after creation ### 3. Write a Factory Contract 📝