Skip to content

Commit 713422b

Browse files
authored
Added deliveryCommissionRate by mattgrint
2 parents 1fb15b4 + e172314 commit 713422b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

node-binance-api.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4282,6 +4282,11 @@ let api = function Binance( options = {} ) {
42824282
params.symbol = symbol;
42834283
return promiseRequest( 'v1/userTrades', params, { base:dapi, type:'SIGNED' } );
42844284
},
4285+
4286+
deliveryCommissionRate: async ( symbol, params = {} ) => {
4287+
if ( symbol ) params.symbol = symbol;
4288+
return promiseRequest( 'v1/commissionRate', params, { base:dapi, type:'SIGNED' } );
4289+
},
42854290

42864291
deliveryGetDataStream: async ( params = {} ) => {
42874292
//A User Data Stream listenKey is valid for 60 minutes after creation. setInterval

0 commit comments

Comments
 (0)