From 9dcfb436c37fadfdc528e05b1b8e335de2feb860 Mon Sep 17 00:00:00 2001 From: Kristen <17710875+KristenPire@users.noreply.github.com> Date: Thu, 4 Jul 2024 10:40:26 +0200 Subject: [PATCH] Update deployment.md --- docs/deployment.md | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/docs/deployment.md b/docs/deployment.md index 6140779..7997d13 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -49,27 +49,6 @@ npx hardhat test ## Deployment and Upgrades -### Token Deployment hardhat Task (un-optimized) -The deploy task allows for the flexible deployment of specified tokens. It can deploy a list of tokens provided as arguments, or all tokens if no arguments are specified. The task includes a confirmation step before proceeding with deployment. - -To run the deployment task, use the command: - -```bash -npx hardhat deploy [token1 token2 ...] -``` - -For example, to deploy only EUR and GBP tokens, use: - -```bash -npx hardhat deploy eur gbp -``` - -To deploy all available tokens, simply run: - -```bash -npx hardhat deploy -``` - ### Token Deployment foundry script (optimized) Our smart contract deployment script offers multiple options for deploying tokens. It leverages an optimized approach by using a single implementation contract for all tokens, which is more efficient and cost-effective.