class CardanoWallet::Shelley::Init

Base class for Shelley API

Public Instance Methods

addresses() click to toggle source

API for Addresses @see input-output-hk.github.io/cardano-wallet/api/edge/#tag/Addresses

# File lib/cardano_wallet/shelley.rb, line 21
def addresses
  Addresses.new @opt
end
assets() click to toggle source

API for Assets @see input-output-hk.github.io/cardano-wallet/api/edge/#tag/Assets

# File lib/cardano_wallet/shelley.rb, line 57
def assets
  Assets.new @opt
end
coin_selections() click to toggle source

API for CoinSelections @see input-output-hk.github.io/cardano-wallet/api/edge/#tag/Coin-Selections

# File lib/cardano_wallet/shelley.rb, line 27
def coin_selections
  CoinSelections.new @opt
end
keys() click to toggle source

API for Keys @see input-output-hk.github.io/cardano-wallet/api/#tag/Keys

# File lib/cardano_wallet/shelley.rb, line 51
def keys
  Keys.new @opt
end
migrations() click to toggle source

API for Migrations @see input-output-hk.github.io/cardano-wallet/api/#tag/Migrations

# File lib/cardano_wallet/shelley.rb, line 45
def migrations
  Migrations.new @opt
end
stake_pools() click to toggle source

API for StakePools @see input-output-hk.github.io/cardano-wallet/api/edge/#tag/Stake-Pools

# File lib/cardano_wallet/shelley.rb, line 39
def stake_pools
  StakePools.new @opt
end
transactions() click to toggle source

API for Transactions @see input-output-hk.github.io/cardano-wallet/api/edge/#tag/Transactions

# File lib/cardano_wallet/shelley.rb, line 33
def transactions
  Transactions.new @opt
end
wallets() click to toggle source

Call API for Wallets @see input-output-hk.github.io/cardano-wallet/api/edge/#tag/Wallets

# File lib/cardano_wallet/shelley.rb, line 15
def wallets
  Wallets.new @opt
end