miraland_genesis/lib.rs
1#![allow(clippy::arithmetic_side_effects)]
2pub mod address_generator;
3pub mod genesis_accounts;
4pub mod stakes;
5pub mod unlocks;
6
7use serde::{Deserialize, Serialize};
8
9/// An account where the data is encoded as a Base64 string.
10#[derive(Serialize, Deserialize, Debug)]
11pub struct Base64Account {
12 pub balance: u64,
13 pub owner: String,
14 pub data: String,
15 pub executable: bool,
16}