Packages

[Tendermint ABCI spec](https://github.com/tendermint/tendermint/wiki/Application-Developers) implementation. Inspired by [abci_server](https://github.com/KrzysiekJ/abci_server) and [js-abci](https://github.com/tendermint/js-abci).

Current section

Files

Jump to
ex_abci config config.exs
Raw

config/config.exs

use Mix.Config
config :ex_abci,
ranch_opts: %{
max_connections: 3,
socket_opts: [port: 26658, buffer: 65535, sndbuf: 65535, recbuf: 65535]
}
config :logger, level: :debug