module Binance::Spot::Mining

def mining_extra_bonus(algo:, userName:, **kwargs)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#extra-bonus-list-user_data -

Options Hash: (**kwargs)
  • :recvWindow (Integer) -- The value cannot be greater than 60000
  • :pageSize (Integer) -- Number of pages, minimum 10, maximum 200
  • :pageIndex (Integer) -- Page number, empty default first page, starting from 1
  • :endDate (Integer) -- Search date, millisecond timestamp, while empty query all
  • :startDate (Integer) -- Search date, millisecond timestamp, while empty query all
  • :coin (String) --

Parameters:
  • kwargs (Hash) --
  • userName (String) --
  • algo (String) --
def mining_extra_bonus(algo:, userName:, **kwargs)
  Binance::Utils::Validation.require_param('algo', algo)
  Binance::Utils::Validation.require_param('userName', userName)
  @session.sign_request(:get, '/sapi/v1/mining/payment/other', params: kwargs.merge(
    algo: algo,
    userName: userName
  ))
end