This commit is contained in:
Hardhat Chad
2025-09-25 20:32:18 -07:00
parent 037aa5e480
commit d1d9991496
8 changed files with 113 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ pub enum OreInstruction {
// Seeker
ClaimSeeker = 15,
MigrateMiner = 16,
}
#[repr(C)]
@@ -121,6 +122,10 @@ pub struct Bury {
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
pub struct ClaimSeeker {}
#[repr(C)]
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
pub struct MigrateMiner {}
instruction!(OreInstruction, Automate);
instruction!(OreInstruction, Boost);
instruction!(OreInstruction, ClaimSOL);
@@ -134,3 +139,4 @@ instruction!(OreInstruction, Reset);
instruction!(OreInstruction, SetAdmin);
instruction!(OreInstruction, SetFeeCollector);
instruction!(OreInstruction, ClaimSeeker);
instruction!(OreInstruction, MigrateMiner);