yevm-base 0.1.0

Primitive types (address, uint256, transaction, block header) for the YEVM Ethereum VM.
Documentation
1
2
3
4
5
6
7
use yevm_misc::hex::{Hex, parse};

pub type Acc = Hex<20>;

pub const fn acc(s: &str) -> Acc {
    Acc::new(parse(s))
}