diff --git a/hermes/CHANGELOG.md b/hermes/CHANGELOG.md index 68a77a26..00f62952 100644 --- a/hermes/CHANGELOG.md +++ b/hermes/CHANGELOG.md @@ -1,5 +1,11 @@ # Hermes App Changelog +## Unreleased + +### Chore + +* [#114](https://github.com/ignite/apps/pull/114) Bump hermes binary to v1.10.0 + ## [`v0.2.0`](https://github.com/ignite/apps/releases/tag/hermes/v0.2.0) * Update app to support gRPC. diff --git a/hermes/cmd/hermes_configure.go b/hermes/cmd/hermes_configure.go index 4f87c385..1c8bcb85 100644 --- a/hermes/cmd/hermes_configure.go +++ b/hermes/cmd/hermes_configure.go @@ -429,7 +429,7 @@ func ensureAccount( return err } - _ = session.Printf("new balance %s for %s", newBalance.String(), chainAddr) + _ = session.Println(color.Yellow.Sprintf("New balance from faucet: %s", newBalance.String())) } return nil } @@ -514,13 +514,13 @@ GetKey: } session.StopSpinner() - _ = session.Println(color.Yellow.Sprintf("Chain %s key created", chainID)) + _ = session.Println(color.Green.Sprintf("Chain %s key created", chainID)) goto GetKey } session.StopSpinner() - _ = session.Println(color.Green.Sprintf("Chain %s relayer wallet: %s", chainID, keysChainResult.Wallet.Account)) + _ = session.Println(color.Yellow.Sprintf("Chain %s relayer wallet: %s", chainID, keysChainResult.Wallet.Account)) return keysChainResult.Wallet.Account, nil }