spl-slashing 0.0.1

Solana Program Library Slashing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Slashing program
#![deny(missing_docs)]

pub mod duplicate_block_proof;
mod entrypoint;
pub mod error;
pub mod instruction;
pub mod processor;
mod shred;
pub mod state;

// Export current SDK types for downstream users building with a different SDK
// version
pub use solana_program;

solana_program::declare_id!("S1ashing11111111111111111111111111111111111");