spl_tlv_account_resolution/lib.rs
1//! Crate defining a state interface for offchain account resolution. If a
2//! program writes the proper state information into one of their accounts, any
3//! offchain and onchain client can fetch any additional required accounts for
4//! an instruction.
5
6#![allow(clippy::arithmetic_side_effects)]
7#![deny(missing_docs)]
8#![cfg_attr(not(test), forbid(unsafe_code))]
9
10pub mod account;
11pub mod error;
12pub mod pubkey_data;
13pub mod seeds;
14pub mod state;
15
16// Export current sdk types for downstream users building with a different sdk
17// version
18pub use {
19 solana_account_info, solana_decode_error, solana_instruction, solana_msg, solana_program_error,
20 solana_pubkey,
21};