Sophon Testnet

Contract

0x5ea4C1df68Fd54EA9242bC6C405E7699EBbcb5F1

Overview

SOPH Balance

Sophon Sepolia  LogoSophon Sepolia  LogoSophon Sepolia  Logo0 SOPH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
3933192025-01-17 11:31:2378 days ago1737113483
0x5ea4C1df...9EBbcb5F1
0 SOPH
3933192025-01-17 11:31:2378 days ago1737113483
0x5ea4C1df...9EBbcb5F1
0 SOPH
3933142025-01-17 11:31:1478 days ago1737113474
0x5ea4C1df...9EBbcb5F1
0 SOPH
3933142025-01-17 11:31:1478 days ago1737113474
0x5ea4C1df...9EBbcb5F1
0 SOPH
3933042025-01-17 11:30:3778 days ago1737113437
0x5ea4C1df...9EBbcb5F1
0 SOPH
3933042025-01-17 11:30:3778 days ago1737113437
0x5ea4C1df...9EBbcb5F1
0 SOPH
3932992025-01-17 11:30:2978 days ago1737113429
0x5ea4C1df...9EBbcb5F1
0 SOPH
3932992025-01-17 11:30:2978 days ago1737113429
0x5ea4C1df...9EBbcb5F1
0 SOPH
3931982025-01-17 11:08:5378 days ago1737112133
0x5ea4C1df...9EBbcb5F1
0 SOPH
3931982025-01-17 11:08:5378 days ago1737112133
0x5ea4C1df...9EBbcb5F1
0 SOPH
3931942025-01-17 11:08:4578 days ago1737112125
0x5ea4C1df...9EBbcb5F1
0 SOPH
3931942025-01-17 11:08:4578 days ago1737112125
0x5ea4C1df...9EBbcb5F1
0 SOPH
2759102024-12-28 11:02:1998 days ago1735383739
0x5ea4C1df...9EBbcb5F1
0 SOPH
2759102024-12-28 11:02:1998 days ago1735383739
0x5ea4C1df...9EBbcb5F1
0 SOPH
2759072024-12-28 11:02:1698 days ago1735383736
0x5ea4C1df...9EBbcb5F1
0 SOPH
2759072024-12-28 11:02:1698 days ago1735383736
0x5ea4C1df...9EBbcb5F1
0 SOPH
1576122024-12-11 17:23:44114 days ago1733937824
0x5ea4C1df...9EBbcb5F1
0 SOPH
1576122024-12-11 17:23:44114 days ago1733937824
0x5ea4C1df...9EBbcb5F1
0 SOPH
1576092024-12-11 17:23:41114 days ago1733937821
0x5ea4C1df...9EBbcb5F1
0 SOPH
1576092024-12-11 17:23:41114 days ago1733937821
0x5ea4C1df...9EBbcb5F1
0 SOPH
1576052024-12-11 17:23:28114 days ago1733937808
0x5ea4C1df...9EBbcb5F1
0 SOPH
1576052024-12-11 17:23:28114 days ago1733937808
0x5ea4C1df...9EBbcb5F1
0 SOPH
1576022024-12-11 17:23:24114 days ago1733937804
0x5ea4C1df...9EBbcb5F1
0 SOPH
1576022024-12-11 17:23:24114 days ago1733937804
0x5ea4C1df...9EBbcb5F1
0 SOPH
1575962024-12-11 17:22:24114 days ago1733937744
0x5ea4C1df...9EBbcb5F1
0 SOPH
View All Internal Transactions
Loading...
Loading

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

Contract Name:
TimestampAsserter

Compiler Version
v0.8.24-1.0.1

ZkSolc Version
v1.5.0

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 2 : TimestampAsserter.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

import {ITimestampAsserter} from "./ITimestampAsserter.sol";

error TimestampOutOfRange(uint256 currentTimestamp, uint256 start, uint256 end);

/// @title TimestampAsserter
/// @author Matter Labs
/// @custom:security-contact [email protected]
/// @dev A contract that verifies if the current block timestamp falls within a specified range.
/// This is useful for custom account abstraction where time-bound checks are needed but accessing block.timestamp
/// directly is not possible.
contract TimestampAsserter is ITimestampAsserter {
    function assertTimestampInRange(uint256 _start, uint256 _end) external view {
        if (block.timestamp < _start || block.timestamp > _end) {
            revert TimestampOutOfRange(block.timestamp, _start, _end);
        }
    }
}

File 2 of 2 : ITimestampAsserter.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

interface ITimestampAsserter {
    function assertTimestampInRange(uint256 start, uint256 end) external view;
}

Settings
{
  "viaIR": false,
  "remappings": [
    "@openzeppelin/contracts-v4/=lib/openzeppelin-contracts-v4/contracts/",
    "@openzeppelin/contracts-upgradeable-v4/=lib/openzeppelin-contracts-upgradeable-v4/contracts/",
    "ds-test/=lib/openzeppelin-contracts-upgradeable-v4/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts-upgradeable-v4/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts-upgradeable-v4/=lib/openzeppelin-contracts-upgradeable-v4/",
    "openzeppelin-contracts-v4/=lib/openzeppelin-contracts-v4/"
  ],
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "optimizer": {
    "enabled": true,
    "mode": "3",
    "fallback_to_optimizing_for_size": false,
    "disable_system_request_memoization": true
  },
  "metadata": {},
  "libraries": {},
  "detectMissingLibraries": false,
  "enableEraVMExtensions": false,
  "forceEVMLA": false
}

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"currentTimestamp","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"TimestampOutOfRange","type":"error"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"assertTimestampInRange","outputs":[],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x00020000000000020000008003000039000000400030043f00000000030100190000006003300270000000130330019700000001022001900000002d0000c13d000000040230008c000000350000413d000000000201043b0000001502200197000000160220009c000000350000c13d000000440230008c000000350000413d0000000002000416000000000202004b000000350000c13d0000002402100370000000000202043b000200000002001d0000000401100370000000000101043b000100000001001d000000170100004100000000001004390000000001000414000000130210009c0000001301008041000000c00110021000000018011001c70000800b02000039004500400000040f0000000102200190000000370000613d000000000101043b0000000104000029000000000241004b0000000203000029000000380000413d000000000231004b000000380000213d0000000001000019000000460001042e0000000001000416000000000101004b000000350000c13d0000002001000039000001000010044300000120000004430000001401000041000000460001042e00000000010000190000004700010430000000000001042f0000001902000041000000800020043f000000840010043f000000a40040043f000000c40030043f0000001a010000410000004700010430000000000001042f00000043002104230000000102000039000000000001042d0000000002000019000000000001042d0000004500000432000000460001042e0000004700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000040000001000000000000000000ffffffff000000000000000000000000000000000000000000000000000000005b1a0c9100000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000003d5740d9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000000000000000000000000096f9ad7c6d2293856d1b4fc8ed291f00532cf8d504e9c7b937c36e23b14a1a38

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
Loading...
Loading
Loading...
Loading
[ 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.