S Price: $0.555276 (+4.02%)

Contract

0x171Ee0881407d4c0C11eA1a2FB7D5b4cdED71e6e

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer With Re...65238022025-02-04 10:56:0110 days ago1738666561IN
0x171Ee088...cdED71e6e
2.442 S0.0017775455
Transfer With Re...65194532025-02-04 9:58:2410 days ago1738663104IN
0x171Ee088...cdED71e6e
2.489 S0.0017775455
Transfer With Re...56825362025-01-28 14:12:4217 days ago1738073562IN
0x171Ee088...cdED71e6e
0.2188 S0.0032969755
Transfer With Re...55684562025-01-27 11:26:4718 days ago1737977207IN
0x171Ee088...cdED71e6e
2.227 S0.0017775455

Latest 5 internal transactions

Parent Transaction Hash Block From To
65238022025-02-04 10:56:0110 days ago1738666561
0x171Ee088...cdED71e6e
2.442 S
65194532025-02-04 9:58:2410 days ago1738663104
0x171Ee088...cdED71e6e
2.489 S
56825362025-01-28 14:12:4217 days ago1738073562
0x171Ee088...cdED71e6e
0.2188 S
55684562025-01-27 11:26:4718 days ago1737977207
0x171Ee088...cdED71e6e
2.227 S
39740832025-01-15 9:24:3530 days ago1736933075  Contract Creation0 S
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
EthereumProxy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : EthereumProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title EthereumProxy
 * @notice This contract performs an Ethereum transfer and stores a reference
 */
contract EthereumProxy {
  // Event to declare a transfer with a reference
  event TransferWithReference(address to, uint256 amount, bytes indexed paymentReference);

  // Fallback function returns funds to the sender
  receive() external payable {
    revert('not payable receive');
  }

  /**
   * @notice Performs an Ethereum transfer with a reference
   * @param _to Transfer recipient
   * @param _paymentReference Reference of the payment related
   */
  function transferWithReference(address payable _to, bytes calldata _paymentReference)
    external
    payable
  {
    (bool success, ) = _to.call{value: msg.value}('');
    require(success, 'Could not pay the recipient');
    emit TransferWithReference(_to, msg.value, _paymentReference);
  }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"bytes","name":"paymentReference","type":"bytes"}],"name":"TransferWithReference","type":"event"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"bytes","name":"_paymentReference","type":"bytes"}],"name":"transferWithReference","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50610506806100206000396000f3fe6080604052600436106100225760003560e01c8063eb7d8df31461006757610062565b36610062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610059906101e3565b60405180910390fd5b600080fd5b610081600480360381019061007c91906102d0565b610083565b005b60008373ffffffffffffffffffffffffffffffffffffffff16346040516100a990610361565b60006040518083038185875af1925050503d80600081146100e6576040519150601f19603f3d011682016040523d82523d6000602084013e6100eb565b606091505b505090508061012f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610126906103c2565b60405180910390fd5b828260405161013f929190610416565b60405180910390207ff20789bd5e67749fbe748d26a9ffacd11036adee6a64a8dbc70cc37a98b4e54285346040516101789291906104a7565b60405180910390a250505050565b600082825260208201905092915050565b7f6e6f742070617961626c65207265636569766500000000000000000000000000600082015250565b60006101cd601383610186565b91506101d882610197565b602082019050919050565b600060208201905081810360008301526101fc816101c0565b9050919050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102388261020d565b9050919050565b6102488161022d565b811461025357600080fd5b50565b6000813590506102658161023f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126102905761028f61026b565b5b8235905067ffffffffffffffff8111156102ad576102ac610270565b5b6020830191508360018202830111156102c9576102c8610275565b5b9250929050565b6000806000604084860312156102e9576102e8610203565b5b60006102f786828701610256565b935050602084013567ffffffffffffffff81111561031857610317610208565b5b6103248682870161027a565b92509250509250925092565b600081905092915050565b50565b600061034b600083610330565b91506103568261033b565b600082019050919050565b600061036c8261033e565b9150819050919050565b7f436f756c64206e6f74207061792074686520726563697069656e740000000000600082015250565b60006103ac601b83610186565b91506103b782610376565b602082019050919050565b600060208201905081810360008301526103db8161039f565b9050919050565b82818337600083830152505050565b60006103fd8385610330565b935061040a8385846103e2565b82840190509392505050565b60006104238284866103f1565b91508190509392505050565b6000819050919050565b600061045461044f61044a8461020d565b61042f565b61020d565b9050919050565b600061046682610439565b9050919050565b60006104788261045b565b9050919050565b6104888161046d565b82525050565b6000819050919050565b6104a18161048e565b82525050565b60006040820190506104bc600083018561047f565b6104c96020830184610498565b939250505056fea264697066735822122069babd0c358c5e5f58cb1c6b01fec7a1e2329e0d467ab12fd4a96030bf50b8b664736f6c63430008090033

Deployed Bytecode

0x6080604052600436106100225760003560e01c8063eb7d8df31461006757610062565b36610062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610059906101e3565b60405180910390fd5b600080fd5b610081600480360381019061007c91906102d0565b610083565b005b60008373ffffffffffffffffffffffffffffffffffffffff16346040516100a990610361565b60006040518083038185875af1925050503d80600081146100e6576040519150601f19603f3d011682016040523d82523d6000602084013e6100eb565b606091505b505090508061012f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610126906103c2565b60405180910390fd5b828260405161013f929190610416565b60405180910390207ff20789bd5e67749fbe748d26a9ffacd11036adee6a64a8dbc70cc37a98b4e54285346040516101789291906104a7565b60405180910390a250505050565b600082825260208201905092915050565b7f6e6f742070617961626c65207265636569766500000000000000000000000000600082015250565b60006101cd601383610186565b91506101d882610197565b602082019050919050565b600060208201905081810360008301526101fc816101c0565b9050919050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102388261020d565b9050919050565b6102488161022d565b811461025357600080fd5b50565b6000813590506102658161023f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126102905761028f61026b565b5b8235905067ffffffffffffffff8111156102ad576102ac610270565b5b6020830191508360018202830111156102c9576102c8610275565b5b9250929050565b6000806000604084860312156102e9576102e8610203565b5b60006102f786828701610256565b935050602084013567ffffffffffffffff81111561031857610317610208565b5b6103248682870161027a565b92509250509250925092565b600081905092915050565b50565b600061034b600083610330565b91506103568261033b565b600082019050919050565b600061036c8261033e565b9150819050919050565b7f436f756c64206e6f74207061792074686520726563697069656e740000000000600082015250565b60006103ac601b83610186565b91506103b782610376565b602082019050919050565b600060208201905081810360008301526103db8161039f565b9050919050565b82818337600083830152505050565b60006103fd8385610330565b935061040a8385846103e2565b82840190509392505050565b60006104238284866103f1565b91508190509392505050565b6000819050919050565b600061045461044f61044a8461020d565b61042f565b61020d565b9050919050565b600061046682610439565b9050919050565b60006104788261045b565b9050919050565b6104888161046d565b82525050565b6000819050919050565b6104a18161048e565b82525050565b60006040820190506104bc600083018561047f565b6104c96020830184610498565b939250505056fea264697066735822122069babd0c358c5e5f58cb1c6b01fec7a1e2329e0d467ab12fd4a96030bf50b8b664736f6c63430008090033

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