mod iface;
mod iimpl;
mod contract;
mod builder;
pub mod rgb20;
pub mod rgb21;
pub mod rgb25;
mod suppl;
pub use builder::{BuilderError, ContractBuilder, TransitionBuilder};
pub use contract::{
AllocationWitness, ContractIface, FilterExclude, FilterIncludeAll, FungibleAllocation,
IfaceWrapper, OutpointFilter, TypedState,
};
pub use iface::{
ArgMap, ArgSpec, AssignIface, ExtensionIface, GenesisIface, GlobalIface, Iface, IfaceId,
OwnedIface, Req, TransitionIface, ValencyIface,
};
pub use iimpl::{IfaceImpl, IfacePair, ImplId, NamedField, NamedType, SchemaIfaces};
pub use rgb20::{rgb20, rgb20_stl, Rgb20, LIB_ID_RGB20, LIB_NAME_RGB20};
pub use rgb21::{rgb21, rgb21_stl, Rgb21, LIB_ID_RGB21, LIB_NAME_RGB21};
pub use rgb25::{rgb25, rgb25_stl, Rgb25, LIB_ID_RGB25, LIB_NAME_RGB25};
pub use suppl::{ContractSuppl, OwnedStateSuppl, SupplId, TickerSuppl, VelocityHint};
#[derive(Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug, Display, Default)]
#[derive(StrictType, StrictEncode, StrictDecode)]
#[strict_type(lib = crate::LIB_NAME_RGB_STD, tags = repr, into_u8, try_from_u8)]
#[cfg_attr(
feature = "serde",
derive(Serialize, Deserialize),
serde(crate = "serde_crate", rename_all = "camelCase")
)]
#[repr(u8)]
#[non_exhaustive]
pub enum VerNo {
#[default]
#[display("v1")]
V1 = 0,
}