Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
42b263d
Add derive address helpers
febo Sep 20, 2025
e7cee3d
Update lock file
febo Sep 20, 2025
3afb906
Fix doc links
febo Sep 20, 2025
35a1a9f
Add missing dependency
febo Sep 21, 2025
6e88afe
Address review comments (#78)
febo Mar 14, 2025
95f35be
Deprecate AccountInfo::realloc (#174)
febo Jun 13, 2025
f1e1402
Ignore `zero_init` parameter (#203)
febo Jul 17, 2025
d99ab65
Remove unused
febo Oct 3, 2025
93775cd
Refactor directory structure (#18)
febo Sep 24, 2024
135332b
Add from_slice helper (#23)
febo Oct 9, 2024
e8e5a58
Fix signer from helpers
febo Oct 10, 2024
3d4e601
Add signer macro
febo Oct 16, 2024
fd97074
Fix doctest
febo Oct 16, 2024
530307e
Add `checked_create_program_address` helper (#30)
febo Oct 25, 2024
fd3115b
sdk: Improve comments (#64)
febo Feb 14, 2025
20cd6fb
add `seeds` macro (#73)
publicqi Mar 1, 2025
eecbbb4
Address review comments (#78)
febo Mar 14, 2025
116af77
add memo program (#105)
publicqi Mar 27, 2025
181779d
Account borrow state check (#147)
febo May 1, 2025
0057ff7
Add const qualifier (#159)
febo May 29, 2025
2bb0242
Simplify invoke instruction (#154)
febo Jun 6, 2025
e4a04df
ci: Add spellcheck step (#164)
febo Jul 16, 2025
98a98d5
Clarify the use of constant values (#200)
febo Jul 16, 2025
6fe3eee
Feat: Add debug/copy derives and enable missing debug/copy lint (#228)
stegaBOB Aug 26, 2025
258167e
pinocchio: Add `pubkey_eq` helper (#248)
febo Sep 11, 2025
6be05a1
Use solana-address
febo Apr 1, 2025
01c8789
Fix syscall parameter
febo Apr 1, 2025
e87e00d
Fix docs
febo Sep 16, 2025
82bac3f
Update references to pubkey
febo Sep 16, 2025
be29301
Use solana-account-view
febo Apr 2, 2025
3b6587d
Update dependencies
febo Sep 24, 2025
ed72120
Add instruction view
febo Sep 24, 2025
235ce85
Update lamports reference
febo Sep 25, 2025
9a2d280
Tweks
febo Oct 3, 2025
586ff8c
Add target_arch bpf
febo Oct 18, 2025
e7f618c
Fix rebase
febo Oct 23, 2025
104f4cc
Fix lint
febo Oct 23, 2025
3a5bc83
Simplify definition
febo Oct 28, 2025
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
10 changes: 10 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ members = [
"inflation",
"instruction",
"instruction-error",
"instruction-view",
"instructions-sysvar",
"keccak-hasher",
"keypair",
Expand Down Expand Up @@ -256,6 +257,7 @@ solana-hash = { path = "hash", version = "3.0.0", default-features = false }
solana-inflation = { path = "inflation", version = "3.0.0" }
solana-instruction = { path = "instruction", version = "3.0.0", default-features = false }
solana-instruction-error = { path = "instruction-error", version = "2.0.0" }
solana-instruction-view = { path = "instruction-view", version = "0.0.0" }
solana-instructions-sysvar = { path = "instructions-sysvar", version = "3.0.0" }
solana-keccak-hasher = { path = "keccak-hasher", version = "3.0.0" }
solana-keypair = { path = "keypair", version = "3.0.0" }
Expand Down
30 changes: 30 additions & 0 deletions instruction-view/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "solana-instruction-view"
description = "Lightweight instruction representation"
documentation = "https://docs.rs/solana-instruction-view"
version = "0.0.0"
rust-version = "1.81.0"
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
rustdoc-args = ["--cfg=docsrs"]

[features]
cpi = ["dep:solana-define-syscall", "dep:solana-program-error"]

[dependencies]
solana-account-view = { workspace = true }
solana-address = { workspace = true }
solana-program-error = { workspace = true, optional = true }

[target.'cfg(any(target_os = "solana", target_arch = "bpf"))'.dependencies]
solana-define-syscall = { workspace = true, optional = true }

[lints]
workspace = true
Loading