whisky-common 1.0.25

The Cardano Rust SDK, inspired by MeshJS
Documentation
1
2
3
4
5
6
7
use crate::*;
use async_trait::async_trait;

#[async_trait]
pub trait Submitter: Send + Sync {
    async fn submit_tx(&self, tx_hex: &str) -> Result<String, WError>;
}