1use cosmwasm_schema::cw_serde; 2use cosmwasm_std::Addr; 3 4#[cw_serde] 5pub struct KernelAddressResponse { 6 pub kernel_address: Addr, 7}