Adrien B
Adrien B
`binanceClient.futuresGetOrder` is not returning the right id Some orders have big integer as id like `4676302302390926857` for HNTUSDT When executing ``` const order = await binanceClient.futuresGetOrder({ symbol:"HNTUSDT", orderId: 4676302302390926857, });...
`getOrder` is asking for an `orderId` of type `number` Some orders have big integer as id like `8389765512384743573` for `ETHUSDT`. How are we supposed to pass this kind of big...
It seems that we can not use string interpolation. I would like to do the following: ``` key: "{{what}} is {{how}}" ``` like that ```{% t key, { what: "Code",...