Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions account-compression/Cargo.lock

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

4 changes: 2 additions & 2 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.1.2"
version = "0.1.3"
description = "Solana Program Library Account Compression Program"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -21,7 +21,7 @@ default = []
anchor-lang = "0.25.0"
bytemuck = "1.8.0"
spl-concurrent-merkle-tree = { version = "0.1.1", path="../../../libraries/concurrent-merkle-tree", features = [ "sol-log" ]}
spl-noop = { version = "0.1.2", path="../noop", features = [ "no-entrypoint" ]}
spl-noop = { version = "0.1.3", path="../noop", features = [ "no-entrypoint" ]}

[profile.release]
overflow-checks = true
2 changes: 1 addition & 1 deletion account-compression/programs/noop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-noop"
version = "0.1.2"
version = "0.1.3"
description = "Solana Program Library No-op Program"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
14 changes: 1 addition & 13 deletions account-compression/programs/noop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,4 @@
This is crate provides a wrapper for invoking `spl-noop`, which does nothing.
It's primary use is circumventing log truncation when emitting application data by `invoke`-ing `spl-noop` with event data.

<p align="center">
<a href="https://solana.com">
<img alt="Solana" src="https://i.imgur.com/IKyzQ6T.png" width="250" />
</a>
</p>

# SPL Account Compression Rust SDK (Beta)

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-noop` and this crate's implementation are targeted towards supporting [account-compression](https://github.com/solana-labs/solana-program-library/tree/master/account-compression) and may be subject to change.
`spl-noop` and this crate's implementation are targeted towards supporting [account-compression](https://github.com/solana-labs/solana-program-library/tree/master/account-compression) and may be subject to change.
2 changes: 1 addition & 1 deletion account-compression/sdk/idl/spl_account_compression.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.1",
"version": "0.1.3",
"name": "spl_account_compression",
"instructions": [
{
Expand Down