mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-14 03:55:19 +00:00
c511c56560
* ibc v3 upgrade * ibc no longer uses confio * add proofs proto for ibc/v3 * wip add ethermint module * update cosmos to 0.45.0 * add ethermint proto & bug fixes * remove todo * update docs * fix a number of bugs * minor comments update * fix breaking tests * Wrap bank keeper for EVM to convert decimals (#1154) * Add bankkeeper wrapper for evm * Remove agas from init-new-chain.sh, use ukava for evm_denom * Fix sdk.Coins conversion, require min 1 coin amount * Remove gas from init script idk how this happened lol * Remove debug logging stmt * Restore original init ukava amounts * Fix inplace coins conversion * Use evmtypes.BankKeeper interface insteadof banktypes * Add TestGetBalance * Add doc comments, remove temp actualAmt vars actualAmt vars replaced with inline calls to make it more clear that the converted value is being used, as opposed to accidentally reusing the raw EVM amt. * Add TestSetBalance * Add TestIdempotentConversion * Panic if converted coin from EVM is 0 This happens if a value is less than 1ukava * Deep copy coins instead of in place modification * Update test coins amount * Add panic tests for small EVM amounts * Use evmtypes.BankKeeper as NewEVMBankKeeper param * Tidy test setup * ensure sdk config is set when creating new apps * Respond EVM bank keeper GetBalance with SpendableCoins Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com> * further speed up docker builds * feat: restore previous keys add defaults, add eth flag (#1172) * feat: restore previous keys add defaults, add eth flag * remove outdated comment * fix: remove redundant flag default * evm bank keeper with akava handling * fix issues * add remaining tests * add emv module to app * add missing imports * clean up comments * wip akava keeper * evm keeper * fix genesis import * reduce module permissions * add bank keeper tests * cleanup tests * genesis tests * change defaults * add eth faucet key & fix issues * switch to kava ethermint * add a lot of tests * add balances invariant * add evm tests * Remove panic if Swagger disabled in config (#1155) (#1183) Co-authored-by: Derrick Lee <derrick@dlee.dev> * add invariant to catch any akava balance > 1 ukava * clarify name of balances invariant * connect invariants to app * fix evmbankkeeper akava issues * add spec for evmutil * remove zero balance accounts from state * minor adustments * update to ethermint 0.10.0 * fix eth ante * add missing godoc comment * Update x/evmutil/spec/01_concepts.md Co-authored-by: Kevin Davis <karzak@users.noreply.github.com> * Update x/evmutil/spec/01_concepts.md Co-authored-by: Kevin Davis <karzak@users.noreply.github.com> * Update ethermint to v0.12 (#1203) * update to ethermint v0.12.2 * use app.Options for new evm options * fix missed references to app.Options * use ethermint branch while waiting on upstream fix * evm migrations for tesnet alpha 2 (#1206) * update to ethermint v0.12.2 * use app.Options for new evm options * fix missed references to app.Options * use ethermint branch while waiting on upstream fix * add upgrade handler for evm-alpha testnet 2 * v17 migration setup + evm modules * refactor migrate states * x/feemarket migration * v17 migrations setup + evm modules migration (#1210) * v17 migration setup + evm modules * refactor migrate states * update gen time * fix: update genesis time in test output Co-authored-by: karzak <kjydavis3@gmail.com> * add savings module to app blockers Co-authored-by: Derrick Lee <derrick@dlee.dev> Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com> Co-authored-by: rhuairahrighairigh <ruaridh.odonnell@gmail.com> Co-authored-by: Kevin Davis <karzak@users.noreply.github.com> Co-authored-by: Ruaridh <rhuairahrighairidh@users.noreply.github.com> Co-authored-by: karzak <kjydavis3@gmail.com>
240 lines
9.8 KiB
Go
240 lines
9.8 KiB
Go
package v0_16
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
v039auth "github.com/cosmos/cosmos-sdk/x/auth/legacy/v039"
|
|
v040auth "github.com/cosmos/cosmos-sdk/x/auth/legacy/v040"
|
|
v036supply "github.com/cosmos/cosmos-sdk/x/bank/legacy/v036"
|
|
v038bank "github.com/cosmos/cosmos-sdk/x/bank/legacy/v038"
|
|
v040bank "github.com/cosmos/cosmos-sdk/x/bank/legacy/v040"
|
|
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
|
|
v039crisis "github.com/cosmos/cosmos-sdk/x/crisis/legacy/v039"
|
|
v040crisis "github.com/cosmos/cosmos-sdk/x/crisis/legacy/v040"
|
|
v036distr "github.com/cosmos/cosmos-sdk/x/distribution/legacy/v036"
|
|
v038distr "github.com/cosmos/cosmos-sdk/x/distribution/legacy/v038"
|
|
v040distr "github.com/cosmos/cosmos-sdk/x/distribution/legacy/v040"
|
|
v038evidence "github.com/cosmos/cosmos-sdk/x/evidence/legacy/v038"
|
|
v040evidence "github.com/cosmos/cosmos-sdk/x/evidence/legacy/v040"
|
|
v039genutil "github.com/cosmos/cosmos-sdk/x/genutil/legacy/v039"
|
|
v040genutil "github.com/cosmos/cosmos-sdk/x/genutil/legacy/v040"
|
|
v043genutil "github.com/cosmos/cosmos-sdk/x/genutil/legacy/v043"
|
|
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
|
|
v036gov "github.com/cosmos/cosmos-sdk/x/gov/legacy/v036"
|
|
v040gov "github.com/cosmos/cosmos-sdk/x/gov/legacy/v040"
|
|
v039mint "github.com/cosmos/cosmos-sdk/x/mint/legacy/v039"
|
|
v040mint "github.com/cosmos/cosmos-sdk/x/mint/legacy/v040"
|
|
v036params "github.com/cosmos/cosmos-sdk/x/params/legacy/v036"
|
|
v039slashing "github.com/cosmos/cosmos-sdk/x/slashing/legacy/v039"
|
|
v040slashing "github.com/cosmos/cosmos-sdk/x/slashing/legacy/v040"
|
|
v038staking "github.com/cosmos/cosmos-sdk/x/staking/legacy/v038"
|
|
v040staking "github.com/cosmos/cosmos-sdk/x/staking/legacy/v040"
|
|
v038upgrade "github.com/cosmos/cosmos-sdk/x/upgrade/legacy/v038"
|
|
|
|
ibctransfertypes "github.com/cosmos/ibc-go/v3/modules/apps/transfer/types"
|
|
ibchost "github.com/cosmos/ibc-go/v3/modules/core/24-host"
|
|
ibctypes "github.com/cosmos/ibc-go/v3/modules/core/types"
|
|
|
|
v015kavadist "github.com/kava-labs/kava/x/kavadist/legacy/v0_15"
|
|
v015validatorvesting "github.com/kava-labs/kava/x/validator-vesting/legacy/v0_15"
|
|
)
|
|
|
|
func migrateGenutil(oldGenState v039genutil.GenesisState) *genutiltypes.GenesisState {
|
|
return &genutiltypes.GenesisState{
|
|
GenTxs: oldGenState.GenTxs,
|
|
}
|
|
}
|
|
|
|
func MigrateCosmosAppState(appState genutiltypes.AppMap, clientCtx client.Context, genesisTime time.Time) genutiltypes.AppMap {
|
|
appState = migrateV040(appState, clientCtx, genesisTime)
|
|
appState = migrateV043(appState, clientCtx)
|
|
appState = addIbcGenesisStates(appState, clientCtx)
|
|
return appState
|
|
}
|
|
|
|
func addIbcGenesisStates(appState genutiltypes.AppMap, clientCtx client.Context) genutiltypes.AppMap {
|
|
appState[capabilitytypes.ModuleName] = clientCtx.Codec.MustMarshalJSON(capabilitytypes.DefaultGenesis())
|
|
appState[ibchost.ModuleName] = clientCtx.Codec.MustMarshalJSON(ibctypes.DefaultGenesisState())
|
|
appState[ibctransfertypes.ModuleName] = clientCtx.Codec.MustMarshalJSON(ibctransfertypes.DefaultGenesisState())
|
|
return appState
|
|
}
|
|
|
|
// migrateV043 migrates cosmos modules from v0.40 to a v0.43 genesis state.
|
|
func migrateV043(appState genutiltypes.AppMap, clientCtx client.Context) genutiltypes.AppMap {
|
|
return v043genutil.Migrate(appState, clientCtx)
|
|
}
|
|
|
|
// migrateV040 migrates cosmos modules from v0.39 to a v0.40 genesis state.
|
|
// This is based on the genutil/legacy/v40 migration logic but adapted to handle custom types from the kava module.
|
|
func migrateV040(appState genutiltypes.AppMap, clientCtx client.Context, genesisTime time.Time) genutiltypes.AppMap {
|
|
setConfigIfUnsealed()
|
|
v039Codec := codec.NewLegacyAmino()
|
|
v039auth.RegisterLegacyAminoCodec(v039Codec)
|
|
v036gov.RegisterLegacyAminoCodec(v039Codec)
|
|
v036distr.RegisterLegacyAminoCodec(v039Codec)
|
|
v036params.RegisterLegacyAminoCodec(v039Codec)
|
|
v038upgrade.RegisterLegacyAminoCodec(v039Codec)
|
|
v015kavadist.RegisterLegacyAminoCodec(v039Codec)
|
|
v015validatorvesting.RegisterLegacyAminoCodec(v039Codec)
|
|
v039Codec.RegisterInterface((*v038evidence.Evidence)(nil), nil)
|
|
|
|
v040Codec := clientCtx.Codec
|
|
|
|
if appState[v038bank.ModuleName] != nil {
|
|
|
|
// unmarshal relative source genesis application state
|
|
var bankGenState v038bank.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v038bank.ModuleName], &bankGenState)
|
|
|
|
// unmarshal x/auth genesis state to retrieve all account balances
|
|
var authGenState v039auth.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v039auth.ModuleName], &authGenState)
|
|
|
|
// unmarshal x/supply genesis state to retrieve total supply
|
|
var supplyGenState v036supply.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v036supply.ModuleName], &supplyGenState)
|
|
|
|
// delete deprecated x/bank genesis state
|
|
delete(appState, v038bank.ModuleName)
|
|
|
|
// delete deprecated x/supply genesis state
|
|
delete(appState, v036supply.ModuleName)
|
|
|
|
// Migrate relative source genesis application state and marshal it into
|
|
// the respective key.
|
|
appState[v040bank.ModuleName] = v040Codec.MustMarshalJSON(v040bank.Migrate(bankGenState, authGenState, supplyGenState))
|
|
}
|
|
|
|
// remove balances from existing accounts
|
|
if appState[v039auth.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var authGenState v039auth.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v039auth.ModuleName], &authGenState)
|
|
|
|
// delete deprecated x/auth genesis state
|
|
delete(appState, v039auth.ModuleName)
|
|
|
|
// Run our custom auth v40 migration on the v039 auth gen state
|
|
appState[v040auth.ModuleName] = v040Codec.MustMarshalJSON(MigrateAuthV040(authGenState, genesisTime))
|
|
}
|
|
|
|
// Migrate x/crisis.
|
|
if appState[v039crisis.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var crisisGenState v039crisis.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v039crisis.ModuleName], &crisisGenState)
|
|
|
|
// delete deprecated x/crisis genesis state
|
|
delete(appState, v039crisis.ModuleName)
|
|
|
|
// Migrate relative source genesis application state and marshal it into
|
|
// the respective key.
|
|
appState[v040crisis.ModuleName] = v040Codec.MustMarshalJSON(v040crisis.Migrate(crisisGenState))
|
|
}
|
|
|
|
// Migrate x/distribution.
|
|
if appState[v038distr.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var distributionGenState v038distr.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v038distr.ModuleName], &distributionGenState)
|
|
|
|
// delete deprecated x/distribution genesis state
|
|
delete(appState, v038distr.ModuleName)
|
|
|
|
// Migrate relative source genesis application state and marshal it into
|
|
// the respective key.
|
|
appState[v040distr.ModuleName] = v040Codec.MustMarshalJSON(v040distr.Migrate(distributionGenState))
|
|
}
|
|
|
|
// Migrate x/evidence.
|
|
if appState[v038evidence.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var evidenceGenState v038evidence.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v038evidence.ModuleName], &evidenceGenState)
|
|
|
|
// delete deprecated x/evidence genesis state
|
|
delete(appState, v038evidence.ModuleName)
|
|
|
|
// Migrate relative source genesis application state and marshal it into
|
|
// the respective key.
|
|
appState[v040evidence.ModuleName] = v040Codec.MustMarshalJSON(v040evidence.Migrate(evidenceGenState))
|
|
}
|
|
|
|
// Migrate x/gov.
|
|
if appState[v036gov.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var govGenState v036gov.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v036gov.ModuleName], &govGenState)
|
|
|
|
// delete deprecated x/gov genesis state
|
|
delete(appState, v036gov.ModuleName)
|
|
|
|
// Run our custom gov v40 migration on the v039 gov gen state
|
|
appState[v040gov.ModuleName] = v040Codec.MustMarshalJSON(MigrateGovV040(govGenState))
|
|
}
|
|
|
|
// Migrate x/mint.
|
|
if appState[v039mint.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var mintGenState v039mint.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v039mint.ModuleName], &mintGenState)
|
|
|
|
// delete deprecated x/mint genesis state
|
|
delete(appState, v039mint.ModuleName)
|
|
|
|
// Migrate relative source genesis application state and marshal it into
|
|
// the respective key.
|
|
appState[v040mint.ModuleName] = v040Codec.MustMarshalJSON(v040mint.Migrate(mintGenState))
|
|
}
|
|
|
|
// Migrate x/slashing.
|
|
if appState[v039slashing.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var slashingGenState v039slashing.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v039slashing.ModuleName], &slashingGenState)
|
|
|
|
// delete deprecated x/slashing genesis state
|
|
delete(appState, v039slashing.ModuleName)
|
|
|
|
// Migrate relative source genesis application state and marshal it into
|
|
// the respective key.
|
|
appState[v040slashing.ModuleName] = v040Codec.MustMarshalJSON(v040slashing.Migrate(slashingGenState))
|
|
}
|
|
|
|
// Migrate x/staking.
|
|
if appState[v038staking.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var stakingGenState v038staking.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v038staking.ModuleName], &stakingGenState)
|
|
|
|
// Update historical entries to 10000
|
|
stakingGenState.Params.HistoricalEntries = 10000
|
|
|
|
// delete deprecated x/staking genesis state
|
|
delete(appState, v038staking.ModuleName)
|
|
|
|
// Migrate relative source genesis application state and marshal it into
|
|
// the respective key.
|
|
appState[v040staking.ModuleName] = v040Codec.MustMarshalJSON(v040staking.Migrate(stakingGenState))
|
|
}
|
|
|
|
// Migrate x/genutil
|
|
if appState[v039genutil.ModuleName] != nil {
|
|
// unmarshal relative source genesis application state
|
|
var genutilGenState v039genutil.GenesisState
|
|
v039Codec.MustUnmarshalJSON(appState[v039genutil.ModuleName], &genutilGenState)
|
|
|
|
// delete deprecated x/staking genesis state
|
|
delete(appState, v039genutil.ModuleName)
|
|
|
|
// Migrate relative source genesis application state and marshal it into
|
|
// the respective key.
|
|
appState[v040genutil.ModuleName] = v040Codec.MustMarshalJSON(migrateGenutil(genutilGenState))
|
|
}
|
|
|
|
return appState
|
|
}
|