use dig_clvm::{
Allocator, BlsCache, Bytes32, Coin, ConsensusConstants, Cost, Program, PublicKey, SecretKey,
Signature, SpendContext, TreeHash, DIG_MAINNET,
};
#[allow(unused_imports)]
use dig_clvm::{tree_hash, CoinSpend, SpendBundle};
#[test]
fn api_001_clvm_runtime_types_importable() {
let _allocator = Allocator::new();
let _cost: Cost = 0;
let _tree_hash: TreeHash = TreeHash::new([0u8; 32]);
}
#[test]
fn api_001_protocol_types_importable() {
let _b32 = Bytes32::default();
let _coin = Coin::new(Bytes32::default(), Bytes32::default(), 0);
let _program = Program::default();
}
#[test]
fn api_001_bls_types_importable() {
let _cache = BlsCache::default();
let _pk = PublicKey::default();
let _sk = SecretKey::from_seed(&[0u8; 32]);
let _sig = Signature::default();
}
#[test]
fn api_001_sdk_and_consensus_types_importable() {
let _spend_ctx = SpendContext::new();
let _cc: &ConsensusConstants = DIG_MAINNET.consensus();
}