S Price: $0.605152 (+0.37%)

Contract

0x777DfB70EB952a081d0d11fF828715f79572cFE4

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Token Holdings

Transaction Hash
Method
Block
From
To
Claim All164194422025-03-27 21:02:122 mins ago1743109332IN
0x777DfB70...79572cFE4
0 S0.0240623655.01
Claim All164127002025-03-27 20:19:5344 mins ago1743106793IN
0x777DfB70...79572cFE4
0 S0.0304993555.01
Trigger Root164059152025-03-27 19:39:321 hr ago1743104372IN
0x777DfB70...79572cFE4
0 S0.0031843852.5
Set Root Candida...164044322025-03-27 19:30:351 hr ago1743103835IN
0x777DfB70...79572cFE4
0 S0.0041891550
Set Root Candida...164035182025-03-27 19:24:571 hr ago1743103497IN
0x777DfB70...79572cFE4
0 S0.004498553.66733333
Claim All163958582025-03-27 18:39:172 hrs ago1743100757IN
0x777DfB70...79572cFE4
0 S0.0279502555.01
Claim All163640342025-03-27 15:39:325 hrs ago1743089972IN
0x777DfB70...79572cFE4
0 S0.0275370466
Claim All163599252025-03-27 15:15:515 hrs ago1743088551IN
0x777DfB70...79572cFE4
0 S0.0296676655.01
Claim All163352862025-03-27 12:52:148 hrs ago1743079934IN
0x777DfB70...79572cFE4
0 S0.0130842355.01
Claim All163307922025-03-27 12:26:108 hrs ago1743078370IN
0x777DfB70...79572cFE4
0 S0.0126844855
Claim All163189052025-03-27 11:14:299 hrs ago1743074069IN
0x777DfB70...79572cFE4
0 S0.0172001156.6
Claim All163143482025-03-27 10:46:2710 hrs ago1743072387IN
0x777DfB70...79572cFE4
0 S0.0200736455.01
Claim All163104022025-03-27 10:20:3710 hrs ago1743070837IN
0x777DfB70...79572cFE4
0 S0.0339688256.6
Claim All163043022025-03-27 9:41:0911 hrs ago1743068469IN
0x777DfB70...79572cFE4
0 S0.0194440555.01
Trigger Root162996062025-03-27 9:11:1911 hrs ago1743066679IN
0x777DfB70...79572cFE4
0 S0.0031843852.5
Set Root Candida...162984052025-03-27 9:03:5412 hrs ago1743066234IN
0x777DfB70...79572cFE4
0 S0.0041891550
Set Root Candida...162968982025-03-27 8:54:0312 hrs ago1743065643IN
0x777DfB70...79572cFE4
0 S0.004191150
Claim All162910382025-03-27 8:18:5712 hrs ago1743063537IN
0x777DfB70...79572cFE4
0 S0.0126153456.6
Claim All162770092025-03-27 6:51:4014 hrs ago1743058300IN
0x777DfB70...79572cFE4
0 S0.0096727955.01
Claim All162721272025-03-27 6:22:2814 hrs ago1743056548IN
0x777DfB70...79572cFE4
0 S0.0136107756.6
Claim All162592252025-03-27 5:04:3315 hrs ago1743051873IN
0x777DfB70...79572cFE4
0 S0.072125455
Claim All162541672025-03-27 4:35:2916 hrs ago1743050129IN
0x777DfB70...79572cFE4
0 S0.0086835655
Claim All162455752025-03-27 3:48:1417 hrs ago1743047294IN
0x777DfB70...79572cFE4
0 S0.0385682556.6
Claim All162427692025-03-27 3:30:5517 hrs ago1743046255IN
0x777DfB70...79572cFE4
0 S0.0262653666
Claim All162342302025-03-27 2:37:3218 hrs ago1743043052IN
0x777DfB70...79572cFE4
0 S0.0089434155.01
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
2168402024-12-08 21:10:22108 days ago1733692222  Contract Creation0 S
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SolidlyProxy

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
london EvmVersion, BSL 1.1 license
File 1 of 1 : SolidlyProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;

