zebedee-rust 0.8.0

Utility crate for ZEBEDEE Public API using reqwest
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};
use crate::StdResp;

pub type WalletInfoResponse = StdResp<Option<WalletData>>;

#[derive(Debug, Serialize, Deserialize)]
pub struct WalletData {
    pub unit: String,
    pub balance: String,
}