ergo-lib 0.4.4

ErgoTree interpreter and wallet-like features for Ergo
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// use k256::Scalar;
use num_bigint::BigInt;
// use std::convert::TryFrom;

#[derive(Debug, PartialEq, Eq, Clone)]
pub struct BigInteger(BigInt);

impl From<BigInt> for BigInteger {
    fn from(b: BigInt) -> Self {
        BigInteger(b)
    }
}