mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 00:35:18 +00:00
ff5b0e814e
* setup e2e test that starts kava chain * refactor into a testify suite * setup ethClient * add example test checking chain id * cleanup * refactor & support funded accounts with txs * ignore e2e tests in CI & consolidate makefiles * remove circular go.mod dependency vendors `signing` and `grpc` packages from `kava-labs/go-tools` to refrain from a circular dep and fix pulled in dep versions * add min fee for evm side * prune nothing in e2e node
18 lines
717 B
TOML
18 lines
717 B
TOML
# This is a TOML config file.
|
|
# For more information, see https://github.com/toml-lang/toml
|
|
|
|
###############################################################################
|
|
### Client Configuration ###
|
|
###############################################################################
|
|
|
|
# The network chain ID
|
|
chain-id = "kavalocalnet_8888-1"
|
|
# The keyring's backend, where the keys are stored (os|file|kwallet|pass|test|memory)
|
|
keyring-backend = "test"
|
|
# CLI output format (text|json)
|
|
output = "text"
|
|
# <host>:<port> to Tendermint RPC interface for this chain
|
|
node = "tcp://localhost:26657"
|
|
# Transaction broadcasting mode (sync|async|block)
|
|
broadcast-mode = "block"
|