Skip to content

Commit

Permalink
simplify docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardoaraujor committed Sep 6, 2023
1 parent 5e6bd90 commit 563faec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ The Runtime's `Signature` type is configured as [`sp_runtime::MultiSignature`](h
# Unified Accounts

The second strategy was [originally implemented by Moonbeam](https://docs.moonbeam.network/learn/features/unified-accounts/).
It consists of using `fp-account` so that `unified-accounts` is the Account type used for `frame_system::pallet::Config::AccountId`.
It consists of using `fp-account` so that `AccountId20` is the Account type used for
`frame_system::pallet::Config::AccountId`.

The Runtime's `Signature` type is configured as `EthereumSigner`, which means only `ECDSA` signatures are supported.

Expand Down Expand Up @@ -50,6 +51,5 @@ Frontier's Template will pre-fund several well-known addresses that (mostly) con
Frontier provides two different runtimes, one for each strategy.
You can choose which one want to build by using the `--feature` flag. For example:
```
$ cargo build --release # this builds a runtime with H256 -> H160
mapping
$ cargo build --release --features unified-accounts # this build a runtime with Unified Accounts
$ cargo build # this builds a runtime with H256 -> H160 mapping
$ cargo build --features unified-accounts # this builds a runtime with Unified Accounts

0 comments on commit 563faec

Please sign in to comment.