File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " binance" ,
3
- "version" : " 2.9.3 " ,
3
+ "version" : " 2.9.4 " ,
4
4
"description" : " Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests." ,
5
5
"main" : " lib/index.js" ,
6
6
"types" : " lib/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -1153,23 +1153,23 @@ export class MainClient extends BaseRestClient {
1153
1153
getFlexibleSavingProducts (
1154
1154
params : FlexibleSavingBasicParams ,
1155
1155
) : Promise < StakingProduct [ ] > {
1156
- return this . getPrivate ( `sapi/v1/lending/daily/product /list` , params ) ;
1156
+ return this . getPrivate ( `sapi/v1/simple-earn/flexible /list` , params ) ;
1157
1157
}
1158
1158
1159
1159
purchaseFlexibleProduct (
1160
1160
params : PurchaseFlexibleProductParams ,
1161
1161
) : Promise < PurchaseFlexibleProductResponse > {
1162
- return this . postPrivate ( `sapi/v1/lending/daily/purchase ` , params ) ;
1162
+ return this . postPrivate ( `sapi/v1/simple-earn/flexible/subscribe ` , params ) ;
1163
1163
}
1164
1164
1165
1165
redeemFlexibleProduct ( params : RedeemFlexibleProductParams ) : Promise < { } > {
1166
- return this . postPrivate ( `sapi/v1/lending/daily /redeem` , params ) ;
1166
+ return this . postPrivate ( `sapi/v1/simple-earn/flexible /redeem` , params ) ;
1167
1167
}
1168
1168
1169
1169
getFlexibleProductPosition ( params : {
1170
1170
asset ?: string ;
1171
1171
} ) : Promise < StakingProduct [ ] > {
1172
- return this . getPrivate ( `sapi/v1/lending/daily/token /position` , params ) ;
1172
+ return this . getPrivate ( `sapi/v1/simple-earn/flexible /position` , params ) ;
1173
1173
}
1174
1174
1175
1175
getLeftDailyPurchaseQuotaFlexibleProduct ( params : {
You can’t perform that action at this time.
0 commit comments