* go mod tidy everything.
* Add some third_party proto files that are imported but not included.
* [11859]: Add a new key for the SendEnabled flags and keeper methods for getting, setting, and deleting them.
* [11859]: Remove the send_enabled field from the bank Params proto.
* Revert "Add some third_party proto files that are imported but not included."
This reverts commit 8b7acf89f27825ba25bfef3379fd422a307a5e1b.
* [11859]: Regenerate the bank params stuff from the changed proto.
* [11859]: Add a send_enabled field to the bank genesis proto.
* Revert "[11859]: Remove the send_enabled field from the bank Params proto."
This reverts commit 0bd904c1f6ac0ea2d6e5b7dd43911d596cbf3ac9.
* Revert "[11859]: Regenerate the bank params stuff from the changed proto."
This reverts commit 33d4652696d2c3aefc6937dbf281525c1f86f79e.
* [11859]: Deprecate the bank Params send_enabled field.
* [11859]: Regenerate the bank go code from the updated protos.
* [11859]: Reduce the number of times the store is recreated during IsSendEnabledCoins. Store creation has some overhead.
* [11859]: Add the SendEnabled stuff to the genesis methods. Make a couple TODO notes. Create a way to iterate over the SendEnabled entries and get all of them.
* [11859]: Update the bank sim genesis stuff to create random SendEnabled entries similar to when they were params.
* Remove some of the bank params methods that are no longer meaningful.
* Add a comment about why we're calling a mutation method in a Validate function.
* [11859]: Add some more TODO notes and make the SendEnabled.String() function significantlly simpler.
* [11859]: Get rid of the SendEnabledParams type.
* Fix up a few comments.
* [11859]: Update the bank keeper test due to recent changes.
* [11859]: Tweak the bank Params and SendEnabled String funcs. Params no longer returns {} when there aren't any SendEnabled entries and the default is false. SendEnabled is back to outputting a yaml format.
* [11859]: Fix the params tests and add some new ones to it and key_test.
* [11859]: Create a 1-store method for updating several SendEnabled entries at once.
* [11859]: Create a migration for both the module and genesis state.
* [11859]: Create a new MsgSetSendEnabled for governanance proposals to set SendEnabled.
* [11859]: Add SetAllSendEnabled to the SendKeeper interface.
* [11859]: Add an authority to the bank keeper and create the handler for MsgSetSendEnabled.
* [11859]: Add an rpc endpoint for querying SendEnabled.
* [11859]: Implement the SendEnabled query.
* [11859]: Add a function for decoding a --page-key base64 value so that pagination can work as expected.
* [11859]: Implement a CLI command for querying SendEnabled.
* [11859]: Move the v047 store migration stuff into Migrate3to4 directly to prevent a circular dependency between 047 and the keeper. Not using the keeper for that would be a significant pain in the butt.
* [11869]: Implement the Msg interface for MsgSetSendEnabled.
* [11859]: Fix some unit tests that I broke along the way.
* [11859]: Reorg the funcs added to the SendKeeper interface.
* [11859]: Fix the return values of a couple of the MsgSetSendEnabled LegacyMsg funcs.
* [11859]: Tweak MigrateSendEnabled to add stuff to the existing slice (if there's anything to add). And then use that in the MigrateGenState function.
* [11859]: Don't set the Pagination field when looking up specific entries.
* [11859]: Put validateSendEnabledParams back to the way it was to allow reading the old Params without error.
* [11859]: Write up a bunch of unit tests.
* [11859]: Update the MsgSetSendEnabled.ValidateBasic() function with some extra failure points. Write up some tests.
* Update a test I fixed then broke.
* [11859]: Have the run-tests make target exit with a non-zero status if any of the tests fail.
* [11859]: Add changelog entries.
* [11859]: Add a missing func comment.
* [11859]: Only do a couple assertions if the elements exist to do so.
* [11859]: Add some more missing function comments.
* [11859]: Update the bank spec documentation.
* [11859]: Change name of WithPageKeyDecoded to FlagSetWithPageKeyDecoded, have it return an error and make MustFlagSetWithPageKeyDecoded for the one-liner.
* [11859]: Update the documentation on the SendEnabled query.
* [11859]: Add final newline to query.proto.
* [11859]: Remove the SetSendEnabled msg and endpoint.
* [11859]: Use nil instead of an empty slice of SendEnabled for defaults and where called for.
* [11859]: Update SetParams to migrate entries too.
* [11859]: Remove the spec doc info about the MsgSetSendEnabled that's part of another PR.
* [11859]: Update the changelog.
* Revert "[11859]: Update the changelog."
This reverts commit 85052b8579ec6bfac3411970a1597363329d6d66.
* [11859]: Rename the QuerySendEnabled message to QuerySendEnabledRequest to match the other messages in that proto.
* [11859]: Remove the authority field that is only needed for governance stuff (in the other PR).
* [11859]: Add a version to the deprecation message.
* [11859]: Update the comment on the now-deprecated SendEnabled params proto field to reference 0.46 instead of 0.47.
* Add some spacing to GetCmdQuerySendEnabled -> RunE.
* [11859]: Create banktypes.GenesisState.GetAllSendEnabled() to house the combination logic of the SendEnabled field and Params.SendEnabled. Have MigrateSendEnabled() use that. Remove some calls to MigrateSendEnabled and use GetAllSendEnabled in those cases.
* [11859]: Update Bank's ConsensusVersion to 4.
* [11859]: Add 'Since' comments to the new proto stuff.
* [11859]: Fix a unit test that broke because it assumed the bank module's version was 3.
* [11859]: Remove an empty line.
Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
* [11859]: Remove movement of SendEnabled from the `ExportGenesis` function too.
Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
* [11859]: Add a function for getting an entry so that users can differentiate between a missing entry and one that's using the default value.
Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
142 lines
4.0 KiB
Go
142 lines
4.0 KiB
Go
package cli
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"sort"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
tmjson "github.com/tendermint/tendermint/libs/json"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
v043 "github.com/cosmos/cosmos-sdk/x/genutil/migrations/v043"
|
|
v046 "github.com/cosmos/cosmos-sdk/x/genutil/migrations/v046"
|
|
v047 "github.com/cosmos/cosmos-sdk/x/genutil/migrations/v047"
|
|
"github.com/cosmos/cosmos-sdk/x/genutil/types"
|
|
)
|
|
|
|
const flagGenesisTime = "genesis-time"
|
|
|
|
// Allow applications to extend and modify the migration process.
|
|
//
|
|
// Ref: https://github.com/cosmos/cosmos-sdk/issues/5041
|
|
var migrationMap = types.MigrationMap{
|
|
"v0.43": v043.Migrate, // NOTE: v0.43, v0.44 and v0.45 are genesis compatible.
|
|
"v0.46": v046.Migrate,
|
|
"v0.47": v047.Migrate,
|
|
}
|
|
|
|
// GetMigrationCallback returns a MigrationCallback for a given version.
|
|
func GetMigrationCallback(version string) types.MigrationCallback {
|
|
return migrationMap[version]
|
|
}
|
|
|
|
// GetMigrationVersions get all migration version in a sorted slice.
|
|
func GetMigrationVersions() []string {
|
|
versions := make([]string, len(migrationMap))
|
|
|
|
var i int
|
|
|
|
for version := range migrationMap {
|
|
versions[i] = version
|
|
i++
|
|
}
|
|
|
|
sort.Strings(versions)
|
|
|
|
return versions
|
|
}
|
|
|
|
// MigrateGenesisCmd returns a command to execute genesis state migration.
|
|
func MigrateGenesisCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "migrate [target-version] [genesis-file]",
|
|
Short: "Migrate genesis to a specified target version",
|
|
Long: fmt.Sprintf(`Migrate the source genesis into the target version and print to STDOUT.
|
|
|
|
Example:
|
|
$ %s migrate v0.36 /path/to/genesis.json --chain-id=cosmoshub-3 --genesis-time=2019-04-22T17:00:00Z
|
|
`, version.AppName),
|
|
Args: cobra.ExactArgs(2),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
clientCtx := client.GetClientContextFromCmd(cmd)
|
|
|
|
var err error
|
|
|
|
target := args[0]
|
|
importGenesis := args[1]
|
|
|
|
genDoc, err := validateGenDoc(importGenesis)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Since some default values are valid values, we just print to
|
|
// make sure the user didn't forget to update these values.
|
|
if genDoc.ConsensusParams.Evidence.MaxBytes == 0 {
|
|
fmt.Printf("Warning: consensus_params.evidence.max_bytes is set to 0. If this is"+
|
|
" deliberate, feel free to ignore this warning. If not, please have a look at the chain"+
|
|
" upgrade guide at %s.\n", chainUpgradeGuide)
|
|
}
|
|
|
|
var initialState types.AppMap
|
|
if err := json.Unmarshal(genDoc.AppState, &initialState); err != nil {
|
|
return errors.Wrap(err, "failed to JSON unmarshal initial genesis state")
|
|
}
|
|
|
|
migrationFunc := GetMigrationCallback(target)
|
|
if migrationFunc == nil {
|
|
return fmt.Errorf("unknown migration function for version: %s", target)
|
|
}
|
|
|
|
// TODO: handler error from migrationFunc call
|
|
newGenState := migrationFunc(initialState, clientCtx)
|
|
|
|
genDoc.AppState, err = json.Marshal(newGenState)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to JSON marshal migrated genesis state")
|
|
}
|
|
|
|
genesisTime, _ := cmd.Flags().GetString(flagGenesisTime)
|
|
if genesisTime != "" {
|
|
var t time.Time
|
|
|
|
err := t.UnmarshalText([]byte(genesisTime))
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to unmarshal genesis time")
|
|
}
|
|
|
|
genDoc.GenesisTime = t
|
|
}
|
|
|
|
chainID, _ := cmd.Flags().GetString(flags.FlagChainID)
|
|
if chainID != "" {
|
|
genDoc.ChainID = chainID
|
|
}
|
|
|
|
bz, err := tmjson.Marshal(genDoc)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to marshal genesis doc")
|
|
}
|
|
|
|
sortedBz, err := sdk.SortJSON(bz)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to sort JSON genesis doc")
|
|
}
|
|
|
|
cmd.Println(string(sortedBz))
|
|
return nil
|
|
},
|
|
}
|
|
|
|
cmd.Flags().String(flagGenesisTime, "", "override genesis_time with this flag")
|
|
cmd.Flags().String(flags.FlagChainID, "", "override chain_id with this flag")
|
|
|
|
return cmd
|
|
}
|