class CardanoWallet::Byron::Init

Init class for Byron APIs

Public Instance Methods

addresses() click to toggle source

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

# File lib/cardano_wallet/byron.rb, line 22
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/Byron-Assets

# File lib/cardano_wallet/byron.rb, line 46
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/Byron-Coin-Selections

# File lib/cardano_wallet/byron.rb, line 28
def coin_selections
  CoinSelections.new @opt
end
migrations() click to toggle source

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

# File lib/cardano_wallet/byron.rb, line 40
def migrations
  Migrations.new @opt
end
transactions() click to toggle source

Get API for Byron transactions @see input-output-hk.github.io/cardano-wallet/api/edge/#operation/postByronTransactionFee

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

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

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