1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! An SDK for Stellar that can be used in Substrate projects

#![cfg_attr(not(any(test, feature = "std")), no_std)]
// #![warn(missing_docs)]

#[cfg(not(feature = "std"))]
extern crate alloc;

mod lib {
    #[cfg(all(not(feature = "std"), feature = "offchain"))]
    pub use alloc::string::String;
    #[cfg(feature = "std")]
    pub use std::string::String;
}

mod amount;
mod binary;
mod error;
pub mod network;
mod public_key;
mod secret_key;
mod utils;
mod xdr;

pub use error::StellarSdkError;

pub const BASE_FEE_STROOPS: u32 = 100;

#[cfg(feature = "offchain")]
pub mod horizon;

pub use xdr::{
    compound_types,
    impls::{
        account_id::IntoAccountId, claimable_balance_id::IntoClaimbleBalanceId,
        data_value::IntoDataValue, hash::IntoHash, muxed_account::IntoMuxedAccountId,
        time_bounds::*,
    },
    types::{
        self, AccountId, Asset, AssetCode, ClaimPredicate, ClaimableBalanceId, Claimant,
        Curve25519Secret, DataValue, FeeBumpTransaction, Hash, LedgerKey, Memo, MuxedAccount,
        Operation, Price, PublicKey, Signer, SignerKey, TimeBounds, Transaction,
        TransactionEnvelope, TrustLineFlags,
    },
    xdr_codec::XdrCodec,
};

pub use amount::*;
pub use binary::*;
pub use public_key::*;
pub use secret_key::*;