1
2
3
4
5
6
7
8
9
use anchor_lang::prelude::*;

pub const SEED_FRAME: &[u8] = b"frame";

#[account]
pub struct Frame {
    pub timestamp: u64,
    pub bump: u8,
}