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
#[macro_use]
extern crate amplify;
#[macro_use]
extern crate strict_encoding;
#[cfg(feature = "serde")]
extern crate serde_crate as serde;
#[cfg(feature = "serde")]
#[macro_use]
extern crate serde_with;
mod consignments;
mod disclosure;
mod stash;
pub mod fungible;
mod state;
pub mod psbt;
pub mod blank;
pub mod prelude {
pub use rgb_core::*;
pub use crate::consignments::{
AnchoredBundles, ChainIter, ConsignmentEndseals, ConsignmentId, ConsignmentType, Contract,
ContractConsignment, ExtensionList, InmemConsignment, MeshIter, StateTransfer,
TransferConsignment, RGB_INMEM_CONSIGNMENT_VERSION,
};
pub use crate::disclosure::{Disclosure, DisclosureId, RGB_DISCLOSURE_VERSION};
pub use crate::fungible;
pub use crate::stash::Stash;
pub use crate::state::{
AssignedState, ContractState, ContractStateMap, OutpointState, OutpointStateMap,
OwnedAttachment, OwnedData, OwnedRight, OwnedValue, StateAtom, StateTrait,
};
}
pub use prelude::*;