Skip to content

Commit

Permalink
fix: Change to use coin type 60 instead of 118 for the hub keys (#543)
Browse files Browse the repository at this point in the history
  • Loading branch information
ItayLevyOfficial authored and mtsitrin committed Dec 10, 2023
1 parent 92895e1 commit b31ab00
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
3 changes: 0 additions & 3 deletions cmd/config/init/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
8 changes: 0 additions & 8 deletions cmd/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion compile_locally.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit b31ab00

Please sign in to comment.