/**
 * @title Solidly governance killable proxy
 * @author Solidly Labs
 * @notice EIP-1967 upgradeable proxy with the ability to kill governance and render the contract immutable
 */
contract SolidlyProxy {
    bytes32 constant IMPLEMENTATION_SLOT =
        0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; // keccak256('eip1967.proxy.implementation'), actually used for interface so etherscan picks up the interface
    bytes32 constant LOGIC_SLOT =
        0x5942be825425c77e56e4bce97986794ab0f100954e40fc1390ae0e003710a3ab; // keccak256('LOGIC') - 1, actual logic implementation
    bytes32 constant GOVERNANCE_SLOT =
        0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; // keccak256('eip1967.proxy.admin')
    bytes32 constant INITIALIZED_SLOT =
        0x834ce84547018237034401a09067277cdcbe7bbf7d7d30f6b382b0a102b7b4a3; // keccak256('eip1967.proxy.initialized')

    /**
     * @notice Reverts if msg.sender is not governance
     */
    modifier onlyGovernance() {
        require(msg.sender == governanceAddress(), "Only governance");
        _;
    }

    /**
     * @notice Reverts if contract is already initialized
     * @dev Used by implementations to ensure initialize() is only called once
     */
    modifier notInitialized() {
        bool initialized;
        assembly {
            initialized := sload(INITIALIZED_SLOT)
            if eq(initialized, 1) {
                revert(0, 0)
            }
            sstore(INITIALIZED_SLOT, 1)
        }
        _;
    }

    /**
     * @notice Sets up deployer as a proxy governance
     */
    constructor() {
        address _governanceAddress = msg.sender;
        assembly {
            sstore(GOVERNANCE_SLOT, _governanceAddress)
        }
    }

    /**
     * @notice Detect whether or not governance is killed
     * @return Return true if governance is killed, false if not
     * @dev If governance is killed this contract becomes immutable
     */
    function governanceIsKilled() public view returns (bool) {
        return governanceAddress() == address(0);
    }

    /**
     * @notice Kill governance, making this contract immutable
     * @dev Only governance can kil governance
     */
    function killGovernance() external onlyGovernance {
        updateGovernanceAddress(address(0));
    }

    /**
     * @notice Update implementation address
     * @param _interfaceAddress Address of the new interface
     * @dev Only governance can update implementation
     */
    function updateInterfaceAddress(address _interfaceAddress)
        external
        onlyGovernance
    {
        assembly {
            sstore(IMPLEMENTATION_SLOT, _interfaceAddress)
        }
    }

    /**
     * @notice Actually updates interface, kept for etherscan pattern recognition
     * @param _implementationAddress Address of the new implementation
     * @dev Only governance can update implementation
     */
    function updateImplementationAddress(address _implementationAddress)
        external
        onlyGovernance
    {
        assembly {
            sstore(IMPLEMENTATION_SLOT, _implementationAddress)
        }
    }

    /**
     * @notice Update implementation address
     * @param _logicAddress Address of the new implementation
     * @dev Only governance can update implementation
     */
    function updateLogicAddress(address _logicAddress) external onlyGovernance {
        assembly {
            sstore(LOGIC_SLOT, _logicAddress)
        }
    }

    /**
     * @notice Update governance address
     * @param _governanceAddress New governance address
     * @dev Only governance can update governance
     */
    function updateGovernanceAddress(address _governanceAddress)
        public
        onlyGovernance
    {
        assembly {
            sstore(GOVERNANCE_SLOT, _governanceAddress)
        }
    }

    /**
     * @notice Fetch the current implementation address
     * @return _implementationAddress Returns the current implementation address
     */
    function implementationAddress()
        public
        view
        returns (address _implementationAddress)
    {
        assembly {
            _implementationAddress := sload(IMPLEMENTATION_SLOT)
        }
    }

    /**
     * @notice Fetch the current implementation address
     * @return _interfaceAddress Returns the current implementation address
     */
    function interfaceAddress()
        public
        view
        virtual
        returns (address _interfaceAddress)
    {
        assembly {
            _interfaceAddress := sload(IMPLEMENTATION_SLOT)
        }
    }

    /**
     * @notice Fetch the current implementation address
     * @return _logicAddress Returns the current implementation address
     */
    function logicAddress()
        public
        view
        virtual
        returns (address _logicAddress)
    {
        assembly {
            _logicAddress := sload(LOGIC_SLOT)
        }
    }

    /**
     * @notice Fetch current governance address
     * @return _governanceAddress Returns current governance address
     */
    function governanceAddress()
        public
        view
        virtual
        returns (address _governanceAddress)
    {
        assembly {
            _governanceAddress := sload(GOVERNANCE_SLOT)
        }
    }

    /**
     * @notice Fallback function that delegatecalls the subimplementation instead of what's in the IMPLEMENTATION_SLOT
     */
    function _delegateCallSubimplmentation() internal virtual {
        assembly {
            let contractLogic := sload(LOGIC_SLOT)
            calldatacopy(0x0, 0x0, calldatasize())
            let success := delegatecall(
                gas(),
                contractLogic,
                0x0,
                calldatasize(),
                0,
                0
            )
            let returnDataSize := returndatasize()
            returndatacopy(0, 0, returnDataSize)
            switch success
            case 0 {
                revert(0, returnDataSize)
            }
            default {
                return(0, returnDataSize)
            }
        }
    }

    /**
     * @notice Delegatecall fallback proxy
     */
    fallback() external payable virtual {
        _delegateCallSubimplmentation();
    }

    receive() external payable virtual {
        _delegateCallSubimplmentation();
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "bytecodeHash": "none"
  },
  "evmVersion": "london"
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"governanceAddress","outputs":[{"internalType":"address","name":"_governanceAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governanceIsKilled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementationAddress","outputs":[{"internalType":"address","name":"_implementationAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"interfaceAddress","outputs":[{"internalType":"address","name":"_interfaceAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"killGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"logicAddress","outputs":[{"internalType":"address","name":"_logicAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_governanceAddress","type":"address"}],"name":"updateGovernanceAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_implementationAddress","type":"address"}],"name":"updateImplementationAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_interfaceAddress","type":"address"}],"name":"updateInterfaceAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_logicAddress","type":"address"}],"name":"updateLogicAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50337fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035561044f806100436000396000f3fe6080604052600436106100955760003560e01c8063b56fbb9711610059578063b56fbb9714610189578063b90d8930146101a9578063b97a231914610155578063cf6126ed146101c9578063eb5ee83a146101c9576100a4565b8063179781c4146100ac578063654ea5e7146100d6578063795053d3146100eb5780639c1fcc4c14610121578063aa8a675414610155576100a4565b366100a4576100a26101e9565b005b6100a26101e9565b3480156100b857600080fd5b506100c1610232565b60405190151581526020015b60405180910390f35b3480156100e257600080fd5b506100a261025a565b3480156100f757600080fd5b50600080516020610423833981519152545b6040516001600160a01b0390911681526020016100cd565b34801561012d57600080fd5b507f5942be825425c77e56e4bce97986794ab0f100954e40fc1390ae0e003710a3ab54610109565b34801561016157600080fd5b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54610109565b34801561019557600080fd5b506100a26101a43660046103c9565b6102af565b3480156101b557600080fd5b506100a26101c43660046103c9565b610313565b3480156101d557600080fd5b506100a26101e43660046103c9565b610365565b7f5942be825425c77e56e4bce97986794ab0f100954e40fc1390ae0e003710a3ab543660008037600080366000845af490503d806000803e81801561022d57816000f35b816000fd5b60008061024b6000805160206104238339815191525490565b6001600160a01b031614905090565b600080516020610423833981519152546001600160a01b0316336001600160a01b0316146102a35760405162461bcd60e51b815260040161029a906103f9565b60405180910390fd5b6102ad6000610313565b565b600080516020610423833981519152546001600160a01b0316336001600160a01b0316146102ef5760405162461bcd60e51b815260040161029a906103f9565b7f5942be825425c77e56e4bce97986794ab0f100954e40fc1390ae0e003710a3ab55565b600080516020610423833981519152546001600160a01b0316336001600160a01b0316146103535760405162461bcd60e51b815260040161029a906103f9565b60008051602061042383398151915255565b600080516020610423833981519152546001600160a01b0316336001600160a01b0316146103a55760405162461bcd60e51b815260040161029a906103f9565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b6000602082840312156103db57600080fd5b81356001600160a01b03811681146103f257600080fd5b9392505050565b6020808252600f908201526e4f6e6c7920676f7665726e616e636560881b60408201526060019056feb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a164736f6c634300080b000a

Deployed Bytecode

0x6080604052600436106100955760003560e01c8063b56fbb9711610059578063b56fbb9714610189578063b90d8930146101a9578063b97a231914610155578063cf6126ed146101c9578063eb5ee83a146101c9576100a4565b8063179781c4146100ac578063654ea5e7146100d6578063795053d3146100eb5780639c1fcc4c14610121578063aa8a675414610155576100a4565b366100a4576100a26101e9565b005b6100a26101e9565b3480156100b857600080fd5b506100c1610232565b60405190151581526020015b60405180910390f35b3480156100e257600080fd5b506100a261025a565b3480156100f757600080fd5b50600080516020610423833981519152545b6040516001600160a01b0390911681526020016100cd565b34801561012d57600080fd5b507f5942be825425c77e56e4bce97986794ab0f100954e40fc1390ae0e003710a3ab54610109565b34801561016157600080fd5b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54610109565b34801561019557600080fd5b506100a26101a43660046103c9565b6102af565b3480156101b557600080fd5b506100a26101c43660046103c9565b610313565b3480156101d557600080fd5b506100a26101e43660046103c9565b610365565b7f5942be825425c77e56e4bce97986794ab0f100954e40fc1390ae0e003710a3ab543660008037600080366000845af490503d806000803e81801561022d57816000f35b816000fd5b60008061024b6000805160206104238339815191525490565b6001600160a01b031614905090565b600080516020610423833981519152546001600160a01b0316336001600160a01b0316146102a35760405162461bcd60e51b815260040161029a906103f9565b60405180910390fd5b6102ad6000610313565b565b600080516020610423833981519152546001600160a01b0316336001600160a01b0316146102ef5760405162461bcd60e51b815260040161029a906103f9565b7f5942be825425c77e56e4bce97986794ab0f100954e40fc1390ae0e003710a3ab55565b600080516020610423833981519152546001600160a01b0316336001600160a01b0316146103535760405162461bcd60e51b815260040161029a906103f9565b60008051602061042383398151915255565b600080516020610423833981519152546001600160a01b0316336001600160a01b0316146103a55760405162461bcd60e51b815260040161029a906103f9565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b6000602082840312156103db57600080fd5b81356001600160a01b03811681146103f257600080fd5b9392505050565b6020808252600f908201526e4f6e6c7920676f7665726e616e636560881b60408201526060019056feb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a164736f6c634300080b000a

Deployed Bytecode Sourcemap

241:6165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6366:31;:29;:31::i;:::-;241:6165;;6277:31;:29;:31::i;2031:114::-;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;2031:114:0;;;;;;;;2277:102;;;;;;;;;;;;;:::i;5133:215::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;5310:22:0;5133:215;;;-1:-1:-1;;;;;370:32:1;;;352:51;;340:2;325:18;5133:215:0;206:203:1;4799:195:0;;;;;;;;;;-1:-1:-1;4967:10:0;4961:17;4799:195;;4433:216;;;;;;;;;;-1:-1:-1;4613:19:0;4607:26;4433:216;;3384:157;;;;;;;;;;-1:-1:-1;3384:157:0;;;;;:::i;:::-;;:::i;3710:195::-;;;;;;;;;;-1:-1:-1;3710:195:0;;;;;:::i;:::-;;:::i;2561:198::-;;;;;;;;;;-1:-1:-1;2561:198:0;;;;;:::i;:::-;;:::i;5489:677::-;5607:10;5601:17;5654:14;5649:3;5644;5631:38;5853:1;5834;5802:14;5781:3;5750:13;5727:5;5697:171;5682:186;;5903:16;5953:14;5950:1;5947;5932:36;5988:7;6008:64;;;;6121:14;6118:1;6111:25;6008:64;6043:14;6040:1;6033:25;2031:114;2082:4;;2105:19;-1:-1:-1;;;;;;;;;;;5310:22:0;;5133:215;2105:19;-1:-1:-1;;;;;2105:33:0;;2098:40;;2031:114;:::o;2277:102::-;-1:-1:-1;;;;;;;;;;;5310:22:0;-1:-1:-1;;;;;1088:33:0;:10;-1:-1:-1;;;;;1088:33:0;;1080:61;;;;-1:-1:-1;;;1080:61:0;;;;;;;:::i;:::-;;;;;;;;;2337:35:::1;2369:1;2337:23;:35::i;:::-;2277:102::o:0;3384:157::-;-1:-1:-1;;;;;;;;;;;5310:22:0;-1:-1:-1;;;;;1088:33:0;:10;-1:-1:-1;;;;;1088:33:0;;1080:61;;;;-1:-1:-1;;;1080:61:0;;;;;;;:::i;:::-;3499:10:::1;3492:33:::0;3384:157::o;3710:195::-;-1:-1:-1;;;;;;;;;;;5310:22:0;-1:-1:-1;;;;;1088:33:0;:10;-1:-1:-1;;;;;1088:33:0;;1080:61;;;;-1:-1:-1;;;1080:61:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;3846:43:0;3710:195::o;2561:198::-;-1:-1:-1;;;;;;;;;;;5310:22:0;-1:-1:-1;;;;;1088:33:0;:10;-1:-1:-1;;;;;1088:33:0;;1080:61;;;;-1:-1:-1;;;1080:61:0;;;;;;;:::i;:::-;2704:19:::1;2697:46:::0;2561:198::o;414:286:1:-;473:6;526:2;514:9;505:7;501:23;497:32;494:52;;;542:1;539;532:12;494:52;568:23;;-1:-1:-1;;;;;620:31:1;;610:42;;600:70;;666:1;663;656:12;600:70;689:5;414:286;-1:-1:-1;;;414:286:1:o;705:339::-;907:2;889:21;;;946:2;926:18;;;919:30;-1:-1:-1;;;980:2:1;965:18;;958:45;1035:2;1020:18;;705:339::o

Swarm Source

none://164736f6c634300080b000a

Block Transaction Gas Used Reward
view all blocks ##produced##

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
FTM99.92%$0.0028384,200,033,240.0236$11,920,618.34
FTM<0.01%$0.621942671.2843$417.5
FTM<0.01%$0.2100241,299.9054$273.01
FTM<0.01%$0.999903190.4833$190.46
FTM<0.01%$11.2314.3709$161.38
FTM<0.01%$0.567982275.1056$156.26
FTM<0.01%$1.0288.0245$89.96
FTM<0.01%$0.023747919.51$21.84
FTM<0.01%$0.19983948.9424$9.78
FTM<0.01%<$0.000001102,658,695.6502$8.17
FTM<0.01%$2,009.570.00197349$3.97
FTM<0.01%$24.690.1275$3.15
FTM<0.01%$0.007573184.7809$1.4
FTM<0.01%$0.5126172.5573$1.31
FTM<0.01%$0.00001148,523.6119$0.5138
FTM<0.01%$87,0770.00000585$0.5094
FTM<0.01%$0.0980614.6138$0.4524
FTM<0.01%$0.9976740.3882$0.3872
FTM<0.01%$0.00000335,113.4556$0.1025
SONIC0.01%$0.15127111,452.1442$1,732.38
SONIC<0.01%$0.999881392.1067$392.06
SONIC<0.01%$2,007.040.1693$339.82
SONIC<0.01%$0.60739587.982$53.44
SONIC<0.01%$0.61418369.0557$42.41
SONIC<0.01%$0.99976231.944$31.94
SONIC<0.01%$0.052569102.6861$5.4
SONIC<0.01%$0.023586118.0733$2.78
SONIC<0.01%$6.560.1869$1.23
SONIC<0.01%$0.002134299.2226$0.6384
SONIC<0.01%$0.01166849.2012$0.574
SONIC<0.01%$0.602520.525$0.3163
BASE<0.01%$0.999881829.0804$828.98
BASE<0.01%$11.0747.2271$522.8
BASE<0.01%$2,007.040.183$367.3
BASE<0.01%$0.512126249.7273$127.89
BASE<0.01%$1102.9258$102.93
BASE<0.01%$0.0291042,499.3253$72.74
BASE<0.01%$3.1217.4386$54.41
BASE<0.01%$2,197.330.0157$34.39
BASE<0.01%$0.000112290,999.167$32.69
BASE<0.01%<$0.0000011,194,209,699$22.33
BASE<0.01%$1.0818.7356$20.23
BASE<0.01%$0.0034655,030.6611$17.43
BASE<0.01%$0.0010347,324.6182$7.57
BASE<0.01%$0.13223442.5032$5.62
BASE<0.01%$0.7397486.7545$5
BASE<0.01%$2,405.770.00105467$2.54
BASE<0.01%<$0.00000117,106,886.7576$2.12
BASE<0.01%$0.03685345.4724$1.68
BASE<0.01%$0.137378.0523$1.11
BASE<0.01%$0.005774173.6478$1
BASE<0.01%$0.000001740,000$0.925
BASE<0.01%$87,3010.00000594$0.5185
BASE<0.01%$1.570.2718$0.4267
BASE<0.01%$10.205$0.2052
BASE<0.01%<$0.00000175,324,080.8$0.2033
BASE<0.01%<$0.0000012,000,000$0.179
BASE<0.01%$0.00929918$0.1673
BASE<0.01%$0.000213658.2976$0.1404
BASE<0.01%$0.0000110,882.5135$0.1102
BASE<0.01%$0.9985190.1103$0.1101
BASE<0.01%$0.00716715$0.1075
OP<0.01%$0.999925729.8145$729.76
OP<0.01%$0.999925496.8654$496.83
OP<0.01%$0.999862121.9269$121.91
OP<0.01%$2,007.790.0466$93.66
OP<0.01%$2,405.40.0195$46.89
OP<0.01%$87,1520.00042154$36.74
OP<0.01%$0.91210226.802$24.45
OP<0.01%$0.059129211.7307$12.52
OP<0.01%$0.90991110.8914$9.91
OP<0.01%$3.130.0605$0.1894
ARB<0.01%$0.999901404.1091$404.07
ARB<0.01%$87,1810.00417129$363.66
ARB<0.01%$2,007.170.1657$332.63
ARB<0.01%$2.921.779$63.16
ARB<0.01%$0.99986718.9678$18.97
ARB<0.01%$0.38498144.4641$17.12
ARB<0.01%$15.551.0958$17.04
ARB<0.01%$2,404.460.00235702$5.67
ARB<0.01%$3.141.7516$5.5
ARB<0.01%$14.1048$4.1
ARB<0.01%$0.9999013.7076$3.71
ARB<0.01%$0.00862973.159$0.6312
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.