Skip to content

Commit

Permalink
futuresTransferAsset by guygberg
Browse files Browse the repository at this point in the history
  • Loading branch information
jaggedsoft authored Aug 30, 2020
1 parent d966e53 commit 7c885b4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions node-binance-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' } );
},
Expand All @@ -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
*/

/*
Expand Down

0 comments on commit 7c885b4

Please sign in to comment.