Skip to content

Commit

Permalink
program: use forked version of anchor 0.26.0 that supports large idls (
Browse files Browse the repository at this point in the history
…#451)

* program: use forked version of anchor 0.26.0 that supports large idls

* CHANGELOG
  • Loading branch information
crispheaney committed May 1, 2023
1 parent 953950b commit 35d8468
Show file tree
Hide file tree
Showing 3 changed files with 189 additions and 26 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Features

- program: use forked version of anchor 0.26.0 that supports large idls ([#451](https://github.com/drift-labs/protocol-v2/pull/451))
- program: add security.txt ([#450](https://github.com/drift-labs/protocol-v2/pull/450))
- program: add L2 and L3 view of DLOB ([#445](https://github.com/drift-labs/protocol-v2/pull/445))
- ts-sdk: new DLOBSubscriber class to keep updated DLOB ([#439](https://github.com/drift-labs/protocol-v2/pull/439))
Expand Down
209 changes: 185 additions & 24 deletions Cargo.lock

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

5 changes: 3 additions & 2 deletions programs/drift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ mainnet-beta=[]
default=["mainnet-beta"]

[dependencies]
anchor-lang = "0.26.0"
# forked version of anchor 0.26.0 with support for large idl
anchor-lang = { git = "https://github.com/drift-labs/anchor.git", rev = "ed950fe", version = "0.26.0" }
solana-program = "1.13.7"
anchor-spl = "0.26.0"
anchor-spl = { git = "https://github.com/drift-labs/anchor.git", rev = "ed950fe", version = "0.26.0" }
pyth-client = "0.2.2"
bytemuck = { version = "1.4.0" }
borsh = "0.9.1"
Expand Down

0 comments on commit 35d8468

Please sign in to comment.