Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
27 lines
632 B
Go
27 lines
632 B
Go
package defaults
|
|
|
|
const (
|
|
// GRPCAddress is the default GRPC address.
|
|
GRPCAddress = "0.0.0.0:9090"
|
|
|
|
// GRPCWebAddress is the default GRPC-Web address.
|
|
GRPCWebAddress = "0.0.0.0:9091"
|
|
|
|
// APIAddress is the default API address.
|
|
APIAddress = "0.0.0.0:1317"
|
|
|
|
// RPCAddress is the default RPC address.
|
|
RPCAddress = "0.0.0.0:26657"
|
|
|
|
// P2PAddress is the default P2P address.
|
|
P2PAddress = "0.0.0.0:26656"
|
|
|
|
// PProfAddress is the default Prof address.
|
|
PProfAddress = "0.0.0.0:6060"
|
|
|
|
// ProtoDir is the default proto directory path.
|
|
ProtoDir = "proto"
|
|
|
|
// FaucetHost is the default faucet host.
|
|
FaucetHost = "0.0.0.0:4500"
|
|
)
|