class Etherlite::Contract::EventInput

Attributes

original_name[R]
type[R]

Public Class Methods

new(_original_name, _type, _indexed) click to toggle source
# File lib/etherlite/contract/event_input.rb, line 5
def initialize(_original_name, _type, _indexed)
  @original_name = _original_name
  @type = _type
  @indexed = _indexed
end

Public Instance Methods

indexed?() click to toggle source
# File lib/etherlite/contract/event_input.rb, line 15
def indexed?
  @indexed
end
name() click to toggle source
# File lib/etherlite/contract/event_input.rb, line 11
def name
  @name ||= @original_name.underscore
end