xDAI Price: $1.00 (-0.00%)
Gas: 1 GWei

Contract

0xc791240D1F2dEf5938E2031364Ff4ed887133C3d

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve396238482025-04-18 13:33:554 days ago1744983235IN
Rocket Pool: rETH Token
0 xDAI0.000051511
Approve396233392025-04-18 12:50:504 days ago1744980650IN
Rocket Pool: rETH Token
0 xDAI0.000051511
Transfer And Cal...395091102025-04-11 19:23:3011 days ago1744399410IN
Rocket Pool: rETH Token
0 xDAI0.000343020.97
Transfer And Cal...388607252025-03-04 12:02:4050 days ago1741089760IN
Rocket Pool: rETH Token
0 xDAI0.000350270.97
Approve385699332025-02-15 5:20:4067 days ago1739596840IN
Rocket Pool: rETH Token
0 xDAI00.00001499
Approve383432392025-02-01 18:18:4080 days ago1738433920IN
Rocket Pool: rETH Token
0 xDAI0.000061811.2
Approve383431332025-02-01 18:09:4580 days ago1738433385IN
Rocket Pool: rETH Token
0 xDAI0.000113272.2
Approve381794442025-01-23 1:23:2090 days ago1737595400IN
Rocket Pool: rETH Token
0 xDAI0.000082381.6
Transfer And Cal...380771442025-01-16 22:11:2596 days ago1737065485IN
Rocket Pool: rETH Token
0 xDAI0.000418561.2
Approve379706552025-01-10 12:36:25102 days ago1736512585IN
Rocket Pool: rETH Token
0 xDAI0.00004990.97
Transfer And Cal...372975182024-12-01 4:47:30143 days ago1733028450IN
Rocket Pool: rETH Token
0 xDAI0.00051451.455
Transfer And Cal...371970112024-11-25 4:16:10149 days ago1732508170IN
Rocket Pool: rETH Token
0 xDAI0.000648561.9
Transfer And Cal...371956442024-11-25 2:18:15149 days ago1732501095IN
Rocket Pool: rETH Token
0 xDAI0.000580291.7
Transfer And Cal...371949772024-11-25 1:20:40149 days ago1732497640IN
Rocket Pool: rETH Token
0 xDAI0.000788582.2
Approve371799682024-11-24 3:47:10150 days ago1732420030IN
Rocket Pool: rETH Token
0 xDAI0.000070541.9
Transfer And Cal...371445242024-11-22 0:55:15152 days ago1732236915IN
Rocket Pool: rETH Token
0 xDAI0.000833582.3571
Approve371150852024-11-20 6:35:40154 days ago1732084540IN
Rocket Pool: rETH Token
0 xDAI0.000083542.25
Transfer And Cal...368067842024-11-01 20:33:05172 days ago1730493185IN
Rocket Pool: rETH Token
0 xDAI0.000609361.7
Approve368009662024-11-01 12:12:40173 days ago1730463160IN
Rocket Pool: rETH Token
0 xDAI0.000086761.6
Approve367904012024-10-31 21:01:15173 days ago1730408475IN
Rocket Pool: rETH Token
0 xDAI0.000087591.7
Approve365725692024-10-18 20:08:35186 days ago1729282115IN
Rocket Pool: rETH Token
0 xDAI0.00005851.7
Approve363536302024-10-05 18:00:15199 days ago1728151215IN
Rocket Pool: rETH Token
0 xDAI0.000075921.4
Approve363096362024-10-03 3:06:45202 days ago1727924805IN
Rocket Pool: rETH Token
0 xDAI0.000133742.46632595
Approve363092972024-10-03 2:37:35202 days ago1727923055IN
Rocket Pool: rETH Token
0 xDAI0.000133742.46632595
Approve362986192024-10-02 11:26:25203 days ago1727868385IN
Rocket Pool: rETH Token
0 xDAI0.000077972.1
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
342084372024-05-30 11:51:20328 days ago1717069880  Contract Creation0 xDAI
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xcE11e142...570f79d9f
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, None license
/**
 *Submitted for verification at gnosisscan.io on 2023-10-09
*/

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())
                }
        }
    }
}

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)
        }
    }

    /**
     * @dev Tells the current version of the token proxy interfaces.
     */
    function getTokenProxyInterfacesVersion()
        external
        pure
        returns (
            uint64 major,
            uint64 minor,
            uint64 patch
        )
    {
        return (1, 0, 0);
    }
}

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":"getTokenProxyInterfacesVersion","outputs":[{"internalType":"uint64","name":"major","type":"uint64"},{"internalType":"uint64","name":"minor","type":"uint64"},{"internalType":"uint64","name":"patch","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x6080604052600436106100295760003560e01c80632f95b6aa146100725780635c60da1b146100b3575b60006100336100e4565b90506001600160a01b03811661004857600080fd5b60405136600082376000803683855af43d82016040523d6000833e80801561006e573d83f35b3d83fd5b34801561007e57600080fd5b50610087610109565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b3480156100bf57600080fd5b506100c86100e4565b604080516001600160a01b039092168252519081900360200190f35b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600080919256fea2646970667358221220761ef26fb8e839077bbb8f08b17faa303ce8554e0cae0cd68d7b12e86124d94964736f6c63430007050033

Deployed Bytecode Sourcemap

4905:2961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;709:13;725:16;:14;:16::i;:::-;709:32;-1:-1:-1;;;;;;760:19:0;;752:28;;;;;;1218:4;1212:11;1999:14;1996:1;1991:3;1978:36;2936:1;2933;2917:14;2912:3;2905:5;2898;2885:53;3626:16;3621:3;3617:26;3611:4;3604:40;4138:16;4135:1;4130:3;4115:40;4422:6;4446:78;;;;4585:16;4580:3;4573:29;4446:78;4488:16;4483:3;4476:29;7639:224;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7339:204;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;7339:204:0;;;;;;;;;;;;;;;7458:66;7452:73;;7429:107::o;7639:224::-;7847:1;7745:12;;7639:224;;:::o

Swarm Source

ipfs://761ef26fb8e839077bbb8f08b17faa303ce8554e0cae0cd68d7b12e86124d949

Block Transaction Gas Used Reward
view all blocks validated

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

OVERVIEW

Rocket Pool is a decentralised Ethereum Proof of Stake pool.

Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block 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.