From e0e93193bf4dbd68fa4ac03c2b5d98571d07c493 Mon Sep 17 00:00:00 2001 From: Iago Lluque Date: Thu, 28 Sep 2023 11:26:41 +0200 Subject: [PATCH] refactor: fixed typo --- infrastructure/zk/src/run/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/zk/src/run/run.ts b/infrastructure/zk/src/run/run.ts index 8e690c0d4..0503235a9 100644 --- a/infrastructure/zk/src/run/run.ts +++ b/infrastructure/zk/src/run/run.ts @@ -29,7 +29,7 @@ export async function deployERC20(command: 'dev' | 'new', name?: string, symbol? if (command == 'dev') { await utils.spawn(`yarn --silent --cwd contracts deploy-erc20 add-multi '[ { "name": "wBTC", "symbol": "wBTC", "decimals": 8, "implementation": "RevertTransferERC20" }, - { "name": "RDOCs", "symbol": "RDOC", "decimals": 18 }, + { "name": "RDOC", "symbol": "RDOC", "decimals": 18 }, { "name": "USDRIF", "symbol": "USDRIF", "decimals": 18 }, { "name": "RSK Infrastructure Framework", "symbol": "RIF", "decimals": 18 } ]' > ./etc/tokens/localhost.json`);