Skip to content

Commit

Permalink
Merge pull request #496 from mth-bou/master
Browse files Browse the repository at this point in the history
chore(): add missing fields to EnumDepositStatus
  • Loading branch information
tiagosiebler authored Jan 1, 2025
2 parents cdf6800 + 3150744 commit 6a20147
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "binance",
"version": "2.15.1",
"version": "2.15.2",
"description": "Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
3 changes: 3 additions & 0 deletions src/types/spot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,10 @@ export interface TransferBrokerSubAccount {
export enum EnumDepositStatus {
Pending = 0,
CreditedButCannotWithdraw = 6,
WrongDeposit = 7,
WaitingUserConfirm = 8,
Success = 1,
Rejected = 2,
}

export type DepositStatusCode = `${EnumDepositStatus}`;
Expand Down

0 comments on commit 6a20147

Please sign in to comment.