Skip to content

Commit

Permalink
ac: expose ChangeLogEventV1 in crate (#3707)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngundotra committed Oct 12, 2022
1 parent 8177a4d commit 39935ba
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 19 deletions.
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 <maintainers@solana.foundation>"]
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 <maintainers@solana.foundation>"]
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

0 comments on commit 39935ba

Please sign in to comment.