-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumping protocol sdk to 2.103.0-beta.4
- Loading branch information
1 parent
70eac64
commit 79d7d2f
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule protocol
updated
23 files
+2 −0 | CHANGELOG.md | |
+2 −1 | package.json | |
+44 −0 | programs/drift/src/controller/liquidation.rs | |
+30 −0 | programs/drift/src/controller/orders.rs | |
+2 −0 | programs/drift/src/error.rs | |
+33 −8 | programs/drift/src/instructions/admin.rs | |
+58 −0 | programs/drift/src/instructions/user.rs | |
+15 −0 | programs/drift/src/lib.rs | |
+17 −0 | programs/drift/src/math/margin.rs | |
+141 −0 | programs/drift/src/math/margin/tests.rs | |
+2 −2 | programs/drift/src/state/perp_market.rs | |
+4 −2 | programs/drift/src/state/spot_market.rs | |
+4 −0 | programs/drift/src/state/spot_market_map.rs | |
+2 −1 | programs/drift/src/state/user.rs | |
+4 −4 | programs/drift/src/validation/margin.rs | |
+1 −1 | sdk/VERSION | |
+1 −1 | sdk/package.json | |
+34 −0 | sdk/src/adminClient.ts | |
+34 −0 | sdk/src/driftClient.ts | |
+67 −3 | sdk/src/idl/drift.json | |
+2 −0 | sdk/src/types.ts | |
+1 −0 | test-scripts/run-anchor-tests.sh | |
+785 −0 | tests/spotMarketPoolIds.ts |