Reduce Usage of Eth2 Terminology in Prysm (#9104)

* remove all mentions

* more changes

* folder by folder

Co-authored-by: terence tsao <terence@prysmaticlabs.com>
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
Raul Jordan
2021-06-26 14:00:33 -05:00
committed by GitHub
parent dd0ae1bbef
commit a860648960
122 changed files with 183 additions and 188 deletions

View File

@@ -20,7 +20,7 @@ import (
)
// DepositDataJSON representing a json object of hex string and uint64 values for
// validators on eth2. This file can be generated using the official eth2.0-deposit-cli.
// validators on Ethereum. This file can be generated using the official eth2.0-deposit-cli.
type DepositDataJSON struct {
PubKey string `json:"pubkey"`
Amount uint64 `json:"amount"`

View File

@@ -1,4 +1,4 @@
// Package main provides a tool named split-keys which allows for generating any number of eth2 validator keys
// Package main provides a tool named split-keys which allows for generating any number of Ethereum validator keys
// from a list of BIP39 mnemonics and spreading them across any number of Prysm wallets. This is useful for creating
// custom allocations of keys across containers running in a cloud environment, such as for public testnets.
// An example of why you would use this tool is as follows. Let's say we have 1 mnemonic contained inside of a file.

View File

@@ -1,7 +1,7 @@
// This tool allows for simple encrypting and decrypting of EIP-2335 compliant, BLS12-381
// keystore.json files which as password protected. This is helpful in development to inspect
// the contents of keystores created by eth2 wallets or to easily produce keystores from a
// specified secret to move them around in a standard format between eth2 clients.
// the contents of keystores created by Ethereum validator wallets or to easily produce keystores from a
// specified secret to move them around in a standard format between Ethereum consensus clients.
package main
import (

View File

@@ -1,11 +1,11 @@
## Pcli (Prysm CLI)
This is a utility to help users perform eth2 specific commands.
This is a utility to help users perform Ethereum consensus specific commands.
### Usage
*Name:*
**pcli** - A command line utility to run eth2 specific commands
**pcli** - A command line utility to run Ethereum consensus specific commands
*Usage:*
pcli [global options] command [command options] [arguments...]

View File

@@ -37,7 +37,7 @@ func main() {
log.SetFormatter(customFormatter)
app := cli.App{}
app.Name = "pcli"
app.Usage = "A command line utility to run eth2 specific commands"
app.Usage = "A command line utility to run Ethereum consensus specific commands"
app.Version = version.Version()
app.Commands = []*cli.Command{
{

View File

@@ -1,6 +1,6 @@
# Specs checker tool
This simple tool helps downloading and parsing [ETH2 specs](https://github.com/ethereum/eth2.0-specs/tree/dev/specs),
This simple tool helps downloading and parsing [Ethereum specs](https://github.com/ethereum/eth2.0-specs/tree/dev/specs),
to be later used for making sure that our reference comments match specs definitions precisely.
### Updating the reference specs