You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Description
Update Deepbook minimum fees, merge after upgrade
## Test plan
Docs only
## Release notes
Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.
For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.
- [ ] Protocol:
- [ ] Nodes (Validators and Full nodes):
- [ ] gRPC:
- [ ] JSON-RPC:
- [ ] GraphQL:
- [ ] CLI:
- [ ] Rust SDK:
/order_updates/:pool_name?limit=<INTEGER>&start_time=<UNIX_TIMESTAMP_SECONDS>&end_time=<UNIX_TIMESTAMP_SECONDS>&status=<"Placed" or "Canceled">&balance_manager_id=<ID>
530
+
```
531
+
532
+
Returns the orders that were recently placed or canceled in the pool
Copy file name to clipboardExpand all lines: docs/content/standards/deepbookv3/design.mdx
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -56,10 +56,10 @@ Every epoch, users with non zero stake can submit a proposal to change these par
56
56
57
57
| min_value (bps) | max_value (bps) | Pool type | Taker or maker |
58
58
| --- | --- | --- | --- |
59
-
|5| 10 | Volatile | Taker |
60
-
|2| 5 | Volatile | Maker |
61
-
| 0.5| 1 | Stable | Taker |
62
-
| 0.2| 0.5 | Stable | Maker |
59
+
|1| 10 | Volatile | Taker |
60
+
|0| 5 | Volatile | Maker |
61
+
| 0.1| 1 | Stable | Taker |
62
+
| 0 | 0.5 | Stable | Maker |
63
63
| 0 | 0 | Whitelisted | Taker and maker |
64
64
65
65
Users can also vote on live proposals. When a proposal exceeds the quorum, the new trade parameters are queued to go live from the following epoch and onwards. Proposals and votes are reset every epoch. Users can start submitting and voting on proposals the epoch following their stake. Quorum is equivalent to half of the total voting power. A user's voting power is calculated with the following formula where ${V}$ is the voting power, ${S}$ is the amount staked, and ${V_c}$ is the voting power cutoff. ${V_c}$ is currently set to 100,000 DEEP.
0 commit comments