Ethereum SignableTransaction, Eventuality

This commit is contained in:
Luke Parker
2024-09-18 00:54:20 -04:00
parent 8f2a9301cf
commit 433beac93a
11 changed files with 390 additions and 129 deletions

View File

@@ -1,3 +1,9 @@
pub(crate) mod output;
pub(crate) mod transaction;
pub(crate) mod block;
pub(crate) const DAI: [u8; 20] =
match const_hex::const_decode_to_array(b"0x6B175474E89094C44Da98b954EedeAC495271d0F") {
Ok(res) => res,
Err(_) => panic!("invalid non-test DAI hex address"),
};