Luiz “Felds” Liscia
Luiz “Felds” Liscia
Currently, the values in `NewSpotOrderParams` only accept numbers. Since all numbers in JS are floats, this leads to some numbers having recurring decimals when converting to base 10, tripping the...
## Summary The [current API](https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md#new-order--trade) returns a value called `cummulativeQuoteQty` when creating a new order. This value is currently typed as `cumulativeQuoteQty`, making the actual value inaccessible without using a...
This PR contains a: - [x] **bugfix** - [ ] new **feature** - [ ] **code refactor** - [ ] **test update** - [ ] **typo fix** - [ ]...
When streaming to Discord, it hangs up after 30 seconds with the status `ERR_STREAM_PREMATURE_CLOSE`. It happens right after the `progress` event for the 6th chunk. Messing with the function parameters...
Currently, there is no way (that I know of) to access the underlying interaction on a slash command. This would be useful in order to perform actions not yet supported...
Currently, `context.ephemeralReply` returns `void` because: > This does not return a reply handle; ephemeral replies can't be updated or deleted manually > — [interaction-context.ts:52](https://github.com/itsMapleLeaf/gatekeeper/blob/2691a8dfc131fce2a85d9267bc5844eb9df9cb54/src/core/interaction-context.ts#L52) However, I did a little testing...
Most (if not all) other classes in the project are not marked as final. Although it's possible to extend the functionality of this class by using composition, it goes against...
Currently, the generated docs only show generics, parameters and return types. Having the possible exceptions listed could be useful when using a library. The `@throws` tag is currently badly supported...