Module: CoingeckoRuby::Client::Finance
- Included in:
- CoingeckoRuby::Client
- Defined in:
- lib/coingecko_ruby/client/finance.rb
Instance Method Summary collapse
-
#finance_platforms(**options) ⇒ Array<Hash>
Fetches the list of finance platforms (e.g. Celsius Network, dYdX) listed in CoinGecko.
-
#finance_products(**options) ⇒ Array<Hash>
Fetches the list of finance products (e.g. Binance Savings, Nexo, Fulcrum) listed in CoinGecko.
-
#get_finance_platforms(options: {}) ⇒ Object
deprecated
Deprecated.
Use #finance_platforms instead
-
#get_finance_products(options: {}) ⇒ Object
deprecated
Deprecated.
Use #finance_products instead
Instance Method Details
#finance_platforms(**options) ⇒ Array<Hash>
Fetches the list of finance platforms (e.g. Celsius Network, dYdX) listed in CoinGecko.
37 38 39 |
# File 'lib/coingecko_ruby/client/finance.rb', line 37 def finance_platforms(**) get 'finance_platforms', ** end |
#finance_products(**options) ⇒ Array<Hash>
Fetches the list of finance products (e.g. Binance Savings, Nexo, Fulcrum) listed in CoinGecko.
90 91 92 |
# File 'lib/coingecko_ruby/client/finance.rb', line 90 def finance_products(**) get 'finance_products', ** end |
#get_finance_platforms(options: {}) ⇒ Object
Deprecated.
Use #finance_platforms instead
42 43 44 |
# File 'lib/coingecko_ruby/client/finance.rb', line 42 def get_finance_platforms(options: {}) finance_platforms(**) end |
#get_finance_products(options: {}) ⇒ Object
Deprecated.
Use #finance_products instead
95 96 97 |
# File 'lib/coingecko_ruby/client/finance.rb', line 95 def get_finance_products(options: {}) finance_products(**) end |