Sha256: f7b58d122e6bce402d9774fc937da6c26dcdea54ddec4b365615c53564fa1d8b
Contents?: true
Size: 448 Bytes
Versions: 18
Compression:
Stored size: 448 Bytes
Contents
require 'etherlite/commands/abi/load_type' require 'etherlite/commands/abi/load_contract' require 'etherlite/commands/abi/load_function' module Etherlite module Abi extend self def load_contract_at(_path) load_contract JSON.parse File.read(_path) end def load_contract(_json) LoadContract.for artifact: _json end def load_function(_signature) LoadFunction.for signature: _signature end end end
Version data entries
18 entries across 18 versions & 1 rubygems