Skip to content

Commit

Permalink
Merge branch 'revert-81aaf948' into 'main'
Browse files Browse the repository at this point in the history
Revert "Merge branch 'feature/remove-fee-from-assets' into 'main'"

See merge request whitebit_exchange/api-docs!156
  • Loading branch information
whitebit-robot committed Oct 26, 2023
2 parents 08c9ea1 + d0382a4 commit 5096ab3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pages/public/http-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ NONE
"canDeposit": true, // Is currency depositable
"minWithdrawal": "0.001", // Minimal amount to withdraw
"maxWithdrawal": "0", // Maximum amount to withdraw
"makerFee": "0.1", // Maker fee for currency
"takerFee": "0.1" // Taker fee for currency
},
{...}
}
Expand Down
8 changes: 8 additions & 0 deletions pages/public/http-v4.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ NONE
"can_deposit": true, // Identifies whether deposits are enabled or disabled.
"min_withdraw": "0.001", // Identifies the single minimum withdrawal amount of a cryptocurrency.
"max_withdraw": "2", // Identifies the single maximum withdrawal amount of a cryptocurrency.
"maker_fee": "0.1", // Maker fee in percentage
"taker_fee": "0.1", // Taker fee in percentage
"min_deposit": "0.0001", // Min deposit amount
"max_deposit": "0", // Max deposit amount, will not be returned if there is no limit, 0 if unlimited
"currency_precision": 18, // Max number of digits to the right of the decimal point
Expand Down Expand Up @@ -199,6 +201,8 @@ NONE
"can_deposit": true,
"min_withdraw": "0.02",
"max_withdraw": "0",
"maker_fee": "0.1",
"taker_fee": "0.1",
"min_deposit": "0.1",
"max_deposit": "0",
"currency_precision": 18,
Expand Down Expand Up @@ -235,6 +239,8 @@ NONE
"can_deposit": true,
"min_withdraw": "5",
"max_withdraw": "0",
"maker_fee": "0.1",
"taker_fee": "0.1",
"min_deposit": "0",
"max_deposit": "0",
"currency_precision": 6,
Expand Down Expand Up @@ -288,6 +294,8 @@ NONE
"can_deposit": true,
"min_withdraw": "50",
"max_withdraw": "100000",
"maker_fee": "0.1",
"taker_fee": "0.1",
"min_deposit": "50",
"max_deposit": "100000",
"is_memo": false,
Expand Down

0 comments on commit 5096ab3

Please sign in to comment.