use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use cw_storage_plus::Map;
pub use hub_base::state::{Config, CONFIG, ENTRY_SEQ};
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct Entry {
pub id: u64,
pub name: String,
pub chain_id: String,
pub prefix: String,
pub genesis_hash: String,
pub unbonding_period: String,
pub protocol: String,
pub logo: String,
pub particle: String,
}
pub const LIST: Map<u64, Entry> = Map::new("list");