plutus_ledger_api/v3/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Plutus types and utilities for Plutus V3
//!
//! Types and utilities unchanged in the new version are re-exported from the v2 module.
pub mod ratio;
pub mod transaction;

// Inherited from v2
pub use crate::v2::address;
pub use crate::v2::assoc_map;
pub use crate::v2::crypto;
pub use crate::v2::datum;
pub use crate::v2::interval;
pub use crate::v2::redeemer;
pub use crate::v2::script;
pub use crate::v2::value;