Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

all: rename go module to evmos/evmos #703

Merged
merged 2 commits into from
Jun 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ I have...

- [ ] added a relevant changelog entry to the `Unreleased` section in `CHANGELOG.md`
- [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] targeted the correct branch (see [PR Targeting](https://github.com/tharsis/evmos/blob/main/CONTRIBUTING.md#pr-targeting))
- [ ] targeted the correct branch (see [PR Targeting](https://github.com/evmos/evmos/blob/main/CONTRIBUTING.md#pr-targeting))
- [ ] provided a link in the PR description to the relevant issue or specification
- [ ] reviewed "Files changed" and left comments if necessary
- [ ] confirmed all required CI checks have passed
Expand All @@ -32,7 +32,7 @@ Code maintenance:

I have...

- [ ] written unit and integration [tests](https://github.com/tharsis/evmos/blob/main/CONTRIBUTING.md#testing)
- [ ] written unit and integration [tests](https://github.com/evmos/evmos/blob/main/CONTRIBUTING.md#testing)
- [ ] added relevant [`godoc`](https://go.dev/blog/godoc) and [code comments](https://blog.jbowen.dev/2019/09/the-magic-of-go-comments/).
- [ ] updated relevant documentation (`docs/`) or specification (`x/<module>/spec/`)

Expand Down
230 changes: 115 additions & 115 deletions CHANGELOG.md

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/evmos/issues/new/choose)
or [find](https://github.com/tharsis/evmos/issues) an issue you have identified and would like to contribute to
1. Either [open](https://github.com/evmos/evmos/issues/new/choose)
or [find](https://github.com/evmos/evmos/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:
Expand Down Expand Up @@ -57,27 +57,27 @@ 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/evmos/issues?q=label%3A%22good+first+issue%22).
some [good first issues](https://github.com/evmos/evmos/issues?q=label%3A%22good+first+issue%22).

## <span id="adr">Architecture Decision Records (ADR)</span>

When proposing an architecture decision for Evmos, please create
an [ADR](https://github.com/tharsis/evmos/blob/main/docs/architecture/README.md) so further discussions can be
an [ADR](https://github.com/evmos/evmos/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).

## <span id="forking">Forking</span>

Please note that Go requires code to live under absolute paths, which complicates forking. While my fork lives
at `https://github.com/tharsis/evmos`, the code should never exist
at `$GOPATH/src/github.com/tharsis/evmos`. Instead, we use `git remote` to add the fork as a new remote for the
original repo,`$GOPATH/src/github.com/tharsis/evmos`, and do all the work there.
at `https://github.com/evmos/evmos`, the code should never exist
at `$GOPATH/src/github.com/evmos/evmos`. Instead, we use `git remote` to add the fork as a new remote for the
original repo,`$GOPATH/src/github.com/evmos/evmos`, 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/evmos`)
2. Go to the original repo checked out locally. (i.e. `$GOPATH/src/github.com/evmos/evmos`)
3. `git remote rename origin upstream`
4. `git remote add origin git@github.com:tharsis/evmos.git`

Expand Down Expand Up @@ -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-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/evmos`, or your fork (
4. Create your feature branch from `development` either on `github.com/evmos/evmos`, or your fork (
using `git remote add origin`).
5. Before submitting a pull request, begin `git rebase` on top of `development`.

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:stretch AS build-env

WORKDIR /go/src/github.com/tharsis/evmos
WORKDIR /go/src/github.com/evmos/evmos

RUN apt-get update -y
RUN apt-get install git -y
Expand All @@ -16,7 +16,7 @@ RUN apt-get install ca-certificates jq -y

WORKDIR /root

COPY --from=build-env /go/src/github.com/tharsis/evmos/build/evmosd /usr/bin/evmosd
COPY --from=build-env /go/src/github.com/evmos/evmos/build/evmosd /usr/bin/evmosd

EXPOSE 26656 26657 1317 9090

Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ EVMOS_BINARY = evmosd
EVMOS_DIR = evmos
BUILDDIR ?= $(CURDIR)/build
SIMAPP = ./app
HTTPS_GIT := https://github.com/tharsis/evmos.git
HTTPS_GIT := https://github.com/evmos/evmos.git
DOCKER := $(shell which docker)
DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf
NAMESPACE := tharsishq
Expand Down Expand Up @@ -293,7 +293,7 @@ update-swagger-docs: statik
.PHONY: update-swagger-docs

godocs:
@echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/tharsis/evmos/types"
@echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/evmos/evmos/types"
godoc -http=:6060

# Start docs site at localhost:8080
Expand Down Expand Up @@ -444,7 +444,7 @@ lint-fix-contracts:
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/evmos
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/evmos/evmos
.PHONY: format

###############################################################################
Expand Down Expand Up @@ -576,7 +576,7 @@ localnet-show-logstream:
### Releasing ###
###############################################################################

PACKAGE_NAME:=github.com/tharsis/evmos
PACKAGE_NAME:=github.com/evmos/evmos
GOLANG_CROSS_VERSION = v1.17.1
GOPATH ?= '$(HOME)/go'
release-dry-run:
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ parent:
<!-- ![banner](docs/ethermint.jpg) -->

<div align="center">
<a href="https://github.com/tharsis/evmos/releases/latest">
<a href="https://github.com/evmos/evmos/releases/latest">
<img alt="Version" src="https://img.shields.io/github/tag/tharsis/evmos.svg" />
</a>
<a href="https://github.com/tharsis/evmos/blob/main/LICENSE">
<a href="https://github.com/evmos/evmos/blob/main/LICENSE">
<img alt="License: Apache-2.0" src="https://img.shields.io/github/license/tharsis/evmos.svg" />
</a>
<a href="https://pkg.go.dev/github.com/tharsis/evmos">
<img alt="GoDoc" src="https://godoc.org/github.com/tharsis/evmos?status.svg" />
<a href="https://pkg.go.dev/github.com/evmos/evmos">
<img alt="GoDoc" src="https://godoc.org/github.com/evmos/evmos?status.svg" />
</a>
<a href="https://goreportcard.com/report/github.com/tharsis/evmos">
<img alt="Go report card" src="https://goreportcard.com/badge/github.com/tharsis/evmos"/>
<a href="https://goreportcard.com/report/github.com/evmos/evmos">
<img alt="Go report card" src="https://goreportcard.com/badge/github.com/evmos/evmos"/>
</a>
<a href="https://bestpractices.coreinfrastructure.org/projects/5018">
<img alt="Lines of code" src="https://img.shields.io/tokei/lines/github/tharsis/evmos">
Expand All @@ -31,8 +31,8 @@ parent:
<a href="https://discord.gg/evmos">
<img alt="Discord" src="https://img.shields.io/discord/809048090249134080.svg" />
</a>
<a href="https://github.com/tharsis/evmos/actions?query=branch%3Amain+workflow%3ALint">
<img alt="Lint Status" src="https://github.com/tharsis/evmos/actions/workflows/lint.yml/badge.svg?branch=main" />
<a href="https://github.com/evmos/evmos/actions?query=branch%3Amain+workflow%3ALint">
<img alt="Lint Status" src="https://github.com/evmos/evmos/actions/workflows/lint.yml/badge.svg?branch=main" />
</a>
<a href="https://codecov.io/gh/tharsis/evmos">
<img alt="Code Coverage" src="https://codecov.io/gh/tharsis/evmos/branch/main/graph/badge.svg" />
Expand All @@ -55,7 +55,7 @@ For prerequisites and detailed build instructions please read the [Installation]
make install
```

Or check out the latest [release](https://github.com/tharsis/evmos/releases).
Or check out the latest [release](https://github.com/evmos/evmos/releases).

## Quick Start

Expand All @@ -72,7 +72,7 @@ The following chat channels and forums are a great spot to ask questions about E

## Contributing

Looking for a good place to start contributing? Check out some [`good first issues`](https://github.com/tharsis/evmos/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22).
Looking for a good place to start contributing? Check out some [`good first issues`](https://github.com/evmos/evmos/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22).

For additional instructions, standards and style guides, please refer to the [Contributing](./CONTRIBUTING.md) document.

Expand Down
2 changes: 1 addition & 1 deletion app/ante/handler_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
ethante "github.com/tharsis/ethermint/app/ante"
evmtypes "github.com/tharsis/ethermint/x/evm/types"

vestingtypes "github.com/tharsis/evmos/v5/x/vesting/types"
vestingtypes "github.com/evmos/evmos/v5/x/vesting/types"
)

// HandlerOptions defines the list of module keepers required to run the Evmos
Expand Down
4 changes: 2 additions & 2 deletions app/ante/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
authtx "github.com/cosmos/cosmos-sdk/x/auth/tx"
ethtypes "github.com/ethereum/go-ethereum/core/types"
"github.com/evmos/evmos/v5/app"
claimstypes "github.com/evmos/evmos/v5/x/claims/types"
abci "github.com/tendermint/tendermint/abci/types"
"github.com/tendermint/tendermint/crypto/tmhash"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
Expand All @@ -23,8 +25,6 @@ import (
"github.com/tharsis/ethermint/encoding"
evmtypes "github.com/tharsis/ethermint/x/evm/types"
feemarkettypes "github.com/tharsis/ethermint/x/feemarket/types"
"github.com/tharsis/evmos/v5/app"
claimstypes "github.com/tharsis/evmos/v5/x/claims/types"
)

var s *AnteTestSuite
Expand Down
2 changes: 1 addition & 1 deletion app/ante/vesting.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/x/authz"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
vestingtypes "github.com/evmos/evmos/v5/x/vesting/types"
evmtypes "github.com/tharsis/ethermint/x/evm/types"
vestingtypes "github.com/tharsis/evmos/v5/x/vesting/types"
)

// EthVestingTransactionDecorator validates if clawback vesting accounts are
Expand Down
64 changes: 32 additions & 32 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,38 +105,38 @@ import (
feemarkettypes "github.com/tharsis/ethermint/x/feemarket/types"

// unnamed import of statik for swagger UI support
_ "github.com/tharsis/evmos/v5/client/docs/statik"

"github.com/tharsis/evmos/v5/app/ante"
v2 "github.com/tharsis/evmos/v5/app/upgrades/v2"
v4 "github.com/tharsis/evmos/v5/app/upgrades/v4"
v5 "github.com/tharsis/evmos/v5/app/upgrades/v5"
"github.com/tharsis/evmos/v5/x/claims"
claimskeeper "github.com/tharsis/evmos/v5/x/claims/keeper"
claimstypes "github.com/tharsis/evmos/v5/x/claims/types"
"github.com/tharsis/evmos/v5/x/epochs"
epochskeeper "github.com/tharsis/evmos/v5/x/epochs/keeper"
epochstypes "github.com/tharsis/evmos/v5/x/epochs/types"
"github.com/tharsis/evmos/v5/x/erc20"
erc20client "github.com/tharsis/evmos/v5/x/erc20/client"
erc20keeper "github.com/tharsis/evmos/v5/x/erc20/keeper"
erc20types "github.com/tharsis/evmos/v5/x/erc20/types"
"github.com/tharsis/evmos/v5/x/fees"
feeskeeper "github.com/tharsis/evmos/v5/x/fees/keeper"
feestypes "github.com/tharsis/evmos/v5/x/fees/types"
"github.com/tharsis/evmos/v5/x/incentives"
incentivesclient "github.com/tharsis/evmos/v5/x/incentives/client"
incentiveskeeper "github.com/tharsis/evmos/v5/x/incentives/keeper"
incentivestypes "github.com/tharsis/evmos/v5/x/incentives/types"
"github.com/tharsis/evmos/v5/x/inflation"
inflationkeeper "github.com/tharsis/evmos/v5/x/inflation/keeper"
inflationtypes "github.com/tharsis/evmos/v5/x/inflation/types"
"github.com/tharsis/evmos/v5/x/recovery"
recoverykeeper "github.com/tharsis/evmos/v5/x/recovery/keeper"
recoverytypes "github.com/tharsis/evmos/v5/x/recovery/types"
"github.com/tharsis/evmos/v5/x/vesting"
vestingkeeper "github.com/tharsis/evmos/v5/x/vesting/keeper"
vestingtypes "github.com/tharsis/evmos/v5/x/vesting/types"
_ "github.com/evmos/evmos/v5/client/docs/statik"

"github.com/evmos/evmos/v5/app/ante"
v2 "github.com/evmos/evmos/v5/app/upgrades/v2"
v4 "github.com/evmos/evmos/v5/app/upgrades/v4"
v5 "github.com/evmos/evmos/v5/app/upgrades/v5"
"github.com/evmos/evmos/v5/x/claims"
claimskeeper "github.com/evmos/evmos/v5/x/claims/keeper"
claimstypes "github.com/evmos/evmos/v5/x/claims/types"
"github.com/evmos/evmos/v5/x/epochs"
epochskeeper "github.com/evmos/evmos/v5/x/epochs/keeper"
epochstypes "github.com/evmos/evmos/v5/x/epochs/types"
"github.com/evmos/evmos/v5/x/erc20"
erc20client "github.com/evmos/evmos/v5/x/erc20/client"
erc20keeper "github.com/evmos/evmos/v5/x/erc20/keeper"
erc20types "github.com/evmos/evmos/v5/x/erc20/types"
"github.com/evmos/evmos/v5/x/fees"
feeskeeper "github.com/evmos/evmos/v5/x/fees/keeper"
feestypes "github.com/evmos/evmos/v5/x/fees/types"
"github.com/evmos/evmos/v5/x/incentives"
incentivesclient "github.com/evmos/evmos/v5/x/incentives/client"
incentiveskeeper "github.com/evmos/evmos/v5/x/incentives/keeper"
incentivestypes "github.com/evmos/evmos/v5/x/incentives/types"
"github.com/evmos/evmos/v5/x/inflation"
inflationkeeper "github.com/evmos/evmos/v5/x/inflation/keeper"
inflationtypes "github.com/evmos/evmos/v5/x/inflation/types"
"github.com/evmos/evmos/v5/x/recovery"
recoverykeeper "github.com/evmos/evmos/v5/x/recovery/keeper"
recoverytypes "github.com/evmos/evmos/v5/x/recovery/types"
"github.com/evmos/evmos/v5/x/vesting"
vestingkeeper "github.com/evmos/evmos/v5/x/vesting/keeper"
vestingtypes "github.com/evmos/evmos/v5/x/vesting/types"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion app/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"github.com/tendermint/tendermint/libs/log"
dbm "github.com/tendermint/tm-db"

"github.com/evmos/evmos/v5/types"
"github.com/tharsis/ethermint/encoding"
"github.com/tharsis/evmos/v5/types"
)

func TestEvmosExport(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions app/forks.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

v2 "github.com/tharsis/evmos/v5/app/upgrades/v2"
v4 "github.com/tharsis/evmos/v5/app/upgrades/v4"
"github.com/tharsis/evmos/v5/types"
v2 "github.com/evmos/evmos/v5/app/upgrades/v2"
v4 "github.com/evmos/evmos/v5/app/upgrades/v4"
"github.com/evmos/evmos/v5/types"
)

// ScheduleForkUpgrade executes any necessary fork logic for based upon the current
Expand Down
4 changes: 2 additions & 2 deletions app/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
"github.com/tharsis/ethermint/encoding"
feemarkettypes "github.com/tharsis/ethermint/x/feemarket/types"

"github.com/tharsis/evmos/v5/cmd/config"
"github.com/tharsis/evmos/v5/types"
"github.com/evmos/evmos/v5/cmd/config"
"github.com/evmos/evmos/v5/types"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v2/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ const (
// MainnetUpgradeHeight defines the Evmos mainnet block height on which the upgrade will take place
MainnetUpgradeHeight = 58700 // (24 * 60 * 60) / 6 + 44300
// UpgradeInfo defines the binaries that will be used for the upgrade
UpgradeInfo = `'{"binaries":{"darwin/arm64":"https://github.com/tharsis/evmos/releases/download/v2.0.0/evmos_2.0.0_Darwin_arm64.tar.gz","darwin/x86_64":"https://github.com/tharsis/evmos/releases/download/v2.0.0/evmos_2.0.0_Darwin_x86_64.tar.gz","linux/arm64":"https://github.com/tharsis/evmos/releases/download/v2.0.0/evmos_2.0.0_Linux_arm64.tar.gz","linux/x86_64":"https://github.com/tharsis/evmos/releases/download/v2.0.0/evmos_2.0.0_Linux_x86_64.tar.gz","windows/x86_64":"https://github.com/tharsis/evmos/releases/download/v2.0.0/evmos_2.0.0_Windows_x86_64.zip"}}'`
UpgradeInfo = `'{"binaries":{"darwin/arm64":"https://github.com/evmos/evmos/releases/download/v2.0.0/evmos_2.0.0_Darwin_arm64.tar.gz","darwin/x86_64":"https://github.com/evmos/evmos/releases/download/v2.0.0/evmos_2.0.0_Darwin_x86_64.tar.gz","linux/arm64":"https://github.com/evmos/evmos/releases/download/v2.0.0/evmos_2.0.0_Linux_arm64.tar.gz","linux/x86_64":"https://github.com/evmos/evmos/releases/download/v2.0.0/evmos_2.0.0_Linux_x86_64.tar.gz","windows/x86_64":"https://github.com/evmos/evmos/releases/download/v2.0.0/evmos_2.0.0_Windows_x86_64.zip"}}'`
)
4 changes: 2 additions & 2 deletions app/upgrades/v2/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

claimstypes "github.com/tharsis/evmos/v5/x/claims/types"
erc20types "github.com/tharsis/evmos/v5/x/erc20/types"
claimstypes "github.com/evmos/evmos/v5/x/claims/types"
erc20types "github.com/evmos/evmos/v5/x/erc20/types"
)

// CreateUpgradeHandler creates an SDK upgrade handler for v2
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v4/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const (
// TestnetUpgradeHeight defines the Evmos testnet block height on which the upgrade will take place
TestnetUpgradeHeight = 1_200_000
// UpgradeInfo defines the binaries that will be used for the upgrade
UpgradeInfo = `'{"binaries":{"darwin/arm64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Darwin_arm64.tar.gz","darwin/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Darwin_x86_64.tar.gz","linux/arm64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Linux_arm64.tar.gz","linux/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Linux_x86_64.tar.gz","windows/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Windows_x86_64.zip"}}'`
UpgradeInfo = `'{"binaries":{"darwin/arm64":"https://github.com/evmos/evmos/releases/download/v4.0.0/evmos_4.0.0_Darwin_arm64.tar.gz","darwin/x86_64":"https://github.com/evmos/evmos/releases/download/v4.0.0/evmos_4.0.0_Darwin_x86_64.tar.gz","linux/arm64":"https://github.com/evmos/evmos/releases/download/v4.0.0/evmos_4.0.0_Linux_arm64.tar.gz","linux/x86_64":"https://github.com/evmos/evmos/releases/download/v4.0.0/evmos_4.0.0_Linux_x86_64.tar.gz","windows/x86_64":"https://github.com/evmos/evmos/releases/download/v4.0.0/evmos_4.0.0_Windows_x86_64.zip"}}'`

// ExpiredOsmosisClient defines the client ID of the expired Osmosis IBC client
ExpiredOsmosisClient = "07-tendermint-0"
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v4/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
ibcclientkeeper "github.com/cosmos/ibc-go/v3/modules/core/02-client/keeper"
ibcclienttypes "github.com/cosmos/ibc-go/v3/modules/core/02-client/types"

"github.com/tharsis/evmos/v5/types"
"github.com/evmos/evmos/v5/types"
)

// CreateUpgradeHandler creates an SDK upgrade handler for v4
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/v4/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"github.com/tharsis/ethermint/crypto/ethsecp256k1"
feemarkettypes "github.com/tharsis/ethermint/x/feemarket/types"

"github.com/tharsis/evmos/v5/app"
v4 "github.com/tharsis/evmos/v5/app/upgrades/v4"
"github.com/evmos/evmos/v5/app"
v4 "github.com/evmos/evmos/v5/app/upgrades/v4"
)

type UpgradeTestSuite struct {
Expand Down
Loading