diff --git a/cmd/config/init/keys.go b/cmd/config/init/keys.go index c69531cd..19b334d1 100644 --- a/cmd/config/init/keys.go +++ b/cmd/config/init/keys.go @@ -81,9 +81,6 @@ func createAddressBinary(keyConfig utils.KeyConfig, home string) (string, error) "--keyring-dir", filepath.Join(home, keyConfig.Dir), "--output", "json", } - if keyConfig.ChainBinary == consts.Executables.Dymension { - args = append(args, "--algo", consts.AlgoTypes.Secp256k1) - } createKeyCommand := exec.Command(keyConfig.ChainBinary, args...) out, err := utils.ExecBashCommandWithStdout(createKeyCommand) if err != nil { diff --git a/cmd/consts/consts.go b/cmd/consts/consts.go index 14d6cff1..ec7632a3 100644 --- a/cmd/consts/consts.go +++ b/cmd/consts/consts.go @@ -58,14 +58,6 @@ var ConfigDirName = struct { LocalHub: "local-hub", } -var AlgoTypes = struct { - Secp256k1 string - Ethsecp256k1 string -}{ - Secp256k1: "secp256k1", - Ethsecp256k1: "eth_secp256k1", -} - var Denoms = struct { Hub string Celestia string diff --git a/compile_locally.sh b/compile_locally.sh index 6ca21004..48211c58 100755 --- a/compile_locally.sh +++ b/compile_locally.sh @@ -13,7 +13,7 @@ ARCH=$(uname -m) # The list of projects to be installed PROJECTS=("dymension" "dymension-relayer" "rollapp-evm") REPOS=("" "" "") -VERSIONS=("v1.0.0-rc2" "v0.1.3-relayer-v0.2.0" "v0.1.0-rc8") +VERSIONS=("v1.0.0-rc2" "v0.1.3-relayer-v0.2.0" "v0.1.0-rc9") BUILDCOMMANDS=("" "" "") BINARYNAME=("dymd" "rly" "rollapp-evm")