This commit is contained in:
Hardhat Chad
2025-09-25 20:03:03 -07:00
parent 8a29165789
commit 037aa5e480
7 changed files with 87 additions and 11 deletions

13
api/src/state/seeker.rs Normal file
View File

@@ -0,0 +1,13 @@
use steel::*;
use super::OreAccount;
/// Seeker is an account which prevents multiple Seeker genesis tokens from being claimed.
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
pub struct Seeker {
// The mint address of the Seeker token.
pub mint: Pubkey,
}
account!(OreAccount, Seeker);