ETH Price: $2,004.12 (+0.56%)

Contract

0xdfBeF4f3FB6f4c9a3D79D8C3b91c6144Bf9EA5BC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer And Cal...167749042023-03-07 7:20:471117 days ago1678173647IN
Suspicious_Token3136
0 ETH0.0043593221.05488404
Transfer And Cal...164596042023-01-22 3:17:471162 days ago1674357467IN
Suspicious_Token3136
0 ETH0.0033468916.16500449
Transfer164569612023-01-21 18:26:471162 days ago1674325607IN
Suspicious_Token3136
0 ETH0.0006692619.09727616
Transfer And Cal...156049482022-09-24 18:15:231281 days ago1664043323IN
Suspicious_Token3136
0 ETH0.001577377.61848362
Transfer And Cal...155610502022-09-18 14:33:111287 days ago1663511591IN
Suspicious_Token3136
0 ETH0.001197916.30580988
Transfer And Cal...155604282022-09-18 12:27:351287 days ago1663504055IN
Suspicious_Token3136
0 ETH0.001352696.38525415
Burn155602652022-09-18 11:54:111287 days ago1663502051IN
Suspicious_Token3136
0 ETH0.000123413.41995086
Transfer And Cal...151508592022-07-16 1:49:331352 days ago1657936173IN
Suspicious_Token3136
0 ETH0.002425911.71540841
Transfer And Cal...150987432022-07-08 0:41:171360 days ago1657240877IN
Suspicious_Token3136
0 ETH0.0024848412
Transfer150203342022-06-24 21:30:201373 days ago1656106220IN
Suspicious_Token3136
0 ETH0.0011081120.16339984
Transfer150202842022-06-24 21:18:581373 days ago1656105538IN
Suspicious_Token3136
0 ETH0.0011126331.74867507
Transfer And Cal...149126662022-06-06 3:10:431392 days ago1654485043IN
Suspicious_Token3136
0 ETH0.0065811531.78411081
Transfer And Cal...149070862022-06-05 4:33:241393 days ago1654403604IN
Suspicious_Token3136
0 ETH0.0054494426.3184621
Transfer And Cal...148719602022-05-30 10:07:431398 days ago1653905263IN
Suspicious_Token3136
0 ETH0.0061116129.51645459
Transfer148301582022-05-23 14:41:351405 days ago1653316895IN
Suspicious_Token3136
0 ETH0.0008302821.92523682
Transfer And Cal...148030052022-05-19 4:46:011410 days ago1652935561IN
Suspicious_Token3136
0 ETH0.0024559211.59296917
Transfer And Cal...146582262022-04-26 5:00:451433 days ago1650949245IN
Suspicious_Token3136
0 ETH0.0057341827.69360461
Transfer146505312022-04-25 0:02:451434 days ago1650844965IN
Suspicious_Token3136
0 ETH0.0014528526.43037852
Transfer146500112022-04-24 22:04:301434 days ago1650837870IN
Suspicious_Token3136
0 ETH0.001610129.29113644
Transfer145566962022-04-10 7:46:461448 days ago1649576806IN
Suspicious_Token3136
0 ETH0.0020668637.61694035
Transfer And Cal...144925912022-03-31 7:28:221458 days ago1648711702IN
Suspicious_Token3136
0 ETH0.0053182725.68348659
Transfer And Cal...144508982022-03-24 19:34:361465 days ago1648150476IN
Suspicious_Token3136
0 ETH0.0092926148.91620454
Approve144507942022-03-24 19:13:481465 days ago1648149228IN
Suspicious_Token3136
0 ETH0.0039879373.89581547
Transfer And Cal...144503092022-03-24 17:23:261465 days ago1648142606IN
Suspicious_Token3136
0 ETH0.0146164170.58682435
Transfer And Cal...144226532022-03-20 10:13:381469 days ago1647771218IN
Suspicious_Token3136
0 ETH0.0025377113.35932622
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-127063682021-06-26 0:13:451737 days ago1624666425  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
TokenProxy

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-16
*/

// File: contracts/upgradeability/Proxy.sol

pragma solidity 0.7.5;

/**
 * @title Proxy
 * @dev Gives the possibility to delegate any call to a foreign implementation.
 */
