Packages

Ethereum blockchain client for Gleam

Current section

Files

Jump to
glethers src glethers@contract.erl
Raw

src/glethers@contract.erl

-module(glethers@contract).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export_type([contract/0, function_/0]).
-type contract() :: {contract, list(function_())}.
-type function_() :: {function, list(binary())}.