1pub type TonApiResult<T, E = TonApiError> = Result<T, E>; 2 3#[derive(Debug)] 4pub enum TonApiError { 5 UnknownError(String), // TODO 6}