From 69019f6626e3dfc8002abca00dad7a1fbe949f35 Mon Sep 17 00:00:00 2001 From: MalteHerrmann Date: Mon, 5 Aug 2024 14:12:55 +0200 Subject: [PATCH] replace mentions of Evmos with evmOS --- .github/workflows/bsr-push.yml | 2 +- .github/workflows/lint.yml | 2 +- Makefile | 4 ++-- crypto/codec/codec.go | 2 +- crypto/keyring/options.go | 2 +- ethereum/eip712/preprocess.go | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/bsr-push.yml b/.github/workflows/bsr-push.yml index 2606a4be..a76381ac 100644 --- a/.github/workflows/bsr-push.yml +++ b/.github/workflows/bsr-push.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: bufbuild/buf-setup-action@v1.35.1 - # Push Evmos protos to the Buf Schema Registry + # Push evmOS protos to the Buf Schema Registry - uses: bufbuild/buf-push-action@v1.2.0 with: input: ./proto diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d9a7e9ff..8d1b8dea 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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: diff --git a/Makefile b/Makefile index adbcc4b6..0cc9d067 100644 --- a/Makefile +++ b/Makefile @@ -186,7 +186,7 @@ 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 @@ -194,7 +194,7 @@ 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 diff --git a/crypto/codec/codec.go b/crypto/codec/codec.go index bba29d77..015d2e79 100644 --- a/crypto/codec/codec.go +++ b/crypto/codec/codec.go @@ -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), ðsecp256k1.PubKey{}) registry.RegisterImplementations((*cryptotypes.PrivKey)(nil), ðsecp256k1.PrivKey{}) diff --git a/crypto/keyring/options.go b/crypto/keyring/options.go index 27cafea3..3b78dee2 100644 --- a/crypto/keyring/options.go +++ b/crypto/keyring/options.go @@ -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} diff --git a/ethereum/eip712/preprocess.go b/ethereum/eip712/preprocess.go index 7daa33b5..b2bf6d63 100644 --- a/ethereum/eip712/preprocess.go +++ b/ethereum/eip712/preprocess.go @@ -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,