Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
fix: spelling update
Browse files Browse the repository at this point in the history
  • Loading branch information
kiriyaga committed May 14, 2024
1 parent eff294a commit 4043626
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/build/tooling/hardhat/hardhat-zksync-upgradable.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ npx hardhat run SCRIPT_FILE
- This provider is configured in the hardhat config file, by stating the RPC url of the network to connect to.
:::

Additionaly, in the options section optionaly include the folowing arguments to configure the deployment of the proxy and implementation with different deployment types and salts:
Additionally, in the options section optionally include the folowing arguments to configure the deployment of the proxy and implementation with different deployment types and salts:

- `deploymentTypeImpl`
- `saltImpl`
Expand All @@ -232,7 +232,7 @@ Additionaly, in the options section optionaly include the folowing arguments to

:::note
Permissible values for the deployment type include `create`, `create2`, `createAccount`, and `create2Account`. If this parameter is omitted, the default value will be `create`.
If the salt parameters are ommited, the default value will be `0x0000000000000000000000000000000000000000000000000000000000000000`.
If the salt parameters are omitted, the default value will be `0x0000000000000000000000000000000000000000000000000000000000000000`.
:::

### Openzeppelin Version
Expand Down Expand Up @@ -435,7 +435,7 @@ npx hardhat run SCRIPT_FILE
:::
Additionaly, in the options section optionaly include the `deploymentType` and `salt` arguments to configure deployment type and salt.
Additionally, in the options section optionally include the `deploymentType` and `salt` arguments to configure deployment type and salt.
```
const beacon = await hre.zkUpgrades.deployBeacon(deployer.zkWallet, boxContract, {
Expand All @@ -453,7 +453,7 @@ await box.waitForDeployment();
:::note
Permissible values for the deployment type include `create`, `create2`, `createAccount`, and `create2Account`. If this parameter is omitted, the default value will be `create`.
If the salt parameters are ommited, the default value will be `0x0000000000000000000000000000000000000000000000000000000000000000`.
If the salt parameters are omitted, the default value will be `0x0000000000000000000000000000000000000000000000000000000000000000`.
:::
## Implementation addresses check
Expand Down Expand Up @@ -549,7 +549,7 @@ To upgrade the implementation of the transparent upgradeable contract, use the `
- The artifact containing the new `Box2` implementation.
- Other options
Optionaly in the other options section include `deploymentType` and `salt` to configure deployment type and salt for deploy of the new implementation.
Optionally in the other options section include `deploymentType` and `salt` to configure deployment type and salt for deploy of the new implementation.
```
const myContractV2 = await deployer.loadArtifact('BoxV2');
Expand Down Expand Up @@ -703,7 +703,7 @@ npx hardhat run SCRIPT_FILE
:::
Optionaly in the other options section include `deploymentType` and `salt` to configure deployment type and salt for deploy of the new implementation.
Optionally in the other options section include `deploymentType` and `salt` to configure deployment type and salt for deploy of the new implementation.
```
const myContractV2 = await deployer.loadArtifact('contractV2');
Expand Down Expand Up @@ -912,7 +912,7 @@ module.exports = [
:::note
Permissible values for the deployment type include `create`, `create2`, `createAccount`, and `create2Account`. If this parameter is omitted, the default value will be `create`.
If the salt parameters are ommited, the default value will be `0x0000000000000000000000000000000000000000000000000000000000000000`.
If the salt parameters are omitted, the default value will be `0x0000000000000000000000000000000000000000000000000000000000000000`.
:::
:::note
Expand Down

0 comments on commit 4043626

Please sign in to comment.