ic-solidity-bindgen 0.1.25

Generates bindings for solidity contracts. Uses web3 under the hood. This is a fork of graphprotocol/solidity-bindgen
Documentation
1
2
3
4
5
6
7
8
use ic_web3_rs::ethabi::Log;
use ic_web3_rs::types::Log as EthLog;

#[derive(Debug, PartialEq, Clone)]
pub struct EventLog {
    pub event: Log,
    pub log: EthLog,
}