Skip to content

Commit

Permalink
typos README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cypherpepe authored Nov 27, 2024
1 parent 1272b6c commit c4d4068
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ Accounts can either be normal evm accounts or multisig accounts.

Normal accounts contain the following fields:
- name - the name of the account, this can be referenced in the contracts update spec file in the `deployer` attribute.
- private key - the pivate key of the account. To avoid having to persist private keys in this account spec, you can also reference env variables through enclosing them in double brackets. For example, if there is a `DEPLOYER_PRIVATE_KEY` variable set in the environment that runs a command that references this account spec, you can set the private key attribute to `{{DEPLOYER_PRIVATE_KEY}}` and this will be rendered to the environment value during runtime.
- private key - the private key of the account. To avoid having to persist private keys in this account spec, you can also reference env variables through enclosing them in double brackets. For example, if there is a `DEPLOYER_PRIVATE_KEY` variable set in the environment that runs a command that references this account spec, you can set the private key attribute to `{{DEPLOYER_PRIVATE_KEY}}` and this will be rendered to the environment value during runtime.

Multisig accounts contain the following fields:
- name: The name of the account similar to normal accounts
- private key: Private key of an owner account associated with the multsig account at the safeAddress. Similar to normal accounts, you can reference env variables through enclosing them in double brackets.
- private key: Private key of an owner account associated with the multisig account at the safeAddress. Similar to normal accounts, you can reference env variables through enclosing them in double brackets.
- safeAddress: The address of the multisig contract
- chainId : The chainId this multisig account exists on.

Expand Down

0 comments on commit c4d4068

Please sign in to comment.