pub trait Asset {
// Required methods
fn coin_id(&self) -> Bytes32;
fn full_puzzle_hash(&self) -> Bytes32;
fn p2_puzzle_hash(&self) -> Bytes32;
fn amount(&self) -> u64;
fn constraints(&self) -> OutputConstraints;
}
pub trait Asset {
// Required methods
fn coin_id(&self) -> Bytes32;
fn full_puzzle_hash(&self) -> Bytes32;
fn p2_puzzle_hash(&self) -> Bytes32;
fn amount(&self) -> u64;
fn constraints(&self) -> OutputConstraints;
}