Skip to content

Commit

Permalink
Remove debug logging in account compression (solana-labs#7087)
Browse files Browse the repository at this point in the history
remove debug logging in account compression, update doc hyperlinks to modern bubblegum resources
  • Loading branch information
ngundotra authored Jul 31, 2024
1 parent 1244657 commit 63b3a25
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions account-compression/programs/account-compression/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-account-compression"
version = "0.3.0"
version = "0.3.1"
description = "Solana Program Library Account Compression Program"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -21,9 +21,7 @@ default = []
anchor-lang = "0.29.0"
bytemuck = "1.13"
solana-program = ">=1.18.11,<=2"
spl-concurrent-merkle-tree = { version = "0.3.0", path = "../../../libraries/concurrent-merkle-tree", features = [
"sol-log",
] }
spl-concurrent-merkle-tree = { version = "0.3.0", path = "../../../libraries/concurrent-merkle-tree" }
spl-noop = { version = "0.2.0", path = "../noop", features = ["no-entrypoint"] }

[profile.release]
Expand Down
6 changes: 2 additions & 4 deletions account-compression/programs/account-compression/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
</a>
</p>

# SPL Account Compression Rust SDK (Beta)
# SPL Account Compression Rust SDK

More information about account compression can be found in [the solana-program-library repo](https://github.com/solana-labs/solana-program-library/tree/master/account-compression).

The [Solana Program Examples repo](https://github.com/solana-developers/program-examples) will eventually include examples of how to use this program.

`spl-account-compression` and this crate's implementation are targeted towards supporting [Metaplex Compressed NFTs](https://github.com/metaplex-foundation/metaplex-program-library/tree/master/bubblegum) and may be subject to change.
`spl-account-compression` and this crate's implementation are targeted towards supporting [Metaplex Compressed NFTs](https://github.com/metaplex-foundation/mpl-bubblegum) and may be subject to change.
2 changes: 1 addition & 1 deletion account-compression/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Here are some examples using account compression in the wild:

* Solana Program Library [tests](https://github.com/solana-labs/solana-program-library/tree/master/account-compression/sdk/tests)

* Metaplex Program Library Compressed NFT [tests](https://github.com/metaplex-foundation/metaplex-program-library/tree/master/bubblegum/js/tests)
* Metaplex Program Library Compressed NFT [tests](https://github.com/metaplex-foundation/mpl-bubblegum/tree/main/clients/js/test)

## Build from Source

Expand Down

0 comments on commit 63b3a25

Please sign in to comment.