EZChain-core / ezchain-cchain-explorer

Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
GNU General Public License v3.0
0 stars 0 forks source link

manual verify contract source for EVM++ address #7

Open Zergity opened 2 years ago

Zergity commented 2 years ago

Address: 0x5555555555555555555555555555555555555555

Contract Source:

pragma solidity ^0.8.0;

contract EVMPP {
    // Batch Transaction
    struct Tx {
        address to;
        bytes   data;
        uint256 value;  // ether value to transfer
    }

    function call(Tx[] calldata txs) external {}

    // Tx with Fee Payer
    function call(
        address to,
        bytes   calldata data,
        uint256 nonce,
        uint256 gasLimit,
        uint256 v,      // signature V
        uint256 r,      // signature R
        uint256 s       // signature S
    ) payable external {}
}
enixdark commented 2 years ago

similar issue 8 , the logic only need to update in database for EVMPP with fixing in UI when show contract creator https://github.com/EZChain-core/ezchain-cchain-explorer/pull/9

@nguyenduybinh please check and MR