class EvmClient::FunctionInput

Attributes

indexed[RW]
name[RW]
type[RW]

Public Class Methods

new(data) click to toggle source
# File lib/evm_client/function_input.rb, line 6
def initialize(data)
  @type    = data["type"]
  @name    = data["name"]
  @indexed = data["index"]
end