Skip to content

Commit

Permalink
Merge pull request #624 from hyperweb-io/anmol/fix-typos
Browse files Browse the repository at this point in the history
fix typos in starship
  • Loading branch information
Anmol1696 authored Feb 18, 2025
2 parents 7091ec2 + e1b19f6 commit 2f7fe6c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion clients/go/client/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (f *Feature) GetRESTAddr() string {

// Config is the struct for the config.yaml setup file
// todo: move this to a more common place, outside just tests
// todo: can be moved to proto defination
// todo: can be moved to proto definition
type Config struct {
Chains []*Chain `name:"chains" json:"chains" yaml:"chains"`
Relayers []*Relayer `name:"relayers" json:"relayers" yaml:"relayers"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ sleep 2
kubectl get pods --no-headers -o custom-columns=:metadata.name
helm delete osmojs
kubectl get pods --no-headers -o custom-columns=:metadata.name
Log: All pods have been sucessfully terminated!"
Log: All pods have been successfully terminated!"
`;

exports[`StarshipClient setup 2`] = `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sleep 2
kubectl get pods --no-headers -o custom-columns=:metadata.name
helm delete osmojs
kubectl get pods --no-headers -o custom-columns=:metadata.name
Log: All pods have been sucessfully terminated!"
Log: All pods have been successfully terminated!"
`;

exports[`StarshipClient setup 2`] = `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sleep 2
kubectl get pods --no-headers -o custom-columns=:metadata.name
helm delete osmojs
kubectl get pods --no-headers -o custom-columns=:metadata.name
Log: All pods have been sucessfully terminated!"
Log: All pods have been successfully terminated!"
`;

exports[`StarshipClient setup 2`] = `
Expand Down
2 changes: 1 addition & 1 deletion clients/js/packages/client/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ export class StarshipClient implements StarshipClientI {
});

if (this.podStatuses.size === 0) {
this.log(chalk.green('All pods have been sucessfully terminated!'));
this.log(chalk.green('All pods have been successfully terminated!'));
// once the pods are in done state, wait for 1 more seconds
await new Promise((resolve) => setTimeout(resolve, 1000));
return;
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/config/relayers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ relayers:
Available endpoints on
* `rest` endpoints: https://hermes.informal.systems/documentation/rest-api.html?highlight=rest#rest-api
* `exposer` endpoint
* `/create_channel` endpoint: Supports post request. Proto defination: https://github.com/hyperweb-io/starship/blob/main/starship/proto/exposer/service.proto#L47
* `/create_channel` endpoint: Supports post request. Proto definition: https://github.com/hyperweb-io/starship/blob/main/starship/proto/exposer/service.proto#L47

One can use the exposer endpoint on the relayer to create channel from outside.
Note: Still an experimental feature on exposer
Expand Down
2 changes: 1 addition & 1 deletion examples/injective/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Details of each of arguments in the config file can be found [here](https://docs
* `configs/*.yaml`: Various config files as described above
* `scripts/`: Handy scripts for dealing with starship setup and running
* `scripts/dev-setup.sh`: Checks for dependencies
* `scripts/port-forward.sh`: Performs local port-forwarding based on config file definations
* `scripts/port-forward.sh`: Performs local port-forwarding based on config file definitions
* `scripts/install.sh`: Installs helm chart in a connected kubernetes cluster
* `Makefile`: Single entrypoint for Starship, has all commands needed
* `READMD.md`: Readme file
2 changes: 1 addition & 1 deletion examples/neutron/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Details of each of arguments in the config file can be found [here](https://docs
* `configs/scripts/`: Custom scripts used by the config file for setup. More details [here](https://docs.cosmology.zone/starship/config/chains#scripts-optional)
* `scripts/`: Handy scripts for dealing with starship setup and running
* `scripts/dev-setup.sh`: Checks for dependencies
* `scripts/port-forward.sh`: Performs local port-forwarding based on config file definations
* `scripts/port-forward.sh`: Performs local port-forwarding based on config file definitions
* `scripts/install.sh`: Installs helm chart in a connected kubernetes cluster
* `Makefile`: Single entrypoint for Starship, has all commands needed
* `READMD.md`: Readme file
2 changes: 1 addition & 1 deletion starship/cmd/starship/connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func (c *Client) CheckKubectl() error {
return nil
}

// CheckPortForward verfify if all pods are in running state, and ready to be port-forwarded
// CheckPortForward verify if all pods are in running state, and ready to be port-forwarded
// * perform kubectl get pods
// * check status of pods to be running based on the config
// * return error if port-forwarding is not ready
Expand Down
2 changes: 1 addition & 1 deletion starship/tests/e2e/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type Feature struct {

// Config is the struct for the config.yaml setup file
// todo: move this to a more common place, outside of just tests
// todo: can be moved to proto defination
// todo: can be moved to proto definition
type Config struct {
Chains []*Chain `name:"chains" json:"chains" yaml:"chains"`
Relayers []*Relayer `name:"relayers" json:"relayers" yaml:"relayers"`
Expand Down

0 comments on commit 2f7fe6c

Please sign in to comment.