Module: BitWallet

Defined in:
lib/bit_wallet.rb,
lib/bit_wallet/errors.rb,
lib/bit_wallet/wallet.rb,
lib/bit_wallet/account.rb,
lib/bit_wallet/address.rb,
lib/bit_wallet/version.rb,
lib/bit_wallet/accounts.rb,
lib/bit_wallet/addresses.rb,
lib/bit_wallet/transaction.rb,
lib/bit_wallet/handles_error.rb,
lib/bit_wallet/instantiates_bitcoin_client.rb

Defined Under Namespace

Classes: Account, Accounts, Address, Addresses, HandlesError, InstantiatesBitcoinClient, InsufficientFunds, InvalidAddress, InvalidAmount, StandardError, Transaction, Wallet

Constant Summary collapse

VERSION =
'0.7.2'
@@min_conf =
0

Class Method Summary collapse

Class Method Details

.at(*args) ⇒ Object



29
30
31
# File 'lib/bit_wallet.rb', line 29

def self.at(*args)
  Wallet.new(*args)
end

.initialize(*args) ⇒ Object



33
34
35
# File 'lib/bit_wallet.rb', line 33

def self.initialize(*args)
  Wallet.new(*args)
end

.min_confObject



25
26
27
# File 'lib/bit_wallet.rb', line 25

def self.min_conf
  @@min_conf || 0
end