1use crate::prelude::Hash; 2 3pub struct OpenChannelResult { 4 pub tx_hash: Hash, 5 pub channel_id: Hash, 6} 7 8pub struct CloseChannelResult { 9 pub tx_hash: Hash, 10} 11 12#[async_trait::async_trait] 13pub trait HoprChainApi {}