16 releases

0.4.2 Oct 18, 2024
0.3.2 Oct 18, 2024
0.3.0 Jan 2, 2024
0.2.0 Jul 26, 2023
0.1.3 Oct 12, 2022

#8 in #nft

Download history 929/week @ 2024-08-04 900/week @ 2024-08-11 602/week @ 2024-08-18 1145/week @ 2024-08-25 727/week @ 2024-09-01 938/week @ 2024-09-08 793/week @ 2024-09-15 780/week @ 2024-09-22 960/week @ 2024-09-29 684/week @ 2024-10-06 792/week @ 2024-10-13 612/week @ 2024-10-20 622/week @ 2024-10-27 718/week @ 2024-11-03 549/week @ 2024-11-10 623/week @ 2024-11-17

2,541 downloads per month
Used in 19 crates (14 directly)

Apache-2.0

115KB
2K SLoC

Solana

SPL Account Compression Rust SDK

More information about account compression can be found in the solana-program-library repo.

spl-account-compression and this crate's implementation are targeted towards supporting Metaplex Compressed NFTs and may be subject to change.


lib.rs:

SPL Account Compression is an on-chain program that exposes an interface to manipulating SPL ConcurrentMerkleTrees

A buffer of proof-like changelogs is stored on-chain that allow multiple proof-based writes to succeed within the same slot. This is accomplished by fast-forwarding out-of-date (or possibly invalid) proofs based on information stored in the changelogs. See a copy of the whitepaper here

To circumvent proof size restrictions stemming from Solana transaction size restrictions, SPL Account Compression also provides the ability to cache the upper most leaves of the concurrent merkle tree. This is called the "canopy", and is stored at the end of the ConcurrentMerkleTreeAccount. More information can be found in the initialization instruction documentation.

While SPL ConcurrentMerkleTrees can generically store arbitrary information, one exemplified use-case is the Bubblegum contract, which uses SPL-Compression to store encoded information about NFTs. The use of SPL-Compression within Bubblegum allows for:

  • up to 1 billion NFTs to be stored in a single account on-chain (>10,000x decrease in on-chain cost)
  • up to 2048 concurrent updates per slot

Operationally, SPL ConcurrentMerkleTrees must be supplemented by off-chain indexers to cache information about leafs and to power an API that can supply up-to-date proofs to allow updates to the tree. All modifications to SPL ConcurrentMerkleTrees are settled on the Solana ledger via instructions against the SPL Compression contract. A production-ready indexer (Plerkle) can be found in the Metaplex program library

Dependencies

~17–26MB
~431K SLoC