data-anchor-client 0.4.6

Contains blober client for interacting with the Blober program on Solana.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]

mod client;
mod constants;
mod fees;
mod helpers;
#[cfg(test)]
mod tests;
mod tx;
mod types;

pub use crate::{
    client::{BloberIdentifier, ChainError, DataAnchorClient, IndexerError, ProofError},
    constants::IndexerUrl,
    fees::*,
    types::*,
};