1
2
3
4
5
6
7
use cosmwasm_schema::cw_serde;
use cosmwasm_std::Addr;

#[cw_serde]
pub struct KernelAddressResponse {
    pub kernel_address: Addr,
}