oil_api/state/seeker.rs
1use steel::*;
2
3use super::OilAccount;
4
5/// Seeker is an account which prevents multiple Seeker genesis tokens from being claimed.
6#[repr(C)]
7#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
8pub struct Seeker {
9 // The mint address of the Seeker token.
10 pub mint: Pubkey,
11}
12
13account!(OilAccount, Seeker);