ETH Price: $2,063.32 (+3.35%)

Contract

0xAa926098DA0C816553d3ffA6CDeB3C4a2db03480
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 22 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer208530522024-09-29 1:36:11547 days ago1727573771
0xAa926098...a2db03480
0.00075022 ETH
Execute With Sig...208530522024-09-29 1:36:11547 days ago1727573771
0xAa926098...a2db03480
0.00075022 ETH
Transfer208529352024-09-29 1:12:47547 days ago1727572367
0xAa926098...a2db03480
0.0000075 ETH
Execute With Sig...208529352024-09-29 1:12:47547 days ago1727572367
0xAa926098...a2db03480
0.0000075 ETH
Transfer208528832024-09-29 1:02:23547 days ago1727571743
0xAa926098...a2db03480
0.0000225 ETH
Execute With Sig...208528832024-09-29 1:02:23547 days ago1727571743
0xAa926098...a2db03480
0.0000225 ETH
Transfer208526012024-09-29 0:05:47547 days ago1727568347
0xAa926098...a2db03480
0.00002229 ETH
Execute With Sig...208526012024-09-29 0:05:47547 days ago1727568347
0xAa926098...a2db03480
0.00002229 ETH
Transfer*208523272024-09-28 23:10:35547 days ago1727565035
0xAa926098...a2db03480
0.0111851 ETH
Transfer208523272024-09-28 23:10:35547 days ago1727565035
0xAa926098...a2db03480
0.00002231 ETH
Execute With Sig...208523272024-09-28 23:10:35547 days ago1727565035
0xAa926098...a2db03480
0.01120741 ETH
Transfer208460982024-09-28 2:18:35548 days ago1727489915
0xAa926098...a2db03480
0.00743235 ETH
Execute With Sig...208460982024-09-28 2:18:35548 days ago1727489915
0xAa926098...a2db03480
0.00743235 ETH
Transfer208460852024-09-28 2:15:59548 days ago1727489759
0xAa926098...a2db03480
0.00074323 ETH
Execute With Sig...208460852024-09-28 2:15:59548 days ago1727489759
0xAa926098...a2db03480
0.00074323 ETH
Deposit206854902024-09-05 16:10:11571 days ago1725552611
0xAa926098...a2db03480
0.01262367 ETH
Transfer206854902024-09-05 16:10:11571 days ago1725552611
0xAa926098...a2db03480
0.01262367 ETH
Transfer206854902024-09-05 16:10:11571 days ago1725552611
0xAa926098...a2db03480
0.00002525 ETH
Execute With Sig...206854902024-09-05 16:10:11571 days ago1725552611
0xAa926098...a2db03480
0.00002525 ETH
Transfer206659942024-09-02 22:52:59573 days ago1725317579
0xAa926098...a2db03480
0.00055086 ETH
Execute With Sig...206659942024-09-02 22:52:59573 days ago1725317579
0xAa926098...a2db03480
0.00055086 ETH
0x60a06040206659942024-09-02 22:52:59573 days ago1725317579  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
Agent

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;

/// @title A user's agent contract created by the router
/// @notice A proxy for delegating calls to the immutable agent implementation contract
contract Agent {
    address internal immutable _implementation;

    /// @dev Create an initialized agent
    constructor(address implementation) {
        _implementation = implementation;
        (bool ok, ) = implementation.delegatecall(abi.encodeWithSignature('initialize()'));
        require(ok);
    }

    receive() external payable {}

    /// @notice Delegate all function calls to `_implementation`
    fallback() external payable {
        _delegate(_implementation);
    }

    /// @notice Delegate the call to `_implementation`
    /// @dev Referenced from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.1/contracts/proxy/Proxy.sol#L22
    /// @param implementation The address of the implementation contract that this agent delegates calls to
    function _delegate(address implementation) internal {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }
}

Settings
{
  "remappings": [
    "forge-std/=lib/forge-std/src/",
    "create3-factory/=lib/create3-factory/src/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/create3-factory/lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-gas-snapshot/=lib/permit2/lib/forge-gas-snapshot/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/create3-factory/lib/openzeppelin-contracts/contracts/",
    "permit2/=lib/permit2/",
    "solmate/=lib/permit2/lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

0x60a060405234801561001057600080fd5b506040516101cd3803806101cd83398101604081905261002f916100ca565b6001600160a01b038116608081905260408051600481526024810182526020810180516001600160e01b031663204a7f0760e21b179052905160009291610075916100fa565b600060405180830381855af49150503d80600081146100b0576040519150601f19603f3d011682016040523d82523d6000602084013e6100b5565b606091505b50509050806100c357600080fd5b5050610129565b6000602082840312156100dc57600080fd5b81516001600160a01b03811681146100f357600080fd5b9392505050565b6000825160005b8181101561011b5760208186018101518583015201610101565b506000920191825250919050565b608051608c6101416000396000600e0152608c6000f3fe608060405236600a57005b60317f00000000000000000000000000000000000000000000000000000000000000006033565b005b3660008037600080366000845af43d6000803e8080156051573d6000f35b3d6000fdfea2646970667358221220bcad68a2e23512b5c474f1f9c35678bf73e82533d18c46f4bd47bfdefc7b049564736f6c634300081200330000000000000000000000004d4c961de7140e642b7217f221b73e859e3a6482

Deployed Bytecode

0x608060405236600a57005b60317f0000000000000000000000004d4c961de7140e642b7217f221b73e859e3a64826033565b005b3660008037600080366000845af43d6000803e8080156051573d6000f35b3d6000fdfea2646970667358221220bcad68a2e23512b5c474f1f9c35678bf73e82533d18c46f4bd47bfdefc7b049564736f6c63430008120033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
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.