shank-parse 2.0.0

A proc-macro crate that generates Rust client code from Shank/Anchor IDL JSON files for Solana programs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use shank_parse_macro::shank_parse;

#[doc(hidden)]
pub mod __private {
    pub use solana_sdk::instruction::{AccountMeta, Instruction};
    pub use solana_sdk::pubkey::Pubkey;

    // Re-exported so generated code can derive/(de)serialize via borsh without
    // the consuming crate having to depend on `borsh` directly.
    pub use borsh;
}