Skip to content
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 .maintain/node-template-release/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ fn main() {
let commit_id = get_git_commit_id(&options.node_template);
let top_level_cargo_toml_path = node_template_path.join("Cargo.toml");

// Check if top level Cargo.toml exists. If not, create one in the destination
// Check if top-level Cargo.toml exists. If not, create one in the destination
if !cargo_tomls.contains(&top_level_cargo_toml_path) {
// create the top_level_cargo_toml
OpenOptions::new()
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Frontier is the EVM backbone of Polkadot.
Frontier provides a compatibility layer of EVM, so that you can run any Ethereum
dapps on Polkadot, unmodified. Using Frontier, you get access to all of the
Ethereum RPC APIs you are already familiar with, and therefore you can continue
to develop your dapps in your favourite Ethereum developer tools. As a bonus,
to develop your dapps in your favorite Ethereum developer tools. As a bonus,
you can even run many Ethereum L2s inside Frontier!

Frontier is also a migration framework. Besides the common strategy of direct
Expand Down Expand Up @@ -118,4 +118,4 @@ If the affected crate does not yet have `-dev` suffix:
and add `-dev` suffix.

If your pull request introduces a new crate, please set its version to
`1.0.0-dev`.
`1.0.0-dev`.
2 changes: 1 addition & 1 deletion docs/frame/evm.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ underlying EVM engine.

## Execution lifecycle

There are a separate set of accounts managed by the EVM
There is a separate set of accounts managed by the EVM
module. Substrate based accounts can call the EVM Module to deposit or
withdraw balance from the Substrate base-currency into a different
balance managed and used by the EVM module. Once a user has populated
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ features:
- title: RPC Compatibility
details: All existing Ethereum RPC methods work, so none of your dapps will break.
- title: Substrate Module
details: Frontier can be easily integrated in your existing Substrate application as a runtime module.
details: Frontier can be easily integrated into your existing Substrate application as a runtime module.
footer: Made by Parity & Wei & PureStake with ❤️
---

Expand Down
2 changes: 1 addition & 1 deletion docs/node-template-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
```

3. Expand the output tar gzipped file that is created in the top level working dir of Frontier and
replace files in current Frontier Node Template by running the following command:
replace files in the current Frontier Node Template by running the following command:

```bash
# Note the file will be placed in the top level working dir of Frontier
Expand Down
2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ independently.
## EVM execution only

In many situations, a Substrate blockchain may only want to include
EVM execution capatibilities. In this way, it functions similarly to
EVM execution capabilities. In this way, it functions similarly to
`pallet-contracts`, integrates with Substrate better and is less
intrusive. The module, and its EVM execution capatibilties, can be
added or removed at any moment via forkless upgrades. With EVM
Expand Down
2 changes: 1 addition & 1 deletion template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Alice's EVM account will be funded with a large amount of Ether. The
[Polkadot UI](https://polkadot.js.org/apps/#?rpc=ws://127.0.0.1:9944) can be used to see the details
of Alice's EVM account. In order to view an EVM account, use the `Developer` tab of the Polkadot UI
`Settings` app to define the EVM `Account` type as below. It is also necessary to define the
`Address` and `LookupSource` to send transaction, and `Transaction` and `Signature` to be able to
`Address` and `LookupSource` to send transactions, and `Transaction` and `Signature` to be able to
inspect blocks:

```json
Expand Down