mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-14 07:26:51 +00:00
58 lines
1.1 KiB
Rust
58 lines
1.1 KiB
Rust
use steel::*;
|
|
|
|
#[repr(u8)]
|
|
#[derive(Clone, Copy, Debug, Eq, PartialEq, TryFromPrimitive)]
|
|
pub enum OreInstruction {
|
|
// User
|
|
Claim = 0,
|
|
Close = 1,
|
|
Mine = 2,
|
|
Open = 3,
|
|
Reset = 4,
|
|
Update = 5,
|
|
|
|
// Admin
|
|
Initialize = 100,
|
|
}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
|
|
pub struct Claim {
|
|
pub amount: [u8; 8],
|
|
}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
|
|
pub struct Close {}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
|
|
pub struct Mine {
|
|
pub digest: [u8; 16],
|
|
pub nonce: [u8; 8],
|
|
}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
|
|
pub struct Open {}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
|
|
pub struct Reset {}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
|
|
pub struct Update {}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
|
|
pub struct Initialize {}
|
|
|
|
instruction!(OreInstruction, Claim);
|
|
instruction!(OreInstruction, Close);
|
|
instruction!(OreInstruction, Mine);
|
|
instruction!(OreInstruction, Open);
|
|
instruction!(OreInstruction, Reset);
|
|
instruction!(OreInstruction, Update);
|
|
instruction!(OreInstruction, Initialize);
|