From c8103aa05044081ff2f7f67f22eb9fe7af128ef7 Mon Sep 17 00:00:00 2001 From: jiujiteiro Date: Thu, 8 Jul 2021 22:26:00 -0300 Subject: [PATCH] add jiujiteiro namespace --- CHANGELOG.md | 36 +++++++++++++------------- CONTRIBUTING.md | 18 ++++++------- Dockerfile | 4 +-- Makefile | 6 ++--- README.md | 28 ++++++++++---------- app/ante/ante.go | 2 +- app/ante/ante_test.go | 2 +- app/ante/eth.go | 4 +-- app/ante/eth_test.go | 6 ++--- app/ante/utils_test.go | 12 ++++----- app/app.go | 16 ++++++------ app/app_test.go | 2 +- app/export.go | 2 +- app/test_helpers.go | 2 +- client/config.go | 2 +- client/docs/statik/init.go | 2 +- client/export.go | 4 +-- client/import.go | 4 +-- client/keys.go | 4 +-- client/testnet.go | 8 +++--- cmd/ethermintd/cmd_test.go | 4 +-- cmd/ethermintd/config/config.go | 2 +- cmd/ethermintd/flags.go | 2 +- cmd/ethermintd/genaccounts.go | 6 ++--- cmd/ethermintd/main.go | 2 +- cmd/ethermintd/root.go | 10 +++---- docs/.vuepress/config.js | 8 +++--- go.mod | 2 +- proto/ethermint/evm/v1alpha1/evm.proto | 2 +- tests/importer/importer_test.go | 8 +++--- tests/rpc/rpc_pending_test.go | 2 +- tests/rpc/rpc_test.go | 6 ++--- types/account_test.go | 8 +++--- x/evm/atlas/atlas-v0.3.1.md | 6 ++--- x/evm/atlas/atlas.toml | 8 +++--- x/evm/genesis.go | 6 ++--- x/evm/genesis_test.go | 6 ++--- x/evm/handler.go | 2 +- x/evm/handler_test.go | 8 +++--- x/evm/keeper/abci.go | 2 +- x/evm/keeper/grpc_query.go | 4 +-- x/evm/keeper/grpc_query_test.go | 4 +-- x/evm/keeper/keeper.go | 4 +-- x/evm/keeper/keeper_test.go | 10 +++---- x/evm/keeper/msg_server.go | 2 +- x/evm/keeper/params.go | 2 +- x/evm/keeper/params_test.go | 2 +- x/evm/keeper/state_transition.go | 4 +-- x/evm/keeper/statedb.go | 4 +-- x/evm/keeper/statedb_test.go | 6 ++--- x/evm/module.go | 6 ++--- x/evm/spec/01_concepts.md | 8 +++--- x/evm/spec/02_state.md | 4 +-- x/evm/spec/04_messages.md | 4 +-- x/evm/types/access_list_tx.go | 2 +- x/evm/types/genesis_test.go | 2 +- x/evm/types/logs.go | 2 +- x/evm/types/tx_data_test.go | 2 +- 58 files changed, 168 insertions(+), 168 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37a0354655..e8ffdd7331 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,37 +39,37 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### State Machine Breaking -* (evm) [tharsis#175](https://github.com/tharsis/ethermint/issues/175) The msg `TxData` field is now represented as a `*proto.Any`. -* (evm) [tharsis#84](https://github.com/tharsis/ethermint/pull/84) Remove `journal`, `CommitStateDB` and `stateObjects`. -* (rpc, evm) [tharsis#81](https://github.com/tharsis/ethermint/pull/81) Remove tx `Receipt` from store and replace it with fields obtained from the Tendermint RPC client. -* (evm) [tharsis#72](https://github.com/tharsis/ethermint/issues/72) Update `AccessList` to use `TransientStore` instead of map. -* (evm) [tharsis#68](https://github.com/tharsis/ethermint/issues/68) Replace block hash storage map to use staking `HistoricalInfo`. +* (evm) [tharsis#175](https://github.com/jiujiteiro/ethermint/issues/175) The msg `TxData` field is now represented as a `*proto.Any`. +* (evm) [tharsis#84](https://github.com/jiujiteiro/ethermint/pull/84) Remove `journal`, `CommitStateDB` and `stateObjects`. +* (rpc, evm) [tharsis#81](https://github.com/jiujiteiro/ethermint/pull/81) Remove tx `Receipt` from store and replace it with fields obtained from the Tendermint RPC client. +* (evm) [tharsis#72](https://github.com/jiujiteiro/ethermint/issues/72) Update `AccessList` to use `TransientStore` instead of map. +* (evm) [tharsis#68](https://github.com/jiujiteiro/ethermint/issues/68) Replace block hash storage map to use staking `HistoricalInfo`. ### API Breaking -* (proto, evm) [tharsis#207](https://github.com/tharsis/ethermint/issues/207) Replace `big.Int` in favor of `sdk.Int` for `TxData` fields -* (proto, evm) [tharsis#81](https://github.com/tharsis/ethermint/pull/81) gRPC Query and Tx service changes: +* (proto, evm) [tharsis#207](https://github.com/jiujiteiro/ethermint/issues/207) Replace `big.Int` in favor of `sdk.Int` for `TxData` fields +* (proto, evm) [tharsis#81](https://github.com/jiujiteiro/ethermint/pull/81) gRPC Query and Tx service changes: * The `TxReceipt`, `TxReceiptsByBlockHeight` endpoints have been removed from the Query service. * The `ContractAddress`, `Bloom` have been removed from the `MsgEthereumTxResponse` and the response now contains the ethereum-formatted `Hash` in hex format. * (eth) [\#845](https://github.com/cosmos/ethermint/pull/845) The `eth` namespace must be included in the list of API's as default to run the rpc server without error. -* (evm) [#202](https://github.com/tharsis/ethermint/pull/202) Web3 api `SendTransaction`/`SendRawTransaction` returns ethereum compatible transaction hash, and query api `GetTransaction*` also accept that. +* (evm) [#202](https://github.com/jiujiteiro/ethermint/pull/202) Web3 api `SendTransaction`/`SendRawTransaction` returns ethereum compatible transaction hash, and query api `GetTransaction*` also accept that. ### Improvements -* (gRPC) [tharsis#239](https://github.com/tharsis/ethermint/pull/239) Query `ChainConfig` via gRPC. -* (rpc) [tharsis#181](https://github.com/tharsis/ethermint/pull/181) Use evm denomination for params on tx fee. -* (deps) [tharsis#165](https://github.com/tharsis/ethermint/pull/165) Bump Cosmos SDK and Tendermint versions to [v0.42.6](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.42.6) and [v0.34.11](https://github.com/tendermint/tendermint/releases/tag/v0.34.11), respectively. -* (evm) [tharsis#66](https://github.com/tharsis/ethermint/issues/66) Support legacy transaction types for signing. -* (evm) [tharsis#24](https://github.com/tharsis/ethermint/pull/24) Implement metrics for `MsgEthereumTx`, state transitions, `BeginBlock` and `EndBlock`. -* (rpc) [#124](https://github.com/tharsis/ethermint/issues/124) Implement `txpool_content`, `txpool_inspect` and `txpool_status` RPC methods -* (rpc) [tharsis#112](https://github.com/tharsis/ethermint/pull/153) Fix `eth_coinbase` to return the ethereum address of the validator -* (rpc) [tharsis#176](https://github.com/tharsis/ethermint/issues/176) Support fetching pending nonce +* (gRPC) [tharsis#239](https://github.com/jiujiteiro/ethermint/pull/239) Query `ChainConfig` via gRPC. +* (rpc) [tharsis#181](https://github.com/jiujiteiro/ethermint/pull/181) Use evm denomination for params on tx fee. +* (deps) [tharsis#165](https://github.com/jiujiteiro/ethermint/pull/165) Bump Cosmos SDK and Tendermint versions to [v0.42.6](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.42.6) and [v0.34.11](https://github.com/tendermint/tendermint/releases/tag/v0.34.11), respectively. +* (evm) [tharsis#66](https://github.com/jiujiteiro/ethermint/issues/66) Support legacy transaction types for signing. +* (evm) [tharsis#24](https://github.com/jiujiteiro/ethermint/pull/24) Implement metrics for `MsgEthereumTx`, state transitions, `BeginBlock` and `EndBlock`. +* (rpc) [#124](https://github.com/jiujiteiro/ethermint/issues/124) Implement `txpool_content`, `txpool_inspect` and `txpool_status` RPC methods +* (rpc) [tharsis#112](https://github.com/jiujiteiro/ethermint/pull/153) Fix `eth_coinbase` to return the ethereum address of the validator +* (rpc) [tharsis#176](https://github.com/jiujiteiro/ethermint/issues/176) Support fetching pending nonce ### Bug Fixes -* (rpc) [tharsis#81](https://github.com/tharsis/ethermint/pull/81) Fix transaction hashing and decoding on `eth_sendTransaction`. -* (rpc) [tharsis#45](https://github.com/tharsis/ethermint/pull/45) Use `EmptyUncleHash` and `EmptyRootHash` for empty ethereum `Header` fields. +* (rpc) [tharsis#81](https://github.com/jiujiteiro/ethermint/pull/81) Fix transaction hashing and decoding on `eth_sendTransaction`. +* (rpc) [tharsis#45](https://github.com/jiujiteiro/ethermint/pull/45) Use `EmptyUncleHash` and `EmptyRootHash` for empty ethereum `Header` fields. ## [v0.4.1] - 2021-03-01 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 808dcdb6e3..03d6ec1733 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,8 +25,8 @@ workflow and standards. Contributing to this repo can mean many things such as participating in discussion or proposing code changes. To ensure a smooth workflow for all contributors, the following general procedure for contributing has been established: -1. Either [open](https://github.com/tharsis/ethermint/issues/new/choose) - or [find](https://github.com/tharsis/ethermint/issues) an issue you have identified and would like to contribute to +1. Either [open](https://github.com/jiujiteiro/ethermint/issues/new/choose) + or [find](https://github.com/jiujiteiro/ethermint/issues) an issue you have identified and would like to contribute to resolving. 2. Participate in thoughtful discussion on that issue. 3. If you would like to contribute: @@ -57,12 +57,12 @@ PR, but be aware that for more complex problems/features, if a PR is opened befo taken place in a github issue, that PR runs a high likelihood of being rejected. Looking for a good place to start contributing? How about checking out -some [good first issues](https://github.com/tharsis/ethermint/issues?q=label%3A%22good+first+issue%22). +some [good first issues](https://github.com/jiujiteiro/ethermint/issues?q=label%3A%22good+first+issue%22). ## Architecture Decision Records (ADR) When proposing an architecture decision for Ethermint, please create -an [ADR](https://github.com/tharsis/ethermint/blob/main/docs/architecture/README.md) so further discussions can be +an [ADR](https://github.com/jiujiteiro/ethermint/blob/main/docs/architecture/README.md) so further discussions can be made. We are following this process so all involved parties are in agreement before any party begins coding the proposed implementation. If you would like to see some examples of how these are written refer to [Tendermint ADRs](https://github.com/tendermint/tendermint/tree/master/docs/architecture). @@ -70,14 +70,14 @@ to [Tendermint ADRs](https://github.com/tendermint/tendermint/tree/master/docs/a ## Forking Please note that Go requires code to live under absolute paths, which complicates forking. While my fork lives -at `https://github.com/tharsis/ethermint`, the code should never exist -at `$GOPATH/src/github.com/tharsis/ethermint`. Instead, we use `git remote` to add the fork as a new remote for the -original repo,`$GOPATH/src/github.com/tharsis/ethermint`, and do all the work there. +at `https://github.com/jiujiteiro/ethermint`, the code should never exist +at `$GOPATH/src/github.com/jiujiteiro/ethermint`. Instead, we use `git remote` to add the fork as a new remote for the +original repo,`$GOPATH/src/github.com/jiujiteiro/ethermint`, and do all the work there. For instance, to create a fork and work on a branch of it, you would: 1. Create the fork on github, using the fork button. -2. Go to the original repo checked out locally. (i.e. `$GOPATH/src/github.com/tharsis/ethermint`) +2. Go to the original repo checked out locally. (i.e. `$GOPATH/src/github.com/jiujiteiro/ethermint`) 3. `git remote rename origin upstream` 4. `git remote add origin git@github.com:tharsis/ethermint.git` @@ -140,7 +140,7 @@ For example, in vscode your `.vscode/settings.json` should look like: 2. `development` must never fail `make lint, make test, make test-race, make test-rpc, make test-solidity, make test-import` 3. No `--force` onto `development` (except when reverting a broken commit, which should seldom happen). -4. Create your feature branch from `development` either on `github.com/tharsis/ethermint`, or your fork ( +4. Create your feature branch from `development` either on `github.com/jiujiteiro/ethermint`, or your fork ( using `git remote add origin`). 5. Before submitting a pull request, begin `git rebase` on top of `development`. diff --git a/Dockerfile b/Dockerfile index 3ef5f5757b..92139782b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM golang:alpine AS build-env ENV PACKAGES git build-base # Set working directory for the build -WORKDIR /go/src/github.com/tharsis/ethermint +WORKDIR /go/src/github.com/jiujiteiro/ethermint # Install dependencies RUN apk add --update $PACKAGES @@ -24,7 +24,7 @@ RUN apk add --update ca-certificates jq WORKDIR /root # Copy over binaries from the build-env -COPY --from=build-env /go/src/github.com/tharsis/ethermint/build/ethermintd /usr/bin/ethermintd +COPY --from=build-env /go/src/github.com/jiujiteiro/ethermint/build/ethermintd /usr/bin/ethermintd # Run ethermintd by default CMD ["ethermintd"] diff --git a/Makefile b/Makefile index b1a58a2859..115d3ee7a1 100755 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ ETHERMINT_BINARY = ethermintd ETHERMINT_DIR = ethermint BUILDDIR ?= $(CURDIR)/build SIMAPP = ./app -HTTPS_GIT := https://github.com/tharsis/ethermint.git +HTTPS_GIT := https://github.com/jiujiteiro/ethermint.git DOCKER := $(shell which docker) DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf @@ -263,7 +263,7 @@ update-swagger-docs: statik .PHONY: update-swagger-docs godocs: - @echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/tharsis/ethermint/types" + @echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/jiujiteiro/ethermint/types" godoc -http=:6060 # This builds a docs site for each branch/tag in `./docs/versions` @@ -399,7 +399,7 @@ lint-fix: format: find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -name '*.pb.go' | xargs gofmt -w -s find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -name '*.pb.go' | xargs misspell -w - find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -name '*.pb.go' | xargs goimports -w -local github.com/tharsis/ethermint + find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -name '*.pb.go' | xargs goimports -w -local github.com/jiujiteiro/ethermint .PHONY: format ############################################################################### diff --git a/README.md b/README.md index a1f4fc61bb..77854c6279 100644 --- a/README.md +++ b/README.md @@ -8,31 +8,31 @@ parent:
- - Version + + Version - - License: Apache-2.0 + + License: Apache-2.0 - - GoDoc + + GoDoc - - Go report card + + Go report card
Discord - - Build Status + + Build Status - - Lint Status + + Lint Status - - Code Coverage + + Code Coverage
diff --git a/app/ante/ante.go b/app/ante/ante.go index 45a6ed79c1..6e0b0d5362 100644 --- a/app/ante/ante.go +++ b/app/ante/ante.go @@ -13,7 +13,7 @@ import ( authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" ) const ( diff --git a/app/ante/ante_test.go b/app/ante/ante_test.go index 5bfa37988a..a2f4a18d81 100644 --- a/app/ante/ante_test.go +++ b/app/ante/ante_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" ) func (suite AnteTestSuite) TestAnteHandler() { diff --git a/app/ante/eth.go b/app/ante/eth.go index b0dc85448f..c981de6f2f 100644 --- a/app/ante/eth.go +++ b/app/ante/eth.go @@ -8,8 +8,8 @@ import ( authante "github.com/cosmos/cosmos-sdk/x/auth/ante" "github.com/palantir/stacktrace" - ethermint "github.com/tharsis/ethermint/types" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + ethermint "github.com/jiujiteiro/ethermint/types" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" diff --git a/app/ante/eth_test.go b/app/ante/eth_test.go index 7bb9f4a1c7..d13fbdd013 100644 --- a/app/ante/eth_test.go +++ b/app/ante/eth_test.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/tharsis/ethermint/app/ante" - "github.com/tharsis/ethermint/tests" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/app/ante" + "github.com/jiujiteiro/ethermint/tests" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" diff --git a/app/ante/utils_test.go b/app/ante/utils_test.go index 8739c8fb31..c159498b0d 100644 --- a/app/ante/utils_test.go +++ b/app/ante/utils_test.go @@ -21,12 +21,12 @@ import ( authtx "github.com/cosmos/cosmos-sdk/x/auth/tx" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/tharsis/ethermint/app" - ante "github.com/tharsis/ethermint/app/ante" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" - "github.com/tharsis/ethermint/encoding" - "github.com/tharsis/ethermint/tests" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/app" + ante "github.com/jiujiteiro/ethermint/app/ante" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" + "github.com/jiujiteiro/ethermint/encoding" + "github.com/jiujiteiro/ethermint/tests" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" ) diff --git a/app/app.go b/app/app.go index 95ae9372f9..d767182208 100644 --- a/app/app.go +++ b/app/app.go @@ -93,14 +93,14 @@ import ( ibckeeper "github.com/cosmos/ibc-go/modules/core/keeper" // unnamed import of statik for swagger UI support - _ "github.com/tharsis/ethermint/client/docs/statik" - - "github.com/tharsis/ethermint/app/ante" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm" - evmrest "github.com/tharsis/ethermint/x/evm/client/rest" - evmkeeper "github.com/tharsis/ethermint/x/evm/keeper" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + _ "github.com/jiujiteiro/ethermint/client/docs/statik" + + "github.com/jiujiteiro/ethermint/app/ante" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm" + evmrest "github.com/jiujiteiro/ethermint/x/evm/client/rest" + evmkeeper "github.com/jiujiteiro/ethermint/x/evm/keeper" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" ) func init() { diff --git a/app/app_test.go b/app/app_test.go index 4dbb4f9e5d..6de2348726 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -13,7 +13,7 @@ import ( "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" - "github.com/tharsis/ethermint/encoding" + "github.com/jiujiteiro/ethermint/encoding" ) func TestEthermintAppExport(t *testing.T) { diff --git a/app/export.go b/app/export.go index 19d237f12c..d973684af5 100644 --- a/app/export.go +++ b/app/export.go @@ -13,7 +13,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/tharsis/ethermint/encoding" + "github.com/jiujiteiro/ethermint/encoding" ) // NewDefaultGenesisState generates the default state for the application. diff --git a/app/test_helpers.go b/app/test_helpers.go index 0c01a604a6..4c18ad231a 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -5,7 +5,7 @@ import ( "time" "github.com/cosmos/cosmos-sdk/simapp" - "github.com/tharsis/ethermint/encoding" + "github.com/jiujiteiro/ethermint/encoding" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/libs/log" diff --git a/client/config.go b/client/config.go index 3662e98f87..db697af08b 100644 --- a/client/config.go +++ b/client/config.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" - ethermint "github.com/tharsis/ethermint/types" + ethermint "github.com/jiujiteiro/ethermint/types" ) // InitConfig adds the chain-id, encoding and output flags to the persistent flag set. diff --git a/client/docs/statik/init.go b/client/docs/statik/init.go index 49c0d09e9d..2fcdeaaaa8 100644 --- a/client/docs/statik/init.go +++ b/client/docs/statik/init.go @@ -1,3 +1,3 @@ package statik -// This just for fixing the error in importing empty github.com/tharsis/ethermint/client/docs/statik +// This just for fixing the error in importing empty github.com/jiujiteiro/ethermint/client/docs/statik diff --git a/client/export.go b/client/export.go index 0518f00ae3..5dfd064e4a 100644 --- a/client/export.go +++ b/client/export.go @@ -14,8 +14,8 @@ import ( "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/crypto/keyring" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" - "github.com/tharsis/ethermint/crypto/hd" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" + "github.com/jiujiteiro/ethermint/crypto/hd" ) // UnsafeExportEthKeyCommand exports a key with the given name as a private key in hex format. diff --git a/client/import.go b/client/import.go index baa761953e..acd89a8c40 100644 --- a/client/import.go +++ b/client/import.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keyring" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" - "github.com/tharsis/ethermint/crypto/hd" + "github.com/jiujiteiro/ethermint/crypto/hd" ) // UnsafeImportKeyCommand imports private keys from a keyfile. diff --git a/client/keys.go b/client/keys.go index 889a7fd5ae..b2b27191c3 100644 --- a/client/keys.go +++ b/client/keys.go @@ -11,8 +11,8 @@ import ( "github.com/tendermint/tendermint/libs/cli" "github.com/cosmos/cosmos-sdk/crypto/keyring" - clientkeys "github.com/tharsis/ethermint/client/keys" - "github.com/tharsis/ethermint/crypto/hd" + clientkeys "github.com/jiujiteiro/ethermint/client/keys" + "github.com/jiujiteiro/ethermint/crypto/hd" ) // KeyCommands registers a sub-tree of commands to interact with diff --git a/client/testnet.go b/client/testnet.go index b8e5322b1b..4037606e18 100644 --- a/client/testnet.go +++ b/client/testnet.go @@ -39,10 +39,10 @@ import ( mintypes "github.com/cosmos/cosmos-sdk/x/mint/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/tharsis/ethermint/cmd/ethermintd/config" - "github.com/tharsis/ethermint/crypto/hd" - ethermint "github.com/tharsis/ethermint/types" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/cmd/ethermintd/config" + "github.com/jiujiteiro/ethermint/crypto/hd" + ethermint "github.com/jiujiteiro/ethermint/types" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" ) var ( diff --git a/cmd/ethermintd/cmd_test.go b/cmd/ethermintd/cmd_test.go index 398e3063f2..41165870f2 100644 --- a/cmd/ethermintd/cmd_test.go +++ b/cmd/ethermintd/cmd_test.go @@ -10,8 +10,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - "github.com/tharsis/ethermint/app" - ethermintd "github.com/tharsis/ethermint/cmd/ethermintd" + "github.com/jiujiteiro/ethermint/app" + ethermintd "github.com/jiujiteiro/ethermint/cmd/ethermintd" ) func TestInitCmd(t *testing.T) { diff --git a/cmd/ethermintd/config/config.go b/cmd/ethermintd/config/config.go index bcfaff9891..e4bb2c0cee 100644 --- a/cmd/ethermintd/config/config.go +++ b/cmd/ethermintd/config/config.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/server/config" "github.com/spf13/viper" - ethermint "github.com/tharsis/ethermint/types" + ethermint "github.com/jiujiteiro/ethermint/types" ) const ( diff --git a/cmd/ethermintd/flags.go b/cmd/ethermintd/flags.go index ef228e2965..a81dfbffc5 100644 --- a/cmd/ethermintd/flags.go +++ b/cmd/ethermintd/flags.go @@ -8,7 +8,7 @@ import ( "github.com/spf13/cobra" "github.com/spf13/viper" - "github.com/tharsis/ethermint/version" + "github.com/jiujiteiro/ethermint/version" ) const ( diff --git a/cmd/ethermintd/genaccounts.go b/cmd/ethermintd/genaccounts.go index 7548de6aab..88d90cfb6f 100644 --- a/cmd/ethermintd/genaccounts.go +++ b/cmd/ethermintd/genaccounts.go @@ -21,9 +21,9 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" "github.com/cosmos/cosmos-sdk/crypto/keyring" - "github.com/tharsis/ethermint/crypto/hd" - ethermint "github.com/tharsis/ethermint/types" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/crypto/hd" + ethermint "github.com/jiujiteiro/ethermint/types" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" ) const ( diff --git a/cmd/ethermintd/main.go b/cmd/ethermintd/main.go index 241b9e4c80..732ba18b60 100644 --- a/cmd/ethermintd/main.go +++ b/cmd/ethermintd/main.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/server" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/tharsis/ethermint/app" + "github.com/jiujiteiro/ethermint/app" ) func main() { diff --git a/cmd/ethermintd/root.go b/cmd/ethermintd/root.go index 9e07460958..02d776ce0e 100644 --- a/cmd/ethermintd/root.go +++ b/cmd/ethermintd/root.go @@ -32,11 +32,11 @@ import ( "github.com/cosmos/cosmos-sdk/x/crisis" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - "github.com/tharsis/ethermint/app" - ethermintclient "github.com/tharsis/ethermint/client" - ethermintconfig "github.com/tharsis/ethermint/cmd/ethermintd/config" - "github.com/tharsis/ethermint/encoding" - "github.com/tharsis/ethermint/server" + "github.com/jiujiteiro/ethermint/app" + ethermintclient "github.com/jiujiteiro/ethermint/client" + ethermintconfig "github.com/jiujiteiro/ethermint/cmd/ethermintd/config" + "github.com/jiujiteiro/ethermint/encoding" + "github.com/jiujiteiro/ethermint/server" ) // NewRootCmd creates a new root command for simd. It is called once in the diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 6f838ffa87..6421ed4bd5 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -67,7 +67,7 @@ module.exports = { title: 'Resources', children: [{ title: 'Ethermint API Reference', - path: 'https://godoc.org/github.com/tharsis/ethermint' + path: 'https://godoc.org/github.com/jiujiteiro/ethermint' }, { title: 'Cosmos REST API Spec', @@ -110,7 +110,7 @@ module.exports = { }, services: [{ service: 'github', - url: 'https://github.com/tharsis/ethermint' + url: 'https://github.com/jiujiteiro/ethermint' } ], smallprint: 'This website is maintained by Tharsis.', @@ -146,11 +146,11 @@ module.exports = { title: 'Contributing', children: [{ title: 'Contributing to the docs', - url: 'https://github.com/tharsis/ethermint/tree/main/docs' + url: 'https://github.com/jiujiteiro/ethermint/tree/main/docs' }, { title: 'Source code on GitHub', - url: 'https://github.com/tharsis/ethermint/blob/main/docs/DOCS_README.md' + url: 'https://github.com/jiujiteiro/ethermint/blob/main/docs/DOCS_README.md' } ] } diff --git a/go.mod b/go.mod index d8e51d2271..d1ec11a234 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/tharsis/ethermint +module github.com/jiujiteiro/ethermint go 1.15 diff --git a/proto/ethermint/evm/v1alpha1/evm.proto b/proto/ethermint/evm/v1alpha1/evm.proto index f461f89c3e..b136a7a201 100644 --- a/proto/ethermint/evm/v1alpha1/evm.proto +++ b/proto/ethermint/evm/v1alpha1/evm.proto @@ -3,7 +3,7 @@ package ethermint.evm.v1alpha1; import "gogoproto/gogo.proto"; -option go_package = "github.com/tharsis/ethermint/x/evm/types"; +option go_package = "github.com/jiujiteiro/ethermint/x/evm/types"; // Params defines the EVM module parameters message Params { diff --git a/tests/importer/importer_test.go b/tests/importer/importer_test.go index a0d4a60d78..83b3c7d2cb 100644 --- a/tests/importer/importer_test.go +++ b/tests/importer/importer_test.go @@ -30,10 +30,10 @@ package importer // stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" // stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" -// "github.com/tharsis/ethermint/encoding/codec" -// "github.com/tharsis/ethermint/types" -// evmkeeper "github.com/tharsis/ethermint/x/evm/keeper" -// evmtypes "github.com/tharsis/ethermint/x/evm/types" +// "github.com/jiujiteiro/ethermint/encoding/codec" +// "github.com/jiujiteiro/ethermint/types" +// evmkeeper "github.com/jiujiteiro/ethermint/x/evm/keeper" +// evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" // ethcmn "github.com/ethereum/go-ethereum/common" // "github.com/ethereum/go-ethereum/consensus/ethash" diff --git a/tests/rpc/rpc_pending_test.go b/tests/rpc/rpc_pending_test.go index 474151c7d1..7fbbd665bc 100644 --- a/tests/rpc/rpc_pending_test.go +++ b/tests/rpc/rpc_pending_test.go @@ -15,7 +15,7 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" "github.com/stretchr/testify/require" - rpctypes "github.com/tharsis/ethermint/ethereum/rpc/types" + rpctypes "github.com/jiujiteiro/ethermint/ethereum/rpc/types" ) // func TestMain(m *testing.M) { diff --git a/tests/rpc/rpc_test.go b/tests/rpc/rpc_test.go index 12045672f9..e9580e522c 100644 --- a/tests/rpc/rpc_test.go +++ b/tests/rpc/rpc_test.go @@ -19,9 +19,9 @@ import ( "github.com/stretchr/testify/require" - rpctypes "github.com/tharsis/ethermint/ethereum/rpc/types" - ethermint "github.com/tharsis/ethermint/types" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + rpctypes "github.com/jiujiteiro/ethermint/ethereum/rpc/types" + ethermint "github.com/jiujiteiro/ethermint/types" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" ethcmn "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" diff --git a/types/account_test.go b/types/account_test.go index fc6025aaf9..8494054a22 100644 --- a/types/account_test.go +++ b/types/account_test.go @@ -11,10 +11,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - cryptocodec "github.com/tharsis/ethermint/crypto/codec" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" - ethermintcodec "github.com/tharsis/ethermint/encoding/codec" - "github.com/tharsis/ethermint/types" + cryptocodec "github.com/jiujiteiro/ethermint/crypto/codec" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" + ethermintcodec "github.com/jiujiteiro/ethermint/encoding/codec" + "github.com/jiujiteiro/ethermint/types" ) func init() { diff --git a/x/evm/atlas/atlas-v0.3.1.md b/x/evm/atlas/atlas-v0.3.1.md index d2d56ac926..d9a3e2f271 100644 --- a/x/evm/atlas/atlas-v0.3.1.md +++ b/x/evm/atlas/atlas-v0.3.1.md @@ -11,9 +11,9 @@ The `x/evm` module is responsible for executing Ethereum Virtual Machine (EVM) s "github.com/cosmos/cosmos-sdk/x/auth" "github.com/cosmos/cosmos-sdk/x/bank" - "github.com/tharsis/ethermint/app/ante" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm" + "github.com/jiujiteiro/ethermint/app/ante" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm" ) ``` diff --git a/x/evm/atlas/atlas.toml b/x/evm/atlas/atlas.toml index 51abaca417..f0a07f2831 100644 --- a/x/evm/atlas/atlas.toml +++ b/x/evm/atlas/atlas.toml @@ -1,6 +1,6 @@ [module] description = "The evm module executes Ethereum Virtual Machine (EVM) state transitions." -homepage = "https://github.com/tharsis/ethermint" +homepage = "https://github.com/jiujiteiro/ethermint" keywords = [ "evm", "ethereum", @@ -10,7 +10,7 @@ keywords = [ name = "x/evm" [bug_tracker] -url = "https://github.com/tharsis/ethermint/issues" +url = "https://github.com/jiujiteiro/ethermint/issues" [[authors]] name = "fedekunze" @@ -28,7 +28,7 @@ name = "noot" name = "araskachoi" [version] -documentation = "https://raw.githubusercontent.com/tharsis/ethermint/main/x/evm/atlas/atlas-v0.3.1.md" -repo = "https://github.com/tharsis/ethermint/releases/tag/v0.3.1" +documentation = "https://raw.githubusercontent.com/jiujiteiro/ethermint/main/x/evm/atlas/atlas-v0.3.1.md" +repo = "https://github.com/jiujiteiro/ethermint/releases/tag/v0.3.1" sdk_compat = "v0.39.x" version = "v0.3.1" \ No newline at end of file diff --git a/x/evm/genesis.go b/x/evm/genesis.go index f4d2b2bdc7..af4c046a50 100644 --- a/x/evm/genesis.go +++ b/x/evm/genesis.go @@ -8,9 +8,9 @@ import ( ethcmn "github.com/ethereum/go-ethereum/common" abci "github.com/tendermint/tendermint/abci/types" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm/keeper" - "github.com/tharsis/ethermint/x/evm/types" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm/keeper" + "github.com/jiujiteiro/ethermint/x/evm/types" ) // InitGenesis initializes genesis state based on exported genesis diff --git a/x/evm/genesis_test.go b/x/evm/genesis_test.go index 12dfbdc15c..3eabbf87a0 100644 --- a/x/evm/genesis_test.go +++ b/x/evm/genesis_test.go @@ -6,9 +6,9 @@ import ( "github.com/ethereum/go-ethereum/common" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" - "github.com/tharsis/ethermint/x/evm" - "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" + "github.com/jiujiteiro/ethermint/x/evm" + "github.com/jiujiteiro/ethermint/x/evm/types" ) func (suite *EvmTestSuite) TestInitGenesis() { diff --git a/x/evm/handler.go b/x/evm/handler.go index 21ae7abc08..3143ff2233 100644 --- a/x/evm/handler.go +++ b/x/evm/handler.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/x/evm/types" ) // NewHandler returns a handler for Ethermint type messages. diff --git a/x/evm/handler_test.go b/x/evm/handler_test.go index 0a1e143f4c..70356838f0 100644 --- a/x/evm/handler_test.go +++ b/x/evm/handler_test.go @@ -14,10 +14,10 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keyring" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/tharsis/ethermint/app" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" - "github.com/tharsis/ethermint/tests" - "github.com/tharsis/ethermint/x/evm" + "github.com/jiujiteiro/ethermint/app" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" + "github.com/jiujiteiro/ethermint/tests" + "github.com/jiujiteiro/ethermint/x/evm" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" ) diff --git a/x/evm/keeper/abci.go b/x/evm/keeper/abci.go index 98c5b9d4f6..5df399fffb 100644 --- a/x/evm/keeper/abci.go +++ b/x/evm/keeper/abci.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/x/evm/types" ) // BeginBlock sets the block hash -> block height map for the previous block height diff --git a/x/evm/keeper/grpc_query.go b/x/evm/keeper/grpc_query.go index c840aae52d..45b0968fd7 100644 --- a/x/evm/keeper/grpc_query.go +++ b/x/evm/keeper/grpc_query.go @@ -12,8 +12,8 @@ import ( ethcmn "github.com/ethereum/go-ethereum/common" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm/types" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/evm/keeper/grpc_query_test.go b/x/evm/keeper/grpc_query_test.go index a21a2fe11f..3221da8b03 100644 --- a/x/evm/keeper/grpc_query_test.go +++ b/x/evm/keeper/grpc_query_test.go @@ -12,8 +12,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm/types" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm/types" grpctypes "github.com/cosmos/cosmos-sdk/types/grpc" ) diff --git a/x/evm/keeper/keeper.go b/x/evm/keeper/keeper.go index a73e2118a5..518288ab70 100644 --- a/x/evm/keeper/keeper.go +++ b/x/evm/keeper/keeper.go @@ -13,8 +13,8 @@ import ( "github.com/palantir/stacktrace" "github.com/tendermint/tendermint/libs/log" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm/types" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm/types" ) // Keeper wraps the CommitStateDB, allowing us to pass in SDK context while adhering diff --git a/x/evm/keeper/keeper_test.go b/x/evm/keeper/keeper_test.go index 9002cb6b33..4d1737d70c 100644 --- a/x/evm/keeper/keeper_test.go +++ b/x/evm/keeper/keeper_test.go @@ -12,11 +12,11 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/tharsis/ethermint/app" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" - "github.com/tharsis/ethermint/encoding" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/app" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" + "github.com/jiujiteiro/ethermint/encoding" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm/types" "github.com/ethereum/go-ethereum/common" ethcmn "github.com/ethereum/go-ethereum/common" diff --git a/x/evm/keeper/msg_server.go b/x/evm/keeper/msg_server.go index 26dc242b51..8331f0b2c7 100644 --- a/x/evm/keeper/msg_server.go +++ b/x/evm/keeper/msg_server.go @@ -13,7 +13,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/x/evm/types" ) var _ types.MsgServer = &Keeper{} diff --git a/x/evm/keeper/params.go b/x/evm/keeper/params.go index cecb7a4a1c..c97334c23a 100644 --- a/x/evm/keeper/params.go +++ b/x/evm/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/x/evm/types" ) // GetParams returns the total set of evm parameters. diff --git a/x/evm/keeper/params_test.go b/x/evm/keeper/params_test.go index 9cc6577fe2..24869c05ce 100644 --- a/x/evm/keeper/params_test.go +++ b/x/evm/keeper/params_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/x/evm/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/x/evm/keeper/state_transition.go b/x/evm/keeper/state_transition.go index 797a2f9476..791caf256d 100644 --- a/x/evm/keeper/state_transition.go +++ b/x/evm/keeper/state_transition.go @@ -14,8 +14,8 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm/types" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" diff --git a/x/evm/keeper/statedb.go b/x/evm/keeper/statedb.go index 0d909b8e7f..b8ea0d3c05 100644 --- a/x/evm/keeper/statedb.go +++ b/x/evm/keeper/statedb.go @@ -13,8 +13,8 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - ethermint "github.com/tharsis/ethermint/types" - "github.com/tharsis/ethermint/x/evm/types" + ethermint "github.com/jiujiteiro/ethermint/types" + "github.com/jiujiteiro/ethermint/x/evm/types" ) var _ vm.StateDB = &Keeper{} diff --git a/x/evm/keeper/statedb_test.go b/x/evm/keeper/statedb_test.go index 35f4667b2c..1afd88a0ca 100644 --- a/x/evm/keeper/statedb_test.go +++ b/x/evm/keeper/statedb_test.go @@ -14,9 +14,9 @@ import ( "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/tharsis/ethermint/tests" - "github.com/tharsis/ethermint/x/evm/types" - evmtypes "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/tests" + "github.com/jiujiteiro/ethermint/x/evm/types" + evmtypes "github.com/jiujiteiro/ethermint/x/evm/types" ) func (suite *KeeperTestSuite) TestCreateAccount() { diff --git a/x/evm/module.go b/x/evm/module.go index d5ecf49709..9499531274 100644 --- a/x/evm/module.go +++ b/x/evm/module.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/tharsis/ethermint/x/evm/client/cli" - "github.com/tharsis/ethermint/x/evm/keeper" - "github.com/tharsis/ethermint/x/evm/types" + "github.com/jiujiteiro/ethermint/x/evm/client/cli" + "github.com/jiujiteiro/ethermint/x/evm/keeper" + "github.com/jiujiteiro/ethermint/x/evm/types" ) var ( diff --git a/x/evm/spec/01_concepts.md b/x/evm/spec/01_concepts.md index 2ad46bddc0..a28dc34b06 100644 --- a/x/evm/spec/01_concepts.md +++ b/x/evm/spec/01_concepts.md @@ -27,7 +27,7 @@ The usage pattern is as follows: The `x/evm` module `GenesisState` defines the state necessary for initializing the chain from a previous exported height. -+++ https://github.com/tharsis/ethermint/blob/v0.3.1/x/evm/types/genesis.go#L14-L20 ++++ https://github.com/jiujiteiro/ethermint/blob/v0.3.1/x/evm/types/genesis.go#L14-L20 ### Genesis Accounts @@ -42,7 +42,7 @@ module `AccountKeeper` and the balance must match the balance of the `EvmDenom` defined on the `GenesisState`'s `Param`. The values for the address and the balance amount maintain the same format as the ones from the SDK to make manual inspections easier on the genesis.json. -+++ https://github.com/tharsis/ethermint/blob/v0.3.1/x/evm/types/genesis.go#L22-L30 ++++ https://github.com/jiujiteiro/ethermint/blob/v0.3.1/x/evm/types/genesis.go#L22-L30 ### Transaction Logs @@ -54,7 +54,7 @@ state to prevent the queries from failing. `TxsLogs` is the field that contains all the transaction logs that need to be persisted after an upgrade. It uses an array instead of a map to ensure determinism on the iteration. -+++ https://github.com/tharsis/ethermint/blob/v0.3.1/x/evm/types/logs.go#L12-L18 ++++ https://github.com/jiujiteiro/ethermint/blob/v0.3.1/x/evm/types/logs.go#L12-L18 ### Chain Config @@ -70,7 +70,7 @@ to a past block). If you want to update the config values, use an software upgrade procedure. -+++ https://github.com/tharsis/ethermint/blob/v0.3.1/x/evm/types/chain_config.go#L16-L45 ++++ https://github.com/jiujiteiro/ethermint/blob/v0.3.1/x/evm/types/chain_config.go#L16-L45 ### Params diff --git a/x/evm/spec/02_state.md b/x/evm/spec/02_state.md index 973ad1e8b5..d864390f88 100644 --- a/x/evm/spec/02_state.md +++ b/x/evm/spec/02_state.md @@ -28,7 +28,7 @@ Instead of using a trie and database for querying and persistence, the `CommitSt The `CommitStateDB` contains a store key that allows the DB to write to a concrete subtree of the multistore that is only accessible to the EVM module. -+++ https://github.com/tharsis/ethermint/blob/v0.3.1/x/evm/types/statedb.go#L33-L85 ++++ https://github.com/jiujiteiro/ethermint/blob/v0.3.1/x/evm/types/statedb.go#L33-L85 The functionalities provided by the Ethermint `StateDB` are: @@ -68,7 +68,7 @@ halting. When a `stateObject` is committed during `EndBlock`. It sets sets the account contract code to store, as well as the dirty storage state. The account's nonce and the account balance are updated by calling the `auth` and `bank` module setter functions, respectively. -+++ https://github.com/tharsis/ethermint/blob/v0.3.1/x/evm/types/state_object.go#L49-L81 ++++ https://github.com/jiujiteiro/ethermint/blob/v0.3.1/x/evm/types/state_object.go#L49-L81 The functionalities provided by the Ethermint `stateObject` are: diff --git a/x/evm/spec/04_messages.md b/x/evm/spec/04_messages.md index ede9c1bd19..e536f66673 100644 --- a/x/evm/spec/04_messages.md +++ b/x/evm/spec/04_messages.md @@ -13,9 +13,9 @@ One remark about the `MsgEthereumTx` is that it implements both the [`sdk.Msg`]( interfaces (generally SDK messages only implement the former, while the latter is a group of messages bundled together). The reason of this, is because the `MsgEthereumTx` must not be included in a [`auth.StdTx`](https://github.com/cosmos/cosmos-sdk/blob/v0.39.2/x/auth/types/stdtx.go#L23-L30) (SDK's standard transaction type) as it performs gas and fee checks using the Ethereum logic from Geth instead of the Cosmos SDK checks done on the `auth` module `AnteHandler`. -+++ https://github.com/tharsis/ethermint/blob/v0.3.1/x/evm/types/msg.go#L117-L124 ++++ https://github.com/jiujiteiro/ethermint/blob/v0.3.1/x/evm/types/msg.go#L117-L124 -+++ https://github.com/tharsis/ethermint/blob/v0.3.1/x/evm/types/tx_data.go#L12-L29 ++++ https://github.com/jiujiteiro/ethermint/blob/v0.3.1/x/evm/types/tx_data.go#L12-L29 This message validation is expected to fail if: diff --git a/x/evm/types/access_list_tx.go b/x/evm/types/access_list_tx.go index 5fed1d11bf..f2a5fc86a0 100644 --- a/x/evm/types/access_list_tx.go +++ b/x/evm/types/access_list_tx.go @@ -7,7 +7,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/tharsis/ethermint/types" + "github.com/jiujiteiro/ethermint/types" ) func newAccessListTx(tx *ethtypes.Transaction) *AccessListTx { diff --git a/x/evm/types/genesis_test.go b/x/evm/types/genesis_test.go index 43cd9cadf6..a1ed44dea4 100644 --- a/x/evm/types/genesis_test.go +++ b/x/evm/types/genesis_test.go @@ -7,7 +7,7 @@ import ( ethcmn "github.com/ethereum/go-ethereum/common" - "github.com/tharsis/ethermint/crypto/ethsecp256k1" + "github.com/jiujiteiro/ethermint/crypto/ethsecp256k1" ) type GenesisTestSuite struct { diff --git a/x/evm/types/logs.go b/x/evm/types/logs.go index 44c7f41841..2864b891b1 100644 --- a/x/evm/types/logs.go +++ b/x/evm/types/logs.go @@ -7,7 +7,7 @@ import ( ethcmn "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" - ethermint "github.com/tharsis/ethermint/types" + ethermint "github.com/jiujiteiro/ethermint/types" ) // NewTransactionLogs creates a new NewTransactionLogs instance. diff --git a/x/evm/types/tx_data_test.go b/x/evm/types/tx_data_test.go index a21cf9a948..8963a5e682 100644 --- a/x/evm/types/tx_data_test.go +++ b/x/evm/types/tx_data_test.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" - "github.com/tharsis/ethermint/tests" + "github.com/jiujiteiro/ethermint/tests" ) func TestTxData_chainID(t *testing.T) {