8000 release: v4.0.0 by fedekunze · Pull Request #582 · evmos/evmos · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

release: v4.0.0 #582

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

Merged
merged 2 commits into from
May 9, 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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## Unreleased
## [v4.0.0] - 2022-05-09

### State Machine Breaking

Expand All @@ -52,7 +52,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

- (deps) [\#580](https://github.com/tharsis/evmos/pull/580) Bump Ethermint to [`v0.15.0`](https://github.com/tharsis/ethermint/releases/tag/v0.15.0)
- (gitpod) [\#564](https://github.com/tharsis/evmos/pull/564) Add one-click development environment
- (erc20) [\#556](https://github.com/tharsis/evmos/pull/556) remove deprecated migrations
- (erc20) [\#556](https://github.com/tharsis/evmos/pull/556) Remove deprecated migrations.
- (incentives) [\#551](https://github.com/tharsis/evmos/pull/551) Add additional check to only distribute incentives to EOAs.
- (cmd) [\#543](https://github.com/tharsis/evmos/pull/543) Update mainnet default `min-gas-price` to `0.0025aevmos`.
- (epochs) [\#539](https://github.com/tharsis/evmos/pull/539) Use constants for epoch identifiers.
Expand Down
18 changes: 0 additions & 18 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,6 @@ import (
erc20client "github.com/tharsis/evmos/v4/x/erc20/client"
erc20keeper "github.com/tharsis/evmos/v4/x/erc20/keeper"
erc20types "github.com/tharsis/evmos/v4/x/erc20/types"
"github.com/tharsis/evmos/v4/x/fees"
feeskeeper "github.com/tharsis/evmos/v4/x/fees/keeper"
feestypes "github.com/tharsis/evmos/v4/x/fees/types"
"github.com/tharsis/evmos/v4/x/incentives"
incentivesclient "github.com/tharsis/evmos/v4/x/incentives/client"
incentiveskeeper "github.com/tharsis/evmos/v4/x/incentives/keeper"
Expand Down Expand Up @@ -193,7 +190,6 @@ var (
epochs.AppModuleBasic{},
claims.AppModuleBasic{},
recovery.AppModuleBasic{},
fees.AppModuleBasic{},
)

// module account permissions
Expand Down Expand Up @@ -275,7 +271,6 @@ type Evmos struct {
EpochsKeeper epochskeeper.Keeper
VestingKeeper vestingkeeper.Keeper
RecoveryKeeper *recoverykeeper.Keeper
FeesKeeper feeskeeper.Keeper

// the module manager
mm *module.Manager
Expand Down Expand Up @@ -332,7 +327,6 @@ func NewEvmos(
// evmos keys
inflationtypes.StoreKey, erc20types.StoreKey, incentivestypes.StoreKey,
epochstypes.StoreKey, claimstypes.StoreKey, vestingtypes.StoreKey,
feestypes.StoreKey,
)

// Add the EVM transient store key
Expand Down Expand Up @@ -462,12 +456,6 @@ func NewEvmos(
app.AccountKeeper, app.BankKeeper, app.InflationKeeper, app.StakingKeeper, app.EvmKeeper,
)

app.FeesKeeper = feeskeeper.NewKeeper(
keys[feestypes.StoreKey], appCodec, app.GetSubspace(feestypes.ModuleName),
app.AccountKeeper, app.BankKeeper, app.EvmKeeper,
authtypes.FeeCollectorName,
)

epochsKeeper := epochskeeper.NewKeeper(appCodec, keys[epochstypes.StoreKey])
app.EpochsKeeper = *epochsKeeper.SetHooks(
epochskeeper.NewMultiEpochHooks(
Expand All @@ -487,7 +475,6 @@ func NewEvmos(
evmkeeper.NewMultiEvmHooks(
app.Erc20Keeper.Hooks(),
app.IncentivesKeeper.Hooks(),
app.FeesKeeper.Hooks(),
app.ClaimsKeeper.Hooks(),
),
)
Expand Down Expand Up @@ -589,7 +576,6 @@ func NewEvmos(
claims.NewAppModule(appCodec, *app.ClaimsKeeper),
vesting.NewAppModule(app.VestingKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper),
recovery.NewAppModule(*app.RecoveryKeeper),
fees.NewAppModule(app.FeesKeeper, app.AccountKeeper),
)

// During begin block slashing happens after distr.BeginBlocker so that
Expand Down Expand Up @@ -626,7 +612,6 @@ func NewEvmos(
claimstypes.ModuleName,
incentivestypes.ModuleName,
recoverytypes.ModuleName,
feestypes.ModuleName,
)

// NOTE: fee market module must go last in order to retrieve the block gas used.
Expand Down Expand Up @@ -659,7 +644,6 @@ func NewEvmos(
erc20types.ModuleName,
incentivestypes.ModuleName,
recoverytypes.ModuleName,
feestypes.ModuleName,
)

// NOTE: The genutils module must occur after staking so that pools are
Expand Down Expand Up @@ -695,7 +679,6 @@ func NewEvmos(
incentivestypes.ModuleName,
epochstypes.ModuleName,
recoverytypes.ModuleName,
feestypes.ModuleName,
// NOTE: crisis module must go at the end to check for invariants on each module
crisistypes.ModuleName,
)
Expand Down Expand Up @@ -1016,7 +999,6 @@ func initParamsKeeper(
paramsKeeper.Subspace(claimstypes.ModuleName)
paramsKeeper.Subspace(incentivestypes.ModuleName)
paramsKeeper.Subspace(recoverytypes.ModuleName)
paramsKeeper.Subspace(feestypes.ModuleName)
return paramsKeeper
}

Expand Down
20 changes: 0 additions & 20 deletions proto/evmos/fees/v1/fees.proto

This file was deleted.

35 changes: 0 additions & 35 deletions proto/evmos/fees/v1/genesis.proto

This file was deleted.

89 changes: 0 additions & 89 deletions proto/evmos/fees/v1/query.proto

This file was deleted.

76 changes: 0 additions & 76 deletions proto/evmos/fees/v1/tx.proto

This file was deleted.

Loading
0