plutus_ledger_api/v2/
mod.rs

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

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