Class: LazerPayModule::Deposit::FIAT
- Defined in:
- lib/lazerpay/main_module.rb
Instance Method Summary collapse
- #get_available_accounts ⇒ Object
- #get_funding_rate(currency) ⇒ Object
- #init(payload) ⇒ Object
-
#initialize ⇒ FIAT
constructor
A new instance of FIAT.
Constructor Details
#initialize ⇒ FIAT
Returns a new instance of FIAT.
68 |
# File 'lib/lazerpay/main_module.rb', line 68 def initialize; end |
Instance Method Details
#get_available_accounts ⇒ Object
82 83 84 85 86 |
# File 'lib/lazerpay/main_module.rb', line 82 def get_available_accounts response = Agent.get( "/bank/funding/accounts", { secret_key: @@sk, public_key: @@pk } ); return response.to_h; end |