Forkchoice Ethereum Mainnet

Address Contract Partially Verified

Address 0xcE7a977Cac4a481bc84AC06b2Da0df614e621cf3
Balance 0 ETH
Nonce 1
Code Size 798 bytes
Indexed Transactions 0
External Etherscan · Sourcify

Contract Bytecode

798 bytes
0x608060405234801561001057600080fd5b50600436106100365760003560e01c806305fedae51461003b578063f4b24b5514610050575b600080fd5b61004e6100493660046101b4565b610063565b005b61004e61005e3660046101f1565b6100a6565b806040516100719190610299565b6040519081900381209033907fb6cd938f99beba85b61cc813aa1c12ba1b95f797dfb6ddd567c0f361f3e7757490600090a350565b816040516100b49190610299565b6040518091039020336001600160a01b03167ff28c1e8e1a8c97027796e625e1ed041028c9642e14da6e7ad2c18838a59a2d8c836040516100f591906102b5565b60405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561013257610132610101565b604051601f8501601f19908116603f0116810190828211818310171561015a5761015a610101565b8160405280935085815286868601111561017357600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261019e57600080fd5b6101ad83833560208501610117565b9392505050565b6000602082840312156101c657600080fd5b813567ffffffffffffffff8111156101dd57600080fd5b6101e98482850161018d565b949350505050565b6000806040838503121561020457600080fd5b823567ffffffffffffffff8082111561021c57600080fd5b6102288683870161018d565b9350602085013591508082111561023e57600080fd5b508301601f8101851361025057600080fd5b61025f85823560208401610117565b9150509250929050565b60005b8381101561028457818101518382015260200161026c565b83811115610293576000848401525b50505050565b600082516102ab818460208701610269565b9190910192915050565b60208152600082518060208401526102d4816040850160208701610269565b601f01601f1916919091016040019291505056fea26469706673582212202c501d595f1effc17fc579d5693c18e5666bc696b8725ca0ffac1890494b99b064736f6c634300080a0033

Verified Source Code Partial Match

Compiler: v0.8.10+commit.fc410830 EVM: london Optimization: Yes (200 runs)
DefisaverLogger.sol 29 lines
// SPDX-License-Identifier: MIT

pragma solidity =0.8.10;

contract DefisaverLogger {
    event RecipeEvent(
        address indexed caller,
        string indexed logName
    );

    event ActionDirectEvent(
        address indexed caller,
        string indexed logName,
        bytes data
    );

    function logRecipeEvent(
        string memory _logName
    ) public {
        emit RecipeEvent(msg.sender, _logName);
    }

    function logActionDirectEvent(
        string memory _logName,
        bytes memory _data
    ) public {
        emit ActionDirectEvent(msg.sender, _logName, _data);
    }
}

Write Contract 2 functions

These functions modify contract state and require a wallet transaction to execute.

logActionDirectEvent 0xf4b24b55
string _logName
bytes _data
logRecipeEvent 0x05fedae5
string _logName

Recent Transactions

No transactions found for this address