evm-coder 0.4.3

EVM call decoding/encoding proc macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
use evm_coder_procedural::AbiCoder;

#[derive(AbiCoder, PartialEq, Debug)]
struct EmptyStruct {}

#[derive(AbiCoder, PartialEq, Debug)]
struct EmptyTupleStruct();

fn main() {
	assert!(false);
}