xpx_chain_sdk/
lib.rs

1/*
2 * Copyright 2018 ProximaX Limited. All rights reserved.
3 * Use of this source code is governed by the Apache 2.0
4 * license that can be found in the LICENSE file.
5 */
6
7#[macro_use]
8extern crate anyhow;
9extern crate core;
10#[macro_use]
11extern crate derive_builder;
12#[macro_use]
13extern crate erased_serde;
14#[macro_use]
15extern crate fixed_hash;
16extern crate flatbuffers as fb;
17#[macro_use]
18extern crate serde;
19extern crate serde_qs as qs;
20#[macro_use]
21extern crate thiserror;
22extern crate xpx_chain_crypto as crypto;
23
24pub use self::helpers::hashes::*;
25pub use self::models::*;
26
27pub mod api;
28// pub mod websocket;
29mod helpers;
30mod models;