* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Get-Funding-Rate-Info * @param symbol symbol if the market * @param params extra parameters to be sent in the request * @returns
(symbol: string, params: Dict = {})
| 4654 | * @returns |
| 4655 | */ |
| 4656 | async futuresFundingRate(symbol: string, params: Dict = {}): Promise<FundingRate[]> { |
| 4657 | params.symbol = symbol; |
| 4658 | return await this.publicFuturesRequest('v1/fundingRate', params); |
| 4659 | } |
| 4660 | |
| 4661 | /** |
| 4662 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/account/rest-api/Notional-and-Leverage-Brackets#http-request |
nothing calls this directly
no test coverage detected