Skip to content

Commit

Permalink
replace mentions of Evmos with evmOS
Browse files Browse the repository at this point in the history
  • Loading branch information
MalteHerrmann committed Aug 5, 2024
1 parent e15ca89 commit 69019f6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bsr-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: bufbuild/[email protected]
# Push Evmos protos to the Buf Schema Registry
# Push evmOS protos to the Buf Schema Registry
- uses: bufbuild/[email protected]
with:
input: ./proto
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Lint
# Lint runs golangci-lint over the entire Evmos repository This workflow is
# Lint runs golangci-lint over the entire evmOS repository This workflow is
# run on every pull request and push to main The `golangci` will pass without
# running if no *.{go, mod, sum} files have been changed.
on:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -186,15 +186,15 @@ release:
###############################################################################

# Install the necessary dependencies, compile the solidity contracts found in the
# Evmos repository and then clean up the contracts data.
# evmOS repository and then clean up the contracts data.
contracts-all: contracts-compile contracts-clean

# Clean smart contract compilation artifacts, dependencies and cache files
contracts-clean:
@echo "Cleaning up the contracts directory..."
@python3 ./scripts/compile_smart_contracts/compile_smart_contracts.py --clean

# Compile the solidity contracts found in the Evmos repository.
# Compile the solidity contracts found in the evmOS repository.
contracts-compile:
@echo "Compiling smart contracts..."
@python3 ./scripts/compile_smart_contracts/compile_smart_contracts.py --compile
Expand Down
2 changes: 1 addition & 1 deletion crypto/codec/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/evmos/os/crypto/ethsecp256k1"
)

// RegisterInterfaces register the Evmos key concrete types.
// RegisterInterfaces register the evmOS key concrete types.
func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
registry.RegisterImplementations((*cryptotypes.PubKey)(nil), &ethsecp256k1.PubKey{})
registry.RegisterImplementations((*cryptotypes.PrivKey)(nil), &ethsecp256k1.PrivKey{})
Expand Down
2 changes: 1 addition & 1 deletion crypto/keyring/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var (
// SupportedAlgorithms defines the list of signing algorithms used on evmOS:
// - eth_secp256k1 (Ethereum)
SupportedAlgorithms = keyring.SigningAlgoList{hd.EthSecp256k1}
// SupportedAlgorithmsLedger defines the list of signing algorithms used on Evmos for the Ledger device:
// SupportedAlgorithmsLedger defines the list of signing algorithms used by evmOS for the Ledger device:
// - secp256k1 (in order to comply with Cosmos SDK)
// The Ledger derivation function is responsible for all signing and address generation.
SupportedAlgorithmsLedger = keyring.SigningAlgoList{hd.EthSecp256k1}
Expand Down
2 changes: 1 addition & 1 deletion ethereum/eip712/preprocess.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func PreprocessLedgerTx(chainID string, keyType cosmoskr.KeyType, txBuilder clie
extensionBuilder.SetExtensionOptions(option)

// Set blank signature with Amino Sign Type
// (Regardless of input signMode, Evmos requires Amino signature type for Ledger)
// (Regardless of input signMode, evmOS requires Amino signature type for Ledger)
blankSig := signing.SingleSignatureData{
SignMode: signing.SignMode_SIGN_MODE_LEGACY_AMINO_JSON,
Signature: nil,
Expand Down

0 comments on commit 69019f6

Please sign in to comment.