class Bitshares::Account

Attributes

name[R]
wallet[R]

Public Class Methods

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

Public Instance Methods

method_missing(m, *args) click to toggle source
# File lib/bitshares/account.rb, line 12
def method_missing(m, *args)
  CLIENT.request('wallet_account_' + m.to_s, [name] + args)
end