use charms_client::{NormalizedSpell, tx::Tx};
use wasm_bindgen::{JsValue, prelude::wasm_bindgen};
pub const SPELL_VK: &str = "0x0041d9843ec25ba04797a0ce29af364389f7eda9f7126ef39390c357432ad9aa";
#[wasm_bindgen(js_name = "extractAndVerifySpell")]
pub fn extract_and_verify_spell_js(tx: JsValue, mock: bool) -> Result<JsValue, JsValue> {
let tx: Tx = serde_wasm_bindgen::from_value(tx)?;
let norm_spell = extract_and_verify_spell(&tx, mock)?;
let value = serde_wasm_bindgen::to_value(&norm_spell)?;
Ok(value)
}
pub fn extract_and_verify_spell(tx: &Tx, mock: bool) -> Result<NormalizedSpell, String> {
let norm_spell = charms_client::tx::extract_and_verify_spell(SPELL_VK, tx, mock)
.map_err(|e| e.to_string())?;
Ok(norm_spell)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_extract_and_verify_spell() {
let tx_json = include_str!("../test/bitcoin-tx.json");
let tx: Tx = serde_json::from_str(tx_json).unwrap();
let norm_spell = extract_and_verify_spell(&tx, true).unwrap();
println!("{}", serde_json::to_string_pretty(&norm_spell).unwrap());
}
}