Files
ore/api/src/state/market.rs
Hardhat Chad fa1fb5e30c scaffold
2025-06-04 15:13:44 -07:00

15 lines
271 B
Rust

use steel::*;
use super::OreAccount;
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
pub struct Market {
/// The id of the block this market is associated with.
pub block_id: u64,
}
// TODO Bonding curve stuff
account!(OreAccount, Market);