This commit is contained in:
Hardhat Chad
2025-09-25 09:51:11 -07:00
parent 199d487afa
commit 91d51adcd3
9 changed files with 207 additions and 6 deletions

View File

@@ -18,9 +18,11 @@ pub enum OreInstruction {
Wrap = 10,
SetAdmin = 11,
SetFeeCollector = 12,
MigrateMiner = 13,
MigrateSquares = 14,
// Seeker
ClaimSeeker = 14,
ClaimSeeker = 15,
}
#[repr(C)]
@@ -121,6 +123,14 @@ pub struct Bury {
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
pub struct ClaimSeeker {}
#[repr(C)]
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
pub struct MigrateMiner {}
#[repr(C)]
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
pub struct MigrateSquares {}
instruction!(OreInstruction, Automate);
instruction!(OreInstruction, Boost);
instruction!(OreInstruction, ClaimSOL);
@@ -134,3 +144,5 @@ instruction!(OreInstruction, Reset);
instruction!(OreInstruction, SetAdmin);
instruction!(OreInstruction, SetFeeCollector);
instruction!(OreInstruction, ClaimSeeker);
instruction!(OreInstruction, MigrateMiner);
instruction!(OreInstruction, MigrateSquares);