spl_slashing/lib.rs
1//! Slashing program
2#![deny(missing_docs)]
3
4pub mod duplicate_block_proof;
5mod entrypoint;
6pub mod error;
7pub mod instruction;
8pub mod processor;
9mod shred;
10pub mod state;
11
12// Export current SDK types for downstream users building with a different SDK
13// version
14pub use solana_program;
15
16solana_program::declare_id!("S1ashing11111111111111111111111111111111111");