Sophon Testnet

Contract

0xD773Cb9ad40DbD678590dc9d575DeDcD01160c89

Overview

SOPH Balance

Sophon Sepolia  LogoSophon Sepolia  LogoSophon Sepolia  Logo0 SOPH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Create Counter7397502025-03-17 13:50:1918 days ago1742219419IN0 SOPH0.232988821,861.39399933

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
7397502025-03-17 13:50:1918 days ago1742219419
0xD773Cb9a...D01160c89
0 SOPH
7397502025-03-17 13:50:1918 days ago1742219419
0xD773Cb9a...D01160c89
0 SOPH
7397502025-03-17 13:50:1918 days ago1742219419
0xD773Cb9a...D01160c89
 Contract Creation0 SOPH
7397502025-03-17 13:50:1918 days ago1742219419
0xD773Cb9a...D01160c89
0 SOPH
7397502025-03-17 13:50:1918 days ago1742219419
0xD773Cb9a...D01160c89
0 SOPH
7397062025-03-17 13:42:5018 days ago1742218970  Contract Creation0 SOPH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CounterFactory

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.11

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 2 : CounterFactory.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import "./Counter.sol";

contract CounterFactory {
    event CounterCreated(address counterAddress, bytes32 salt);
    
    // Maps salt to deployed counter address
    mapping(bytes32 => address) public counters;
    
    // Create a new Counter with the provided salt
    function createCounter(bytes32 salt) external returns (address) {
        Counter counter = new Counter{salt: salt}();
        address counterAddress = address(counter);
        
        counters[salt] = counterAddress;
        emit CounterCreated(counterAddress, salt);
        
        return counterAddress;
    }
    
    // Get the address of a counter for a given salt
    function getCounterAddress(bytes32 salt) public view returns (address) {
        return counters[salt];
    }
    
    // Predict the address of a counter for a given salt
    function predictCounterAddress(bytes32 salt) public view returns (address) {
        bytes memory bytecode = type(Counter).creationCode;
        return address(uint160(uint(keccak256(abi.encodePacked(
            bytes1(0xff),
            address(this),
            salt,
            keccak256(bytecode)
        )))));
    }
}

File 2 of 2 : Counter.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

contract Counter {
    uint256 public number;

    function setNumber(uint256 newNumber) public {
        number = newNumber;
    }

    function increment() public {
        number++;
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

API
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"counterAddress","type":"address"},{"indexed":false,"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"CounterCreated","type":"event"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"counters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"createCounter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"getCounterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"predictCounterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000059eba76b41bfe393b428e47c013cf19cfebe3d0675fd32fa168e2e39fc00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000200000000000200010000000103550000006003100270000000420030019d0000008004000039000000400040043f0000000100200190000000420000c13d0000004202300197000000040020008c000000af0000413d000000000301043b000000e003300270000000440030009c0000004a0000213d000000470030009c0000004e0000613d000000480030009c000000af0000c13d000000240020008c000000af0000413d0000000001000416000000000001004b000000af0000c13d0000014001000039000000400010043f0000008401000039000000800010043f0000004101000041000000c40010043f0000000001000414000000420010009c0000004201008041000000c00110021000000051011001c7000080100200003900fe00f90000040f0000000100200190000000af0000613d000000000301043b000000400200043d000000200120003900000052040000410000000000410435000000000400041000000060044002100000002105200039000000000045043500000004040000390000000104400367000000000404043b000000550520003900000000003504350000003503200039000000000043043500000055030000390000000000320435000000530020009c000000d20000413d0000005401000041000000000010043f0000004101000039000000040010043f000000550100004100000100000104300000000001000416000000000001004b000000af0000c13d0000002001000039000001000010044300000120000004430000004301000041000000ff0001042e000000450030009c0000005f0000613d000000460030009c000000af0000c13d000000240020008c000000af0000413d0000000002000416000000000002004b000000af0000c13d0000000401100370000000000101043b000000000010043f000000200000043f0000004002000039000000000100001900fe00df0000040f000000000101041a0000004c01100197000000800010043f0000005601000041000000ff0001042e000000240020008c000000af0000413d0000000002000416000000000002004b000000af0000c13d0000000401100370000000000301043b0000004101000041000000a40010043f00000000010004140000004902000041000000800020043f000200000003001d000000840030043f0000006002000039000000c40020043f000000e40000043f000000420010009c0000004201008041000000c0011002100000004a011001c7000080060200003900fe00f40000040f0000000100200190000000b10000613d000000020400002900000000020000310000000103200367000000000101043b000000000001004b0000000002000019000000b40000613d000100000001001d000000000040043f000000200000043f0000000001000414000000420010009c0000004201008041000000c0011002100000004b011001c7000080100200003900fe00f90000040f0000000100200190000000af0000613d00000001020000290000004c03200197000000000101043b000000000201041a0000004d02200197000000000232019f000000000021041b000000400100043d000000200210003900000002040000290000000000420435000200000003001d0000000000310435000000420010009c000000420100804100000040011002100000000002000414000000420020009c0000004202008041000000c002200210000000000112019f0000004b011001c70000800d0200003900000001030000390000004e0400004100fe00f40000040f0000000100200190000000af0000613d000000400100043d00000002020000290000000000210435000000420010009c000000420100804100000040011002100000004f011001c7000000ff0001042e0000000001000019000001000001043000000060021002700000004202200197000000000301034f0000001f0520018f0000005006200198000000400100043d0000000004610019000000bf0000613d000000000703034f0000000008010019000000007907043c0000000008980436000000000048004b000000bb0000c13d000000000005004b000000cc0000613d000000000363034f0000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000006002200210000000420010009c00000042010080410000004001100210000000000121019f00000100000104300000008003200039000200000003001d000000400030043f000000000202043300fe00df0000040f0000004c0110019700000002020000290000000000120435000000420020009c000000420200804100000040012002100000004f011001c7000000ff0001042e000000420010009c00000042010080410000004001100210000000420020009c00000042020080410000006002200210000000000112019f0000000002000414000000420020009c0000004202008041000000c002200210000000000112019f00000057011001c7000080100200003900fe00f90000040f0000000100200190000000f20000613d000000000101043b000000000001042d00000000010000190000010000010430000000f7002104210000000102000039000000000001042d0000000002000019000000000001042d000000fc002104230000000102000039000000000001042d0000000002000019000000000001042d000000fe00000432000000ff0001042e000001000001043000000000000000000000000000000000000000000000000001000019c9b491f3fd749a92fc4a9fc48b41da23136121a1f3e301e16ddaf60400000000000000000000000000000000000000000000000000000000ffffffff000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000a3893dea00000000000000000000000000000000000000000000000000000000b16c86d400000000000000000000000000000000000000000000000000000000a3893deb000000000000000000000000000000000000000000000000000000003c882a6b00000000000000000000000000000000000000000000000000000000785a73533cda33511d41a8a5431b1770c5bc0ddd62e1cd30555d16659b89c0d60f4f9f5702000000000000000000000000000000000000840000008000000000000000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000f668b7c3ab3227f1bff325b7bd2bc3efba1bc5bebbaaecb02198994b530f9d16000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe00200000000000000000000000000000000000084000000a00000000000000000ff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff804e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000200000008000000000000000000200000000000000000000000000000000000000000000000000000000000000988511aa21cce77ef57de23c85ca388aacb11937b93cd82e5b7355c901fabc11

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