use crate::coin_spend::CoinSpend;
use crate::streamable_struct;
use crate::Bytes32;
use crate::Coin;
use chik_bls::G2Element;
use chik_streamable_macro::Streamable;
use chik_traits::Streamable;
use klvm_traits::FromKlvm;
use klvmr::allocator::{NodePtr, SExp};
use klvmr::cost::Cost;
use klvmr::op_utils::{first, rest};
use klvmr::reduction::EvalErr;
use klvmr::Allocator;
use std::result::Result;
#[cfg(feature = "py-bindings")]
use pyo3::prelude::*;
streamable_struct! (SpendBundle {
coin_spends: Vec<CoinSpend>,
aggregated_signature: G2Element,
});
impl SpendBundle {
pub fn aggregate(spend_bundles: &[SpendBundle]) -> SpendBundle {
let mut coin_spends = Vec::<CoinSpend>::new();
let mut aggregated_signature = G2Element::default();
for sb in spend_bundles {
coin_spends.extend_from_slice(&sb.coin_spends[..]);
aggregated_signature.aggregate(&sb.aggregated_signature);
}
SpendBundle {
coin_spends,
aggregated_signature,
}
}
pub fn name(&self) -> Bytes32 {
self.hash().into()
}
pub fn additions(&self) -> Result<Vec<Coin>, EvalErr> {
const CREATE_COIN_COST: Cost = 1800000;
const CREATE_COIN: u8 = 51;
let mut ret = Vec::<Coin>::new();
let mut cost_left = 11000000000;
let mut a = Allocator::new();
let checkpoint = a.checkpoint();
use klvmr::ENABLE_FIXED_DIV;
for cs in &self.coin_spends {
a.restore_checkpoint(&checkpoint);
let (cost, mut conds) =
cs.puzzle_reveal
.run(&mut a, ENABLE_FIXED_DIV, cost_left, &cs.solution)?;
if cost > cost_left {
return Err(EvalErr(a.nil(), "cost exceeded".to_string()));
}
cost_left -= cost;
let parent_coin_info: Bytes32 = cs.coin.coin_id().into();
while let Some((c, tail)) = a.next(conds) {
conds = tail;
let op = first(&a, c)?;
let c = rest(&a, c)?;
let buf = match a.sexp(op) {
SExp::Atom => a.atom(op),
_ => {
return Err(EvalErr(op, "invalid condition".to_string()));
}
};
if buf.len() != 1 {
continue;
}
if buf[0] == CREATE_COIN {
let (puzzle_hash, (amount, _)) = <(Bytes32, (u64, NodePtr))>::from_klvm(&a, c)
.map_err(|_| EvalErr(c, "failed to parse spend".to_string()))?;
ret.push(Coin {
parent_coin_info,
puzzle_hash,
amount,
});
if CREATE_COIN_COST > cost_left {
return Err(EvalErr(a.nil(), "cost exceeded".to_string()));
}
cost_left -= CREATE_COIN_COST;
}
}
}
Ok(ret)
}
}
#[cfg(feature = "py-bindings")]
#[pymethods]
impl SpendBundle {
#[staticmethod]
#[pyo3(name = "aggregate")]
fn py_aggregate(spend_bundles: Vec<SpendBundle>) -> SpendBundle {
SpendBundle::aggregate(&spend_bundles)
}
#[pyo3(name = "name")]
fn py_name(&self) -> Bytes32 {
self.name()
}
fn removals(&self) -> Vec<Coin> {
let mut ret = Vec::<Coin>::with_capacity(self.coin_spends.len());
for cs in &self.coin_spends {
ret.push(cs.coin.clone());
}
ret
}
#[pyo3(name = "additions")]
fn py_additions(&self) -> PyResult<Vec<Coin>> {
self.additions()
.map_err(|e| pyo3::exceptions::PyValueError::new_err(e.1))
}
fn debug(&self, py: Python<'_>) -> PyResult<()> {
use pyo3::types::PyDict;
let ctx: &PyDict = PyDict::new(py);
ctx.set_item("self", self.clone().into_py(py))?;
py.run(
"from chik.wallet.util.debug_spend_bundle import debug_spend_bundle\n\
debug_spend_bundle(self)\n",
None,
Some(ctx),
)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::Program;
use rstest::rstest;
use std::fs;
#[rstest]
#[case(
"e3c0",
"fd65e4b0f21322f78d1025e8a8ff7a1df77cd40b86885b851f4572e5ce06e4ff",
"e3c000a395f8f69d5e263a9548f13bffb1c4b701ab8f3faa03f7647c8750d077"
)]
#[case(
"bb13",
"6b2aaee962cb1de3fdeb1f0506c02df4b9e162e2af3dd1db22048454b5122a87",
"bb13d1e13438736c7ba0217c7b82ee4db56a7f4fb9d22c703c2152362b2314ee"
)]
fn test_additions_ff(
#[case] spend_file: &str,
#[case] expect_parent: &str,
#[case] expect_ph: &str,
) {
let spend_bytes = fs::read(format!("../ff-tests/{spend_file}.spend")).expect("read file");
let spend = CoinSpend::from_bytes(&spend_bytes).expect("parse CoinSpend");
let bundle = SpendBundle::new(vec![spend], G2Element::default());
let additions = bundle.additions().expect("additions");
assert_eq!(additions.len(), 1);
assert_eq!(
additions[0].parent_coin_info.as_ref(),
&hex::decode(expect_parent).expect("hex::decode")
);
assert_eq!(
additions[0].puzzle_hash.as_ref(),
&hex::decode(expect_ph).expect("hex::decode")
);
assert_eq!(additions[0].amount, 1);
}
fn test_impl<F: Fn(Coin, SpendBundle)>(solution: &str, body: F) {
let solution = hex::decode(solution).expect("hex::decode");
let test_coin = Coin::new(
(&hex::decode("4444444444444444444444444444444444444444444444444444444444444444")
.unwrap())
.into(),
(&hex::decode("3333333333333333333333333333333333333333333333333333333333333333")
.unwrap())
.into(),
1,
);
let spend = CoinSpend::new(
test_coin.clone(),
Program::new(vec![1_u8].into()),
Program::new(solution.into()),
);
let bundle = SpendBundle::new(vec![spend], G2Element::default());
body(test_coin, bundle);
}
#[test]
fn test_single_create_coin() {
let solution = "ff\
ff33\
ffa02222222222222222222222222222222222222222222222222222222222222222\
ff01\
80\
80";
test_impl(solution, |test_coin: Coin, bundle: SpendBundle| {
let additions = bundle.additions().expect("additions");
let new_coin = Coin::new(
test_coin.coin_id().into(),
(&hex::decode("2222222222222222222222222222222222222222222222222222222222222222")
.unwrap())
.into(),
1,
);
assert_eq!(additions, [new_coin]);
});
}
#[test]
fn test_invalid_condition() {
let solution = "ff\
ffff0133\
ffa02222222222222222222222222222222222222222222222222222222222222222\
ff01\
80\
80";
test_impl(solution, |_test_coin, bundle: SpendBundle| {
assert_eq!(bundle.additions().unwrap_err().1, "invalid condition");
});
}
#[test]
fn test_invalid_spend() {
let solution = "ff\
ff33\
ffa02222222222222222222222222222222222222222222222222222222222222222\
ffff0101\
80\
80";
test_impl(solution, |_test_coin, bundle: SpendBundle| {
assert_eq!(bundle.additions().unwrap_err().1, "failed to parse spend");
});
}
}