class Wallet

Single Address Wallet

Attributes

address[R]

Public Class Methods

new( address ) click to toggle source
# File lib/tulipmania/wallet.rb, line 7
def initialize( address )
  @address = address
end

Public Instance Methods

generate_transaction( to, qty, what ) click to toggle source
# File lib/tulipmania/wallet.rb, line 11
def generate_transaction( to, qty, what )
  Tx.new( address, to, qty, what )
end