shuttle-core 0.3.1

Library to read, write, hash, and sign the xdr structures used in the Stellar Network.
Documentation
//! xdr data structures and conversion functions.
mod amount;
mod asset;
mod keypair;
mod memo;
mod operation;
mod signature;
mod time_bounds;
mod transaction;

mod xdr_trait;

use self::asset::Asset;
use self::keypair::PublicKey;
use self::memo::Memo;
use self::signature::DecoratedSignature;
use self::time_bounds::TimeBounds;
use self::operation::Operation;

pub use self::xdr_trait::{FromXdr, ToXdr};