Packages

Exth is an Elixir client for interacting with EVM-compatible blockchain nodes via JSON-RPC. It provides a robust interface for making Ethereum RPC calls.

Current section

Files

Jump to
exth lib exth application.ex
Raw

lib/exth/application.ex

defmodule Exth.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
Exth.Transport.Supervisor
]
opts = [strategy: :one_for_one, name: Exth.Supervisor]
Supervisor.start_link(children, opts)
end
end