ETH Price: $2,101.17 (-0.84%)

Contract

0xBbFBfDcdb681E45a3F1792f0A7f125C3Ee2D90FD
 

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 2 Token Transfers found.

Latest 23 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Deposit162304002022-12-21 3:30:471179 days ago1671593447
0xBbFBfDcd...3Ee2D90FD
0.027 ETH
Transfer162033042022-12-17 8:44:351182 days ago1671266675
0xBbFBfDcd...3Ee2D90FD
0.0016065 ETH
Transfer161983412022-12-16 16:06:111183 days ago1671206771
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161972012022-12-16 12:16:591183 days ago1671193019
0xBbFBfDcd...3Ee2D90FD
0.00135 ETH
Transfer161944872022-12-16 3:11:231184 days ago1671160283
0xBbFBfDcd...3Ee2D90FD
0.0108 ETH
Transfer161765952022-12-13 15:13:471186 days ago1670944427
0xBbFBfDcd...3Ee2D90FD
0.0027 ETH
Transfer161693982022-12-12 15:03:471187 days ago1670857427
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161553162022-12-10 15:51:471189 days ago1670687507
0xBbFBfDcd...3Ee2D90FD
0.00486 ETH
Transfer161316542022-12-07 8:28:471192 days ago1670401727
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161305222022-12-07 4:33:351192 days ago1670387615
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161301862022-12-07 3:24:111193 days ago1670383451
0xBbFBfDcd...3Ee2D90FD
0.0007155 ETH
Transfer161299472022-12-07 2:33:591193 days ago1670380439
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161275812022-12-06 18:35:471193 days ago1670351747
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161267742022-12-06 15:53:231193 days ago1670342003
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161266422022-12-06 15:26:591193 days ago1670340419
0xBbFBfDcd...3Ee2D90FD
0.0013905 ETH
Transfer161260452022-12-06 13:26:591193 days ago1670333219
0xBbFBfDcd...3Ee2D90FD
0.000405 ETH
Transfer161253122022-12-06 10:59:471193 days ago1670324387
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161243212022-12-06 7:41:111193 days ago1670312471
0xBbFBfDcd...3Ee2D90FD
0.0001755 ETH
Transfer161242312022-12-06 7:22:471193 days ago1670311367
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161242252022-12-06 7:21:351193 days ago1670311295
0xBbFBfDcd...3Ee2D90FD
0.000027 ETH
Transfer161242092022-12-06 7:18:231193 days ago1670311103
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
Transfer161241202022-12-06 7:00:351193 days ago1670310035
0xBbFBfDcd...3Ee2D90FD
0.00027 ETH
0x3d602d80160454042022-11-25 7:07:111204 days ago1669360031  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

Minimal Proxy Contract for 0x5f68d31fcb51b72a9eb71682dcca84e2a6f7da35

Contract Name:
TokenVaultExchangeProxy

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

pragma solidity ^0.8.0;

import {InitializedProxy} from "./InitializedProxy.sol";
import {IImpls} from "../../interfaces/IImpls.sol";

/**
 * @title InitializedProxy
 */
contract TokenVaultExchangeProxy is InitializedProxy {
    constructor(address _settings)
        InitializedProxy(_settings)
    {}

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation()
        internal
        view
        virtual
        override
        returns (address impl)
    {
        return IImpls(settings).exchangeImpl();
    }
}

File 2 of 5 : SettingStorage.sol
pragma solidity ^0.8.0;

/**
 * @title SettingStorage
 * @author 0xkongamoto
 */
contract SettingStorage {
    // address of logic contract
    address public immutable settings;

    // ======== Constructor =========

    constructor(address _settings) {
        require(_settings != address(0), "no zero address");
        settings = _settings;
    }
}

pragma solidity ^0.8.0;

import {SettingStorage} from "./SettingStorage.sol";
import {Proxy} from "../openzeppelin/proxy/Proxy.sol";

/**
 * @title InitializedProxy
 * @author 0xkongamoto
 */
contract InitializedProxy is SettingStorage, Proxy {
    // ======== Constructor =========
    constructor(address _settings) SettingStorage(_settings) {}

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation()
        internal
        view
        virtual
        override
        returns (address impl)
    {
        return settings;
    }
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        // solhint-disable-next-line no-inline-assembly
        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()) }
        }
    }

    /**
     * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback () external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive () external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overriden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {
    }
}

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IImpls {
    function vaultImpl() external view returns (address);

    function stakingImpl() external view returns (address);

    function treasuryImpl() external view returns (address);

    function governmentImpl() external view returns (address);

    function exchangeImpl() external view returns (address);

    function bnftImpl() external view returns (address);
}

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

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_settings","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"settings","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

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.