Packages

Ethereum Contract interaction via json-rpc for multi-chain based on ex_abi

Current section

Files

Jump to
ethex lib supervisor.ex
Raw

lib/supervisor.ex

defmodule Ethex.Supervisor do
@moduledoc false
use Application
def start(_, _) do
children = [Ethex.Abi.Abi]
opts = [name: Ethex.Supervisor, strategy: :one_for_one]
Supervisor.start_link(children, opts)
end
end