S Price: $0.746708 (+2.89%)
    /

    Contract

    0x8BCAA5DCdBD28Ee906F95aD7Da0E43F8a64B6cc8

    Overview

    S Balance

    Sonic LogoSonic LogoSonic Logo0 S

    S Value

    $0.00

    Multichain Info

    No addresses found
    Transaction Hash
    Method
    Block
    Age
    From
    To
    Transfer56363532025-01-28 0:48:1633 days ago1738025296IN
    0x8BCAA5DC...8a64B6cc8
    0 S0.0029723655
    Approve56363062025-01-28 0:47:1633 days ago1738025236IN
    0x8BCAA5DC...8a64B6cc8
    0 S0.0025485955
    Approve52299312025-01-24 7:19:2137 days ago1737703161IN
    0x8BCAA5DC...8a64B6cc8
    0 S0.0043857150
    Approve52297462025-01-24 7:17:1837 days ago1737703038IN
    0x8BCAA5DC...8a64B6cc8
    0 S0.002316950
    Approve52297402025-01-24 7:17:1537 days ago1737703035IN
    0x8BCAA5DC...8a64B6cc8
    0 S0.0069507150
    Approve52295712025-01-24 7:15:0237 days ago1737702902IN
    0x8BCAA5DC...8a64B6cc8
    0 S0.0147372200
    Approve52295712025-01-24 7:15:0237 days ago1737702902IN
    0x8BCAA5DC...8a64B6cc8
    0 S0.018343200

    Latest 1 internal transaction

    Parent Transaction Hash Block Age From To Amount
    52295672025-01-24 7:15:0137 days ago1737702901
     Contract Creation
    0 S
    Loading...
    Loading

    Similar Match Source Code
    This contract matches the deployed Bytecode of the Source Code for Contract 0xd3A80e7E...d36a80f94
    The constructor portion of the code might be different and could alter the actual behaviour of the contract

    Contract Name:
    FERC20

    Compiler Version
    v0.8.20+commit.a1b79de6

    Optimization Enabled:
    Yes with 200 runs

    Other Settings:
    paris EvmVersion
    File 1 of 4 : FERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.20;
    import "@openzeppelin/contracts/access/Ownable.sol";
    import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
    contract FERC20 is Context, IERC20, Ownable {
    uint8 private constant _decimals = 18;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint256 public maxTx;
    uint256 private _maxTxAmount;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private isExcludedFromMaxTx;
    event MaxTxUpdated(uint256 _maxTx);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 4 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
    pragma solidity ^0.8.20;
    import {Context} from "../utils/Context.sol";
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * The initial owner is set to the address provided by the deployer. This can
    * later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    */
    abstract contract Ownable is Context {
    address private _owner;
    /**
    * @dev The caller account is not authorized to perform an operation.
    */
    error OwnableUnauthorizedAccount(address account);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 4 : IERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC20 standard as defined in the EIP.
    */
    interface IERC20 {
    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
    * another (`to`).
    *
    * Note that `value` may be zero.
    */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
    * @dev Emitted when the allowance of a `spender` for an `owner` is set by
    * a call to {approve}. `value` is the new allowance.
    */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    /**
    * @dev Returns the value of tokens in existence.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 4 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
    return msg.sender;
    }
    function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
    }
    function _contextSuffixLength() internal view virtual returns (uint256) {
    return 0;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    {
    "remappings": [
    "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/openzeppelin-contracts-upgradeable/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "v2-core/=lib/v2-core/contracts/",
    "v2-periphery/=lib/v2-periphery/contracts/"
    ],
    "optimizer": {
    "enabled": true,
    "runs": 200
    },
    "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
    },
    "outputSelection": {
    "*": {
    "*": [
    "evm.bytecode",
    "evm.deployedBytecode",
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    [{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"MaxTxExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ZeroAddressUnallowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"updateMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"}]

    Deployed Bytecode

    0x608060405234801561001057600080fd5b50600436106101005760003560e01c806379cc679011610097578063c2d0ffca11610066578063c2d0ffca146101ff578063db4cf1e014610212578063dd62ed3e14610225578063f2fde38b1461025e57600080fd5b806379cc6790146101b65780638da5cb5b146101c957806395d89b41146101e4578063a9059cbb146101ec57600080fd5b8063313ce567116100d3578063313ce5671461016b57806370a082311461017a578063715018a6146101a35780637437681e146101ad57600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610271565b60405161011a91906107a9565b60405180910390f35b610136610131366004610813565b610303565b604051901515815260200161011a565b6001545b60405190815260200161011a565b61013661016636600461083d565b61031a565b6040516012815260200161011a565b61014a610188366004610879565b6001600160a01b031660009081526006602052604090205490565b6101ab61036c565b005b61014a60045481565b6101ab6101c4366004610813565b610380565b6000546040516001600160a01b03909116815260200161011a565b61010d61042d565b6101366101fa366004610813565b61043c565b6101ab61020d36600461089b565b610449565b6101ab610220366004610879565b61045d565b61014a6102333660046108b4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6101ab61026c366004610879565b6104b0565b606060028054610280906108e7565b80601f01602080910402602001604051908101604052809291908181526020018280546102ac906108e7565b80156102f95780601f106102ce576101008083540402835291602001916102f9565b820191906000526020600020905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b60006103103384846104f0565b5060015b92915050565b600061032784848461058d565b6001600160a01b03841660009081526007602090815260408083203380855292529091205461036291869161035d908690610937565b6104f0565b5060019392505050565b6103746106d4565b61037e6000610701565b565b6103886106d4565b6001600160a01b0382166103af576040516310f73e1360e21b815260040160405180910390fd5b6001600160a01b0382166000908152600660205260409020546103d3908290610937565b6001600160a01b0383166000818152600660205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906104219085815260200190565b60405180910390a35050565b606060038054610280906108e7565b600061031033848461058d565b6104516106d4565b61045a81610751565b50565b6104656106d4565b6001600160a01b03811661048c576040516310f73e1360e21b815260040160405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6104b86106d4565b6001600160a01b0381166104e757604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61045a81610701565b6001600160a01b038316158061050d57506001600160a01b038216155b1561052b576040516310f73e1360e21b815260040160405180910390fd5b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831615806105aa57506001600160a01b038216155b156105c8576040516310f73e1360e21b815260040160405180910390fd5b806000036105e95760405163162908e360e11b815260040160405180910390fd5b6001600160a01b03831660009081526008602052604090205460ff1661062c5760055481111561062c5760405163136c002360e21b815260040160405180910390fd5b6001600160a01b038316600090815260066020526040902054610650908290610937565b6001600160a01b03808516600090815260066020526040808220939093559084168152205461068090829061094a565b6001600160a01b0380841660008181526006602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906105809085815260200190565b6000546001600160a01b0316331461037e5760405163118cdaa760e01b81523360048201526024016104de565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004819055600154606490610766908361095d565b6107709190610974565b6005556040518181527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a9060200160405180910390a150565b600060208083528351808285015260005b818110156107d6578581018301518582016040015282016107ba565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461080e57600080fd5b919050565b6000806040838503121561082657600080fd5b61082f836107f7565b946020939093013593505050565b60008060006060848603121561085257600080fd5b61085b846107f7565b9250610869602085016107f7565b9150604084013590509250925092565b60006020828403121561088b57600080fd5b610894826107f7565b9392505050565b6000602082840312156108ad57600080fd5b5035919050565b600080604083850312156108c757600080fd5b6108d0836107f7565b91506108de602084016107f7565b90509250929050565b600181811c908216806108fb57607f821691505b60208210810361091b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561031457610314610921565b8082018082111561031457610314610921565b808202811582820484141761031457610314610921565b60008261099157634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212202e89e326a41bd8c1ba3bae81a21b5d5df87dfedf137ad65ff5f47b8bf687430b64736f6c63430008140033

    Block Age Transaction Gas Used Reward
    view all blocks produced

    Block Age Uncle Number Difficulty Gas Used Reward
    View All Uncles
    Loading...
    Loading
    Loading...
    Loading

    Validator Index Block Age Amount
    View All Withdrawals

    Transaction Hash Block Age Value Eth2 PubKey Valid
    View All Deposits
    [ Download: CSV Export  ]
    [ Download: CSV Export  ]

    A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.