diff --git a/changelog.md b/changelog.md index c4e816b4df..f6dfa75754 100644 --- a/changelog.md +++ b/changelog.md @@ -12,6 +12,7 @@ - [#3529](https://github.com/ignite/cli/pull/3529) Refactor plugin system to use gRPC - [#3751](https://github.com/ignite/cli/pull/3751) Rename label to skip changelog check - [#3745](https://github.com/ignite/cli/pull/3745) Set tx fee amount as option +- [#3748](https://github.com/ignite/cli/pull/3748) Change default rpc endpoint to a working one ## [`v0.27.1`](https://github.com/ignite/cli/releases/tag/v0.27.1) diff --git a/docs/docs/07-packages/cosmostxcollector.md b/docs/docs/07-packages/cosmostxcollector.md index c38fc2d3d5..62047e4ff9 100644 --- a/docs/docs/07-packages/cosmostxcollector.md +++ b/docs/docs/07-packages/cosmostxcollector.md @@ -51,7 +51,7 @@ const ( dbName = "cosmos" // Cosmos RPC address - rpcAddr = "https://rpc.cosmos.network:443" + rpcAddr = "https://rpc.cosmos.directory:443/cosmoshub" ) func collect(ctx context.Context, db postgres.Adapter) error { diff --git a/docs/docs/08-references/01-cli.md b/docs/docs/08-references/01-cli.md index 27243d2fb0..f08640a771 100644 --- a/docs/docs/08-references/01-cli.md +++ b/docs/docs/08-references/01-cli.md @@ -2814,7 +2814,7 @@ Make requests to a live blockchain node ``` -h, --help help for node - --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.network:443") + --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.directory:443/cosmoshub") ``` **SEE ALSO** @@ -2837,7 +2837,7 @@ Querying subcommands **Options inherited from parent commands** ``` - --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.network:443") + --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.directory:443/cosmoshub") ``` **SEE ALSO** @@ -2860,7 +2860,7 @@ Querying commands for the bank module **Options inherited from parent commands** ``` - --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.network:443") + --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.directory:443/cosmoshub") ``` **SEE ALSO** @@ -2896,7 +2896,7 @@ ignite node query bank balances [from_account_or_address] [flags] **Options inherited from parent commands** ``` - --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.network:443") + --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.directory:443/cosmoshub") ``` **SEE ALSO** @@ -2921,7 +2921,7 @@ ignite node query tx [hash] [flags] **Options inherited from parent commands** ``` - --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.network:443") + --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.directory:443/cosmoshub") ``` **SEE ALSO** @@ -2951,7 +2951,7 @@ Transactions subcommands **Options inherited from parent commands** ``` - --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.network:443") + --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.directory:443/cosmoshub") ``` **SEE ALSO** @@ -2982,7 +2982,7 @@ Bank transaction subcommands --home string directory where the blockchain node is initialized --keyring-backend string keyring backend to store your account keys (default "test") --keyring-dir string accounts keyring directory (default "/home/runner/.ignite/accounts") - --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.network:443") + --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.directory:443/cosmoshub") ``` **SEE ALSO** @@ -3017,7 +3017,7 @@ ignite node tx bank send [from_account_or_address] [to_account_or_address] [amou --home string directory where the blockchain node is initialized --keyring-backend string keyring backend to store your account keys (default "test") --keyring-dir string accounts keyring directory (default "/home/runner/.ignite/accounts") - --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.network:443") + --node string : to tendermint rpc interface for this chain (default "https://rpc.cosmos.directory:443/cosmoshub") ``` **SEE ALSO** diff --git a/ignite/cmd/node.go b/ignite/cmd/node.go index 877b309061..64e6f9c68c 100644 --- a/ignite/cmd/node.go +++ b/ignite/cmd/node.go @@ -10,7 +10,7 @@ import ( const ( flagNode = "node" - cosmosRPCAddress = "https://rpc.cosmos.network:443" + cosmosRPCAddress = "https://rpc.cosmos.directory:443/cosmoshub" ) func NewNode() *cobra.Command { diff --git a/ignite/cmd/relayer_configure.go b/ignite/cmd/relayer_configure.go index 5613834fec..10f8800aae 100644 --- a/ignite/cmd/relayer_configure.go +++ b/ignite/cmd/relayer_configure.go @@ -42,7 +42,7 @@ const ( RelayerTarget = "target" defaultSourceRPCAddress = "http://localhost:26657" - defaultTargetRPCAddress = "https://rpc.cosmos.network:443" + defaultTargetRPCAddress = "https://rpc.cosmos.directory:443/cosmoshub" defautSourceGasPrice = "0.00025stake" defautTargetGasPrice = "0.025uatom"