From ab6b83e7b93f7e728dd4640afb3e15c64091e0ce Mon Sep 17 00:00:00 2001 From: ealeksandrov-LimeChain <92088769+ealeksandrov-LimeChain@users.noreply.github.com> Date: Wed, 23 Feb 2022 14:37:57 +0200 Subject: [PATCH] fix description error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 68732738..6532fb62 100644 --- a/README.md +++ b/README.md @@ -263,7 +263,7 @@ blast run newFolder/anotherScripts/myCustomScript.js | Function | Descripton | Code example | | --- | --- | --- | -| getSigners() | set supplied accounts? as signers in order as in `{project_root}/accounts.json` | const [alice, bob] = await getSigners() | +| getSigners() | set assigned objects as signers in order as in `{project_root}/accounts.json` | const [alice, bob] = await getSigners() | | getContractFactory(contractName) | get a contract object from contract named `contractName` and sign it witn the first account | const contract = await getContractFactory('alpha') | | getContractFromAddress(contractAddress, owner = null) | get a contract object by its address. Contract owner can be omitted if present in `{project_root}/accounts.json` | const contract = await getContractFromAddress('cudos1uul3yzm2lgskp3dxpj0zg558hppxk6pt8t00qe') |