module Binance::Spot::Blvt

def subscribe(tokenName:, cost:, **kwargs)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#subscribe-blvt-user_data -

Options Hash: (**kwargs)
  • :recvWindow (Integer) -- The value cannot be greater than 60000

Parameters:
  • kwargs (Hash) --
  • cost (Float) --
  • tokenName (String) --
def subscribe(tokenName:, cost:, **kwargs)
  Binance::Utils::Validation.require_param('tokenName', tokenName)
  Binance::Utils::Validation.require_param('cost', cost)
  @session.sign_request(:post, '/sapi/v1/blvt/subscribe', params: kwargs.merge(
    tokenName: tokenName,
    cost: cost
  ))
end