abstract contract Proxy {
    /**
     * @dev Tells the address of the implementation where every call will be delegated.
     * @return address of the implementation to which it will be delegated
     */
    function implementation() public view virtual returns (address);

    /**
     * @dev Fallback function allowing to perform a delegatecall to the given implementation.
     * This function will return whatever the implementation call returns
     */
    fallback() external payable {
        // solhint-disable-previous-line no-complex-fallback
        address _impl = implementation();
        require(_impl != address(0));
        assembly {
            /*
                0x40 is the "free memory slot", meaning a pointer to next slot of empty memory. mload(0x40)
                loads the data in the free memory slot, so `ptr` is a pointer to the next slot of empty
                memory. It's needed because we're going to write the return data of delegatecall to the
                free memory slot.
            */
            let ptr := mload(0x40)
            /*
                `calldatacopy` is copy calldatasize bytes from calldata
                First argument is the destination to which data is copied(ptr)
                Second argument specifies the start position of the copied data.
                    Since calldata is sort of its own unique location in memory,
                    0 doesn't refer to 0 in memory or 0 in storage - it just refers to the zeroth byte of calldata.
                    That's always going to be the zeroth byte of the function selector.
                Third argument, calldatasize, specifies how much data will be copied.
                    calldata is naturally calldatasize bytes long (same thing as msg.data.length)
            */
            calldatacopy(ptr, 0, calldatasize())
            /*
                delegatecall params explained:
                gas: the amount of gas to provide for the call. `gas` is an Opcode that gives
                    us the amount of gas still available to execution

                _impl: address of the contract to delegate to

                ptr: to pass copied data

                calldatasize: loads the size of `bytes memory data`, same as msg.data.length

                0, 0: These are for the `out` and `outsize` params. Because the output could be dynamic,
                        these are set to 0, 0 so the output data will not be written to memory. The output
                        data will be read using `returndatasize` and `returdatacopy` instead.

                result: This will be 0 if the call fails and 1 if it succeeds
            */
            let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0)
            /*

            */
            /*
                ptr current points to the value stored at 0x40,
                because we assigned it like ptr := mload(0x40).
                Because we use 0x40 as a free memory pointer,
                we want to make sure that the next time we want to allocate memory,
                we aren't overwriting anything important.
                So, by adding ptr and returndatasize,
                we get a memory location beyond the end of the data we will be copying to ptr.
                We place this in at 0x40, and any reads from 0x40 will now read from free memory
            */
            mstore(0x40, add(ptr, returndatasize()))
            /*
                `returndatacopy` is an Opcode that copies the last return data to a slot. `ptr` is the
                    slot it will copy to, 0 means copy from the beginning of the return data, and size is
                    the amount of data to copy.
                `returndatasize` is an Opcode that gives us the size of the last return data. In this case, that is the size of the data returned from delegatecall
            */
            returndatacopy(ptr, 0, returndatasize())

            /*
                if `result` is 0, revert.
                if `result` is 1, return `size` amount of data from `ptr`. This is the data that was
                copied to `ptr` from the delegatecall return data
            */
            switch result
                case 0 {
                    revert(ptr, returndatasize())
                }
                default {
                    return(ptr, returndatasize())
                }
        }
    }
}

// File: contracts/upgradeable_contracts/modules/factory/TokenProxy.sol

pragma solidity 0.7.5;


interface IPermittableTokenVersion {
    function version() external pure returns (string memory);
}

/**
 * @title TokenProxy
 * @dev Helps to reduces the size of the deployed bytecode for automatically created tokens, by using a proxy contract.
 */
contract TokenProxy is Proxy {
    // storage layout is copied from PermittableToken.sol
    string internal name;
    string internal symbol;
    uint8 internal decimals;
    mapping(address => uint256) internal balances;
    uint256 internal totalSupply;
    mapping(address => mapping(address => uint256)) internal allowed;
    address internal owner;
    bool internal mintingFinished;
    address internal bridgeContractAddr;
    // string public constant version = "1";
    bytes32 internal DOMAIN_SEPARATOR;
    // bytes32 public constant PERMIT_TYPEHASH = 0xea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb;
    mapping(address => uint256) internal nonces;
    mapping(address => mapping(address => uint256)) internal expirations;

    /**
     * @dev Creates a non-upgradeable token proxy for PermitableToken.sol, initializes its eternalStorage.
     * @param _tokenImage address of the token image used for mirroring all functions.
     * @param _name token name.
     * @param _symbol token symbol.
     * @param _decimals token decimals.
     * @param _chainId chain id for current network.
     * @param _owner address of the owner for this contract.
     */
    constructor(
        address _tokenImage,
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _chainId,
        address _owner
    ) {
        string memory version = IPermittableTokenVersion(_tokenImage).version();

        assembly {
            // EIP 1967
            // bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)
            sstore(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc, _tokenImage)
        }
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        owner = _owner; // _owner == HomeOmnibridge/ForeignOmnibridge mediator
        bridgeContractAddr = _owner;
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                keccak256(bytes(_name)),
                keccak256(bytes(version)),
                _chainId,
                address(this)
            )
        );
    }

    /**
     * @dev Retrieves the implementation contract address, mirrored token image.
     * @return impl token image address.
     */
    function implementation() public view override returns (address impl) {
        assembly {
            impl := sload(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc)
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_tokenImage","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"view","type":"function"}]

0x608060405234801561001057600080fd5b5060405161057d38038061057d833981810160405260c081101561003357600080fd5b81516020830180516040519294929383019291908464010000000082111561005a57600080fd5b90830190602082018581111561006f57600080fd5b825164010000000081118282018810171561008957600080fd5b82525081516020918201929091019080838360005b838110156100b657818101518382015260200161009e565b50505050905090810190601f1680156100e35780820380516001836020036101000a031916815260200191505b506040526020018051604051939291908464010000000082111561010657600080fd5b90830190602082018581111561011b57600080fd5b825164010000000081118282018810171561013557600080fd5b82525081516020918201929091019080838360005b8381101561016257818101518382015260200161014a565b50505050905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b50604081815260208301518382015160609485015163054fd4d560e41b8552925191965094509092916001600160a01b038916916354fd4d5091600480820192600092909190829003018186803b1580156101e957600080fd5b505afa1580156101fd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561022657600080fd5b810190808051604051939291908464010000000082111561024657600080fd5b90830190602082018581111561025b57600080fd5b825164010000000081118282018810171561027557600080fd5b82525081516020918201929091019080838360005b838110156102a257818101518382015260200161028a565b50505050905090810190601f1680156102cf5780820380516001836020036101000a031916815260200191505b506040525050507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc88905586519091506103109060009060208901906103e4565b5084516103249060019060208801906103e4565b506002805460ff90951660ff1990951694909417909355600680546001600160a01b039092166001600160a01b03199283168117909155600780549092161790558351602094850120825192850192909220604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8188015280820194909452606084019190915260808301919091523060a0808401919091528151808403909101815260c090920190528051920191909120600855506104859050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261041a5760008555610460565b82601f1061043357805160ff1916838001178555610460565b82800160010185558215610460579182015b82811115610460578251825591602001919060010190610445565b5061046c929150610470565b5090565b5b8082111561046c5760008155600101610471565b60ea806104936000396000f3fe608060405260043610601c5760003560e01c80635c60da1b146061575b60006024608f565b90506001600160a01b038116603857600080fd5b60405136600082376000803683855af43d82016040523d6000833e808015605d573d83f35b3d83fd5b348015606c57600080fd5b506073608f565b604080516001600160a01b039092168252519081900360200190f35b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc549056fea26469706673582212206a38204d0bcf2b568461c05b235d51263dda2d5fe518b4225a28ef7c50fd264964736f6c63430007050033000000000000000000000000f886bfeacc24202967d053075fa9658cf1245e0000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000069c707d975e8d883920003cc357e556a4732cd030000000000000000000000000000000000000000000000000000000000000017457468657265756d20546f6b656e2066726f6d2042534300000000000000000000000000000000000000000000000000000000000000000000000000000000034554480000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610601c5760003560e01c80635c60da1b146061575b60006024608f565b90506001600160a01b038116603857600080fd5b60405136600082376000803683855af43d82016040523d6000833e808015605d573d83f35b3d83fd5b348015606c57600080fd5b506073608f565b604080516001600160a01b039092168252519081900360200190f35b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc549056fea26469706673582212206a38204d0bcf2b568461c05b235d51263dda2d5fe518b4225a28ef7c50fd264964736f6c63430007050033

Deployed Bytecode Sourcemap

5055:2641:0:-:0;;;;;;;;;;;;;;;;;;756:13;772:16;:14;:16::i;:::-;756:32;-1:-1:-1;;;;;;807:19:0;;799:28;;;;;;1265:4;1259:11;2046:14;2043:1;2038:3;2025:36;2983:1;2980;2964:14;2959:3;2952:5;2945;2932:53;3673:16;3668:3;3664:26;3658:4;3651:40;4185:16;4182:1;4177:3;4162:40;4469:6;4493:78;;;;4632:16;4627:3;4620:29;4493:78;4535:16;4530:3;4523:29;7489:204;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;7489:204:0;;;;;;;;;;;;;;;7608:66;7602:73;;7579:107::o

Swarm Source

ipfs://6a38204d0bcf2b568461c05b235d51263dda2d5fe518b4225a28ef7c50fd2649

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.