bolt-cw-sdk 1.0.0

SDK for the BOLT protocol, providing utilities for interacting with the BOLT contracts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use thiserror::Error;
#[derive(Error, Debug)]
pub enum TxBuilderError {
    #[error("BIP32 Error: {0}")]
    BIP32Error(#[from] bip32::Error),
    #[error("Cosmrs Error: {0}")]
    CosmrsError(#[from] cosmrs::Error),
    #[error("Cosmrs Error Report: {0}")]
    CosmrsErrorReport(#[from] cosmrs::ErrorReport),
    #[error("Tx Fees not set")]
    FeesNotSet,
}