From 7c885b416a807a1f6f19462f70041fb66a5f88f7 Mon Sep 17 00:00:00 2001 From: Jon Eyrick Date: Sun, 30 Aug 2020 16:43:50 +0200 Subject: [PATCH] futuresTransferAsset by guygberg --- node-binance-api.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/node-binance-api.js b/node-binance-api.js index 3e87332d..1576cd5e 100644 --- a/node-binance-api.js +++ b/node-binance-api.js @@ -3601,8 +3601,7 @@ let api = function Binance( options = {} ) { params.dualSidePosition = dualSidePosition; return promiseRequest( 'v1/positionSide/dual', params, { base:fapi, type:'SIGNED', method:'POST' } ); }, - futuresTransferBtwSpotFutres: async ( asset, amount, type ) => - { + futuresTransferAsset: async ( asset, amount, type ) => { let params = Object.assign( { asset, amount, type } ); return promiseRequest( 'v1/futures/transfer', params, { base:sapi, type:'SIGNED', method:'POST' } ); }, @@ -3622,7 +3621,7 @@ let api = function Binance( options = {} ) { Live Subscribing/Unsubscribing to streams: requires sending futures subscription id when connecting futuresSubscriptions { "method": "LIST_SUBSCRIPTIONS", "id": 1 } futuresUnsubscribe { "method": "UNSUBSCRIBE", "params": [ "btcusdt@depth" ], "id": 1 } - futures depthCache & complete realtime chart updates + futures depthCache */ /*