From fed722505ba7cedc301897bbb71893cf0b42cc87 Mon Sep 17 00:00:00 2001 From: alex <152680487+bodhi-crypo@users.noreply.github.com> Date: Tue, 11 Jun 2024 15:50:17 +0000 Subject: [PATCH] chore:fix typo --- docs/contracts/guides/01-L1-Contracts.md | 6 +++--- docs/contracts/guides/02-L2-Contracts.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/contracts/guides/01-L1-Contracts.md b/docs/contracts/guides/01-L1-Contracts.md index 6f9d6d1..3680c0f 100644 --- a/docs/contracts/guides/01-L1-Contracts.md +++ b/docs/contracts/guides/01-L1-Contracts.md @@ -49,7 +49,7 @@ To run deployment scripts or any other custom scripts, use: yarn hardhat run --network ``` -Scripts are located in the scipts folder. +Scripts are located in the scripts folder. ## Deployment with Hardhat-Deploy @@ -79,7 +79,7 @@ PRIVATE_KEY: Your Ethereum private key, used for transactions and contract deplo ## Building a new strategy -You can build a new strategy building contract inheriting from StrategyBase.sol, you'll need to override virtual methods and add potential additional logic related to the strategy you want to build. 2 built strategies are proposed as exemples savingDai.sol and uniswapV3.sol +You can build a new strategy building contract inheriting from StrategyBase.sol, you'll need to override virtual methods and add potential additional logic related to the strategy you want to build. 2 built strategies are proposed as examples savingDai.sol and uniswapV3.sol ## Deploying pooling manager and adding new strategies @@ -87,7 +87,7 @@ You can build a new strategy building contract inheriting from StrategyBase.sol, 2. (only for goerli): deploy mock contract for your strategy if it is not deployed on this network like it's done with saving dai(cc deploy/savingDai.ts). Or setup the environment of the strategy if it exists like uniswapV3 where you need to deploy a new pool and add liquidity (cc scripts/deployUniPool.ts and scripts/initAndAddLiq.ts) -3. Add the required addresses in the config.ts for your strategy (uniV3Router for exemple) +3. Add the required addresses in the config.ts for your strategy (uniV3Router for example) 4. Deploy the strategy using hardhat-deploy diff --git a/docs/contracts/guides/02-L2-Contracts.md b/docs/contracts/guides/02-L2-Contracts.md index c836c08..d15df81 100644 --- a/docs/contracts/guides/02-L2-Contracts.md +++ b/docs/contracts/guides/02-L2-Contracts.md @@ -30,9 +30,9 @@ To create a test account run the script `./account.sh`. Follow the instructions ## ENVs Update the ENVs inside the .env file ```plaintext -STARKNET_NETWORK= network goerli ot mainnet +STARKNET_NETWORK= network goerli or mainnet ACCOUNT_ADDRESS= account address -ACCOUNT_PK= account provate key +ACCOUNT_PK= account private key ``` ## Declare With Starkli