Class: CardanoWallet::Shelley::Init
- Defined in:
- lib/cardano_wallet/shelley.rb
Overview
Init class for Shelley API
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#addresses ⇒ Object
API for Addresses.
-
#assets ⇒ Object
API for Assets.
-
#coin_selections ⇒ Object
API for CoinSelections.
-
#keys ⇒ Object
API for Keys.
-
#migrations ⇒ Object
API for Migrations.
-
#stake_pools ⇒ Object
API for StakePools.
-
#transactions ⇒ Object
API for Transactions.
-
#wallets ⇒ Object
Call API for Wallets.
Methods inherited from Base
#byron, #initialize, #misc, #shared, #shelley, #utils
Constructor Details
This class inherits a constructor from CardanoWallet::Base
Instance Method Details
#addresses ⇒ Object
API for Addresses
34 35 36 |
# File 'lib/cardano_wallet/shelley.rb', line 34 def addresses Addresses.new @opt end |
#assets ⇒ Object
API for Assets
70 71 72 |
# File 'lib/cardano_wallet/shelley.rb', line 70 def assets Assets.new @opt end |
#coin_selections ⇒ Object
API for CoinSelections
40 41 42 |
# File 'lib/cardano_wallet/shelley.rb', line 40 def coin_selections CoinSelections.new @opt end |
#keys ⇒ Object
API for Keys
64 65 66 |
# File 'lib/cardano_wallet/shelley.rb', line 64 def keys Keys.new @opt end |
#migrations ⇒ Object
API for Migrations
58 59 60 |
# File 'lib/cardano_wallet/shelley.rb', line 58 def migrations Migrations.new @opt end |
#stake_pools ⇒ Object
API for StakePools
52 53 54 |
# File 'lib/cardano_wallet/shelley.rb', line 52 def stake_pools StakePools.new @opt end |
#transactions ⇒ Object
API for Transactions
46 47 48 |
# File 'lib/cardano_wallet/shelley.rb', line 46 def transactions Transactions.new @opt end |