2020-04-01 18:49:21 +00:00
|
|
|
package main
|
2019-11-04 20:45:02 +00:00
|
|
|
|
|
|
|
import (
|
2019-12-13 19:50:19 +00:00
|
|
|
"bufio"
|
2019-11-04 20:45:02 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
|
2020-04-22 19:26:01 +00:00
|
|
|
"github.com/tendermint/go-amino"
|
2019-11-04 20:45:02 +00:00
|
|
|
"github.com/tendermint/tendermint/libs/cli"
|
|
|
|
|
2020-04-22 19:26:01 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
|
|
"github.com/cosmos/cosmos-sdk/crypto/keyring"
|
2019-11-04 20:45:02 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
|
|
authexported "github.com/cosmos/cosmos-sdk/x/auth/exported"
|
|
|
|
authvesting "github.com/cosmos/cosmos-sdk/x/auth/vesting"
|
2020-04-22 19:26:01 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/bank"
|
2019-11-04 20:45:02 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/genutil"
|
|
|
|
|
2020-04-22 19:26:01 +00:00
|
|
|
"github.com/cosmos/ethermint/codec"
|
2019-11-04 20:45:02 +00:00
|
|
|
ethermint "github.com/cosmos/ethermint/types"
|
2020-04-22 19:26:01 +00:00
|
|
|
ethcrypto "github.com/ethereum/go-ethereum/crypto"
|
2019-11-04 20:45:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
flagClientHome = "home-client"
|
|
|
|
flagVestingStart = "vesting-start-time"
|
|
|
|
flagVestingEnd = "vesting-end-time"
|
|
|
|
flagVestingAmt = "vesting-amount"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AddGenesisAccountCmd returns add-genesis-account cobra Command.
|
|
|
|
func AddGenesisAccountCmd(
|
2020-04-22 19:26:01 +00:00
|
|
|
ctx *server.Context, depCdc *amino.Codec, cdc *codec.Codec, defaultNodeHome, defaultClientHome string,
|
2019-11-04 20:45:02 +00:00
|
|
|
) *cobra.Command {
|
2020-04-22 19:26:01 +00:00
|
|
|
|
2019-11-04 20:45:02 +00:00
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "add-genesis-account [address_or_key_name] [coin][,[coin]]",
|
|
|
|
Short: "Add a genesis account to genesis.json",
|
|
|
|
Long: `Add a genesis account to genesis.json. The provided account must specify
|
|
|
|
the account address or key name and a list of initial coins. If a key name is given,
|
2020-06-08 16:19:26 +00:00
|
|
|
the address will be looked up in the local Keyring. The list of initial tokens must
|
2019-11-04 20:45:02 +00:00
|
|
|
contain valid denominations. Accounts may optionally be supplied with vesting parameters.
|
|
|
|
`,
|
|
|
|
Args: cobra.ExactArgs(2),
|
2019-12-13 19:50:19 +00:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2019-11-04 20:45:02 +00:00
|
|
|
config := ctx.Config
|
|
|
|
config.SetRoot(viper.GetString(cli.HomeFlag))
|
2020-06-08 16:19:26 +00:00
|
|
|
inBuf := bufio.NewReader(cmd.InOrStdin())
|
2019-11-04 20:45:02 +00:00
|
|
|
|
|
|
|
addr, err := sdk.AccAddressFromBech32(args[0])
|
|
|
|
if err != nil {
|
2020-06-08 16:19:26 +00:00
|
|
|
// attempt to lookup address from keyring if no address was provided
|
|
|
|
keystore, err := keyring.New(
|
2020-04-22 19:26:01 +00:00
|
|
|
sdk.KeyringServiceName(),
|
|
|
|
viper.GetString(flags.FlagKeyringBackend),
|
|
|
|
viper.GetString(flagClientHome),
|
|
|
|
inBuf,
|
|
|
|
)
|
2019-11-04 20:45:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-06-08 16:19:26 +00:00
|
|
|
info, err := keystore.Key(args[0])
|
2019-11-04 20:45:02 +00:00
|
|
|
if err != nil {
|
2020-06-08 16:19:26 +00:00
|
|
|
return fmt.Errorf("failed to get address from Keyring: %w", err)
|
2019-11-04 20:45:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
addr = info.GetAddress()
|
|
|
|
}
|
|
|
|
|
|
|
|
coins, err := sdk.ParseCoins(args[1])
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to parse coins: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
vestingStart := viper.GetInt64(flagVestingStart)
|
|
|
|
vestingEnd := viper.GetInt64(flagVestingEnd)
|
|
|
|
vestingAmt, err := sdk.ParseCoins(viper.GetString(flagVestingAmt))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to parse vesting amount: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// create concrete account type based on input parameters
|
|
|
|
var genAccount authexported.GenesisAccount
|
|
|
|
|
2020-04-22 19:26:01 +00:00
|
|
|
balances := bank.Balance{Address: addr, Coins: coins.Sort()}
|
|
|
|
baseAccount := auth.NewBaseAccount(addr, nil, 0, 0)
|
2019-11-04 20:45:02 +00:00
|
|
|
if !vestingAmt.IsZero() {
|
2020-04-22 19:26:01 +00:00
|
|
|
baseVestingAccount := authvesting.NewBaseVestingAccount(baseAccount, vestingAmt.Sort(), vestingEnd)
|
|
|
|
|
|
|
|
if (balances.Coins.IsZero() && !baseVestingAccount.OriginalVesting.IsZero()) ||
|
|
|
|
baseVestingAccount.OriginalVesting.IsAnyGT(balances.Coins) {
|
|
|
|
return errors.New("vesting amount cannot be greater than total amount")
|
2019-11-04 20:45:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case vestingStart != 0 && vestingEnd != 0:
|
|
|
|
genAccount = authvesting.NewContinuousVestingAccountRaw(baseVestingAccount, vestingStart)
|
|
|
|
|
|
|
|
case vestingEnd != 0:
|
|
|
|
genAccount = authvesting.NewDelayedVestingAccountRaw(baseVestingAccount)
|
|
|
|
|
|
|
|
default:
|
|
|
|
return errors.New("invalid vesting parameters; must supply start and end time or end time")
|
|
|
|
}
|
|
|
|
} else {
|
2020-04-22 19:26:01 +00:00
|
|
|
genAccount = ethermint.EthAccount{
|
2020-04-01 18:49:21 +00:00
|
|
|
BaseAccount: baseAccount,
|
|
|
|
CodeHash: ethcrypto.Keccak256(nil),
|
|
|
|
}
|
2019-11-04 20:45:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := genAccount.Validate(); err != nil {
|
|
|
|
return fmt.Errorf("failed to validate new genesis account: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
genFile := config.GenesisFile()
|
2020-04-22 19:26:01 +00:00
|
|
|
appState, genDoc, err := genutil.GenesisStateFromGenFile(depCdc, genFile)
|
2019-11-04 20:45:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to unmarshal genesis state: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
authGenState := auth.GetGenesisStateFromAppState(cdc, appState)
|
|
|
|
|
|
|
|
if authGenState.Accounts.Contains(addr) {
|
|
|
|
return fmt.Errorf("cannot add account at existing address %s", addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the new account to the set of genesis accounts and sanitize the
|
|
|
|
// accounts afterwards.
|
|
|
|
authGenState.Accounts = append(authGenState.Accounts, genAccount)
|
|
|
|
authGenState.Accounts = auth.SanitizeGenesisAccounts(authGenState.Accounts)
|
|
|
|
|
|
|
|
authGenStateBz, err := cdc.MarshalJSON(authGenState)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to marshal auth genesis state: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
appState[auth.ModuleName] = authGenStateBz
|
|
|
|
|
2020-04-22 19:26:01 +00:00
|
|
|
bankGenState := bank.GetGenesisStateFromAppState(depCdc, appState)
|
|
|
|
bankGenState.Balances = append(bankGenState.Balances, balances)
|
|
|
|
bankGenState.Balances = bank.SanitizeGenesisBalances(bankGenState.Balances)
|
|
|
|
|
|
|
|
bankGenStateBz, err := cdc.MarshalJSON(bankGenState)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to marshal bank genesis state: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
appState[bank.ModuleName] = bankGenStateBz
|
|
|
|
|
2019-11-04 20:45:02 +00:00
|
|
|
appStateJSON, err := cdc.MarshalJSON(appState)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to marshal application genesis state: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
genDoc.AppState = appStateJSON
|
|
|
|
return genutil.ExportGenesisFile(genDoc, genFile)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.Flags().String(cli.HomeFlag, defaultNodeHome, "node's home directory")
|
2020-04-22 19:26:01 +00:00
|
|
|
cmd.Flags().String(flags.FlagKeyringBackend, flags.DefaultKeyringBackend, "Select keyring's backend (os|file|test)")
|
2019-11-04 20:45:02 +00:00
|
|
|
cmd.Flags().String(flagClientHome, defaultClientHome, "client's home directory")
|
|
|
|
cmd.Flags().String(flagVestingAmt, "", "amount of coins for vesting accounts")
|
|
|
|
cmd.Flags().Uint64(flagVestingStart, 0, "schedule start time (unix epoch) for vesting accounts")
|
|
|
|
cmd.Flags().Uint64(flagVestingEnd, 0, "schedule end time (unix epoch) for vesting accounts")
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|