cw-orch-daemon 0.27.2

Scripting library for deploying and interacting with CosmWasm smart-contracts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Core Sender traits
pub mod builder;
pub mod query;
pub mod sign;
pub mod tx;

// Senders
mod cosmos;
mod cosmos_batch;
mod cosmos_options;
mod query_only;

pub use {
    cosmos::{CosmosSender, Wallet},
    cosmos_batch::{options::CosmosBatchOptions, BatchDaemon, CosmosBatchSender},
    cosmos_options::{CosmosOptions, CosmosWalletKey},
    query_only::{QueryOnlyDaemon, QueryOnlySender},
};