Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani committed Jun 27, 2024
1 parent 706565f commit bebda47
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions hermes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions hermes/cmd/hermes_configure.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit bebda47

Please sign in to comment.