Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NO CHANGELOG] fix: typos #2432

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ Note as well that the Solidity language itself only guarantees security updates

## Legal

Smart contracts are a nascent techology and carry a high level of technical risk and uncertainty. Immutable's zkEVM Contracts are made available under the Apache-2.0 License, which disclaims all warranties in relation to the project and which limits the liability of those that contribute and maintain the project, including Immutable. In your use of this project, you are solely responsible for any use of Immutable zkEVM Contracts and you assume all risks associated with any such use. This Security Policy in no way evidences or represents an on-going duty by any contributor, including Immutable, to correct any flaws or alert you to all or any of the potential risks of utilizing the project.
Smart contracts are a nascent techology and carry a high level of technical risk and uncertainty. Immutable's zkEVM Contracts are made available under the Apache-2.0 License, which disclaims all warranties in relation to the project and which limits the liability of those that contribute and maintain the project, including Immutable. In your use of this project, you are solely responsible for any use of Immutable zkEVM Contracts and you assume all risks associated with any such use. This Security Policy in no way evidences or represents an ongoing duty by any contributor, including Immutable, to correct any flaws or alert you to all or any of the potential risks of utilizing the project.
6 changes: 3 additions & 3 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ Update the readme with any instructions required to run the app, and include wha

Delete the any unused imports in `app/page.tsx`

Delete the contents of the return statement in `app/page.tsx` and replace with `<h1>My Example<h1/>` or whatever you like, just render something to the screen so you can tell its working when you run the app.
Delete the contents of the return statement in `app/page.tsx` and replace with `<h1>My Example<h1/>` or whatever you like, just render something to the screen so you can tell it's working when you run the app.

Start the project with hot reloading by running;

Expand Down Expand Up @@ -363,7 +363,7 @@ Or if you want to display the whole file just don't include a `#` label at the e
```
````

Just like regular code snippets, you can set language for syntax highlighting by adding it's alias directly after the opening backticks. In the above example we are setting the syntax highlighting to be for `tsx`. For more information on syntax highlighting, visit the [GitHub Documentation](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks).
Just like regular code snippets, you can set language for syntax highlighting by adding its alias directly after the opening backticks. In the above example we are setting the syntax highlighting to be for `tsx`. For more information on syntax highlighting, visit the [GitHub Documentation](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks).

Some popular syntaxes you are likely to want to use syntax highlighting for are;

Expand Down Expand Up @@ -399,4 +399,4 @@ You can now double check the code snippets in your `docs` branch are all pulling

Once your `docs` PR is merged, Netlify should automatically build and deploy the docs site. If your updates are not reflected on the docs site within 10 minutes of the PR being merged, it's likely the build has failed in Netlify. Because we are now pulling in content dynamically for the code snippets, the GET requests to fetch the code examples can sometimes randomly timeout which fails the build.

If this happens you will need to log into the Netlify site, check the error and retry the build. Usually this will fix the deployment issue, otherwise follow up on the error message shown by Netlify.
If this happens you will need to log into the Netlify site, check the error and retry the build. Usually this will fix the deployment issue, otherwise follow up on the error message shown by Netlify.
2 changes: 1 addition & 1 deletion examples/contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

These examples demonstrate ways of interacting with the [Immutable preset contracts](https://docs.immutable.com/products/zkEVM/contracts).

Immutable provides a set of preset contracts than can be used by customers to deploy known, battle-tested contracts to the zkEVM.
Immutable provides a set of preset contracts that can be used by customers to deploy known, battle-tested contracts to the zkEVM.

Immutable's preset contracts are equipped with features purpose-built for Web3 gaming, simplifying the integration process with Immutable's zkEVM platform.

Expand Down
2 changes: 1 addition & 1 deletion packages/orderbook/src/typechain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

All files under `./types` are generated by `yarn generate-types`.

To support more contracts, simply add the their ABIs to the top level `abi` folder
To support more contracts, simply add their ABIs to the top level `abi` folder
2 changes: 1 addition & 1 deletion packages/passport/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ For all IMX workflows, you are required to log in with Passport before you can i
#### ZkEvm workflows

All ZkEvm workflows except `eth_requestAccounts` and `eth_sendTransaction` do not require you to be logged in and can be executed without having a connected Passport wallet. Specifically for `eth_sendTransaction` however, you must call `eth_requestAccounts` first.
Some function calls, such as `eth_gasPrice` and `eth_getBalance` will return a value prefixed by `0x` - these are in hexidecimal format and must be converted to base 10 if you are looking for the actual number.
Some function calls, such as `eth_gasPrice` and `eth_getBalance` will return a value prefixed by `0x` - these are in hexadecimal format and must be converted to base 10 if you are looking for the actual number.

#### Logging out

Expand Down