foundation-urtypes 0.5.0

Uniform Resource (UR) types. This crate provides a collection of Uniform Resources types that can serialized and deserialized.
Documentation
// SPDX-FileCopyrightText: © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
// SPDX-License-Identifier: GPL-3.0-or-later

//! Uniform Resources registry.

mod address;
mod coininfo;
mod eckey;
mod hdkey;
mod keypath;
mod output_descriptor;
mod passport;
mod seed;

pub use self::address::*;
pub use self::coininfo::*;
pub use self::eckey::*;
pub use self::hdkey::*;
pub use self::keypath::*;
pub use self::output_descriptor::*;
pub use self::passport::*;
pub use self::seed::*;