ywpl_auction/
lib.rs

1#![allow(warnings)]
2
3mod utils;
4
5pub mod entrypoint;
6pub mod errors;
7pub mod instruction;
8pub mod processor;
9
10/// Prefix used in PDA derivations to avoid collisions with other programs.
11pub const PREFIX: &str = "auction";
12pub const EXTENDED: &str = "extended";
13pub const BIDDER_POT_TOKEN: &str = "bidder_pot_token";
14solana_program::declare_id!("yauNkf2KVyLp9YBQb4mNeiwFCCWu1Vei9Tx3EsgCESG");