wormhole/terra/contracts/mock-bridge-integration/src/state.rs

31 lines
652 B
Rust

use schemars::JsonSchema;
use serde::{
Deserialize,
Serialize,
};
use cosmwasm_std::Storage;
use cosmwasm_storage::{
singleton,
singleton_read,
ReadonlySingleton,
Singleton,
};
type HumanAddr = String;
pub static CONFIG_KEY: &[u8] = b"config";
// Guardian set information
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct Config {
pub token_bridge_contract: HumanAddr,
}
pub fn config(storage: &mut dyn Storage) -> Singleton<Config> {
singleton(storage, CONFIG_KEY)
}
pub fn config_read(storage: &dyn Storage) -> ReadonlySingleton<Config> {
singleton_read(storage, CONFIG_KEY)
}