diff --git a/README.md b/README.md index 570c701..c505f76 100644 --- a/README.md +++ b/README.md @@ -53,3 +53,6 @@ The walletside Nym implementations are moving to ease wallet integration but the From zingolib: [get_lightd_info and send_transaction commands sent with this build will be sent over the mixnet] 6) Run `$ cargo run --release --package zingo-cli -- --chain "testnet" --server "127.0.0.1:8088" --data-dir ~/wallets/testnet_wallet` +Note: +Configuration data can be set using a .toml file (an example zindexer.toml is given in zingo-indexer/zindexer.toml) and can be set at runtime using the --config arg: +- Run `$ cargo run --config zingo-indexerd/zindexer.toml` diff --git a/zingo-indexerd/zindexer.toml b/zingo-indexerd/zindexer.toml index f98aa85..602a9e6 100644 --- a/zingo-indexerd/zindexer.toml +++ b/zingo-indexerd/zindexer.toml @@ -4,13 +4,13 @@ tcp_active = true # Optional TcpIngestors listen port (use None or specify a port number) -listen_port = 8080 +listen_port = 8137 # Sets the NymIngestor's and NymDispatchers status (true or false) nym_active = true # Optional Nym conf path used for micnet client conf -nym_conf_path = "tmp/indexer/nym" +nym_conf_path = "/tmp/indexer/nym" # LightWalletD listen port [DEPRECATED] lightwalletd_port = 9067