ETH Price: $2,375.81 (+0.32%)

Contract

0x3b5A31EA103ACa95B4e787a95c65182E44fEb408
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approvals149799322022-06-17 15:32:25839 days ago1655479945IN
0x3b5A31EA...E44fEb408
0 ETH0.0168136463.42902853
0x60806040149799282022-06-17 15:32:01839 days ago1655479921IN
 Create: ThreeXZapper
0 ETH0.0963549679.2646403

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ThreeXZapper

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 9 : ThreeXZapper.sol
// SPDX-License-Identifier: GPL-3.0
// Docgen-SOLC: 0.8.0

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { IThreeXBatchProcessing } from "../../interfaces/IThreeXBatchProcessing.sol";
import { BatchType, IAbstractBatchStorage } from "../../interfaces/IBatchStorage.sol";
import "../../../externals/interfaces/Curve3Pool.sol";
import "../../interfaces/IContractRegistry.sol";

/*
 * This Contract allows user to use and receive stablecoins directly when interacting with ThreeXBatchProcessing.
 * This contract takes DAI or USDT swaps them into USDC and deposits them or the other way around.
 */
contract ThreeXZapper {
  using SafeERC20 for IERC20;

  /* ========== STATE VARIABLES ========== */

  IContractRegistry private contractRegistry;
  Curve3Pool private threePool;
  IERC20[3] public token; // [dai,usdc,usdt]

  /* ========== EVENTS ========== */

  event ZappedIntoBatch(uint256 outputAmount, address account);
  event ZappedOutOfBatch(
    bytes32 batchId,
    int128 stableCoinIndex,
    uint256 inputAmount,
    uint256 outputAmount,
    address account
  );
  event ClaimedIntoStable(
    bytes32 batchId,
    int128 stableCoinIndex,
    uint256 inputAmount,
    uint256 outputAmount,
    address account
  );

  /* ========== CONSTRUCTOR ========== */

  constructor(
    IContractRegistry _contractRegistry,
    Curve3Pool _threePool,
    IERC20[3] memory _token
  ) {
    contractRegistry = _contractRegistry;
    threePool = _threePool;
    token = _token;
  }

  /* ========== MUTATIVE FUNCTIONS ========== */

  /**
   * @notice zapIntoBatch allows a user to deposit into a mintBatch directly with DAI or USDT
   * @param _amount Input Amount
   * @param _i Index of inputToken
   * @param _j Index of outputToken
   * @param _min_amount The min amount of USDC which should be returned by the ThreePool (slippage control) should be taking the decimals of the outputToken into account
   * @dev The amounts in _amounts must align with their index in the ThreePool
   */
  function zapIntoBatch(
    uint256 _amount,
    int128 _i,
    int128 _j,
    uint256 _min_amount // todo add instamint/redeem bool arg which calls batchMint()
  ) external {
    IThreeXBatchProcessing butterBatchProcessing = IThreeXBatchProcessing(
      contractRegistry.getContract(keccak256("ThreeXBatchProcessing"))
    );

    token[uint256(uint128(_i))].safeTransferFrom(msg.sender, address(this), _amount);

    uint256 stableBalance = _swapStables(_i, _j, _amount);

    require(stableBalance >= _min_amount, "slippage too high");

    // Deposit USDC in current mint batch
    butterBatchProcessing.depositForMint(stableBalance, msg.sender);
    emit ZappedIntoBatch(stableBalance, msg.sender);
  }

  /**
   * @notice zapOutOfBatch allows a user to retrieve their not yet processed USDC and directly receive DAI or USDT
   * @param _batchId Defines which batch gets withdrawn from
   * @param _amountToWithdraw USDC amount that shall be withdrawn
   * @param _i Index of inputToken
   * @param _j Index of outputToken
   * @param _min_amount The min amount of USDC which should be returned by the ThreePool (slippage control) should be taking the decimals of the outputToken into account
   */
  function zapOutOfBatch(
    bytes32 _batchId,
    uint256 _amountToWithdraw,
    int128 _i,
    int128 _j,
    uint256 _min_amount
  ) external {
    IThreeXBatchProcessing butterBatchProcessing = IThreeXBatchProcessing(
      contractRegistry.getContract(keccak256("ThreeXBatchProcessing"))
    );

    IAbstractBatchStorage batchStorage = butterBatchProcessing.batchStorage();

    require(batchStorage.getBatchType(_batchId) == BatchType.Mint, "!mint");

    uint256 withdrawnAmount = butterBatchProcessing.withdrawFromBatch(
      _batchId,
      _amountToWithdraw,
      msg.sender,
      address(this)
    );

    uint256 stableBalance = _swapStables(_i, _j, withdrawnAmount);

    require(stableBalance >= _min_amount, "slippage too high");

    token[uint256(uint128(_j))].safeTransfer(msg.sender, stableBalance);

    emit ZappedOutOfBatch(_batchId, _j, withdrawnAmount, stableBalance, msg.sender);
  }

  /**
   * @notice claimAndSwapToStable allows a user to claim their processed USDC from a redeemBatch and directly receive DAI or USDT
   * @param _batchId Defines which batch gets withdrawn from
   * @param _i Index of inputToken
   * @param _j Index of outputToken
   * @param _min_amount The min amount of USDC which should be returned by the ThreePool (slippage control) should be taking the decimals of the outputToken into account
   */
  function claimAndSwapToStable(
    bytes32 _batchId,
    int128 _i,
    int128 _j,
    uint256 _min_amount
  ) external {
    IThreeXBatchProcessing butterBatchProcessing = IThreeXBatchProcessing(
      contractRegistry.getContract(keccak256("ThreeXBatchProcessing"))
    );
    IAbstractBatchStorage batchStorage = butterBatchProcessing.batchStorage();

    require(batchStorage.getBatchType(_batchId) == BatchType.Redeem, "!redeem");

    uint256 inputAmount = butterBatchProcessing.claim(_batchId, msg.sender);
    uint256 stableBalance = _swapStables(_i, _j, inputAmount);

    require(stableBalance >= _min_amount, "slippage too high");

    token[uint256(uint128(_j))].safeTransfer(msg.sender, stableBalance);

    emit ClaimedIntoStable(_batchId, _j, inputAmount, stableBalance, msg.sender);
  }

  function _swapStables(
    int128 _fromIndex,
    int128 _toIndex,
    uint256 _inputAmount
  ) internal returns (uint256) {
    threePool.exchange(_fromIndex, _toIndex, _inputAmount, 0);
    return token[uint256(uint128(_toIndex))].balanceOf(address(this));
  }

  /**
   * @notice set idempotent approvals for threePool and butter batch processing
   */
  function setApprovals() external {
    for (uint256 i; i < token.length; i++) {
      token[i].safeApprove(address(threePool), 0);
      token[i].safeApprove(address(threePool), type(uint256).max);

      token[i].safeApprove(contractRegistry.getContract(keccak256("ThreeXBatchProcessing")), 0);
      token[i].safeApprove(contractRegistry.getContract(keccak256("ThreeXBatchProcessing")), type(uint256).max);
    }
  }
}

File 2 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 3 of 9 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 5 of 9 : IBatchStorage.sol
// SPDX-License-Identifier: GPL-3.0
// Docgen-SOLC: 0.8.0

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { IClientBatchStorageAccess } from "./IClientBatchStorageAccess.sol";
/**
 * @notice Defines if the Batch will mint or redeem 3X
 */
enum BatchType {
  Mint,
  Redeem
}

/**
 * @notice The Batch structure is used both for Batches of Minting and Redeeming
 * @param batchType Determines if this Batch is for Minting or Redeeming 3X
 * @param batchId bytes32 id of the batch
 * @param claimable Shows if a batch has been processed and is ready to be claimed, the suppliedToken cant be withdrawn if a batch is claimable
 * @param unclaimedShares The total amount of unclaimed shares in this batch
 * @param sourceTokenBalance The total amount of deposited token (either DAI or 3X)
 * @param claimableTokenBalance The total amount of claimable token (either sUSD or 3X)
 * @param sourceToken the token one supplies for minting/redeeming another token. the token collateral used to mint or redeem a mintable/redeemable token
 * @param targetToken the token that is claimable after providing the suppliedToken for mint/redeem. the token that a mintable/redeemable token turns into during mint/redeem
 * @param owner address of client (controller contract) that owns this batch and has access rights to it. this makes it so that all balances are isolated and not accessible by other clients that added to this contract over time
 * todo add deposit caps
 */
struct Batch {
  bytes32 id;
  BatchType batchType;
  bytes32 batchId;
  bool claimable;
  uint256 unclaimedShares;
  uint256 sourceTokenBalance;
  uint256 targetTokenBalance;
  IERC20 sourceToken;
  IERC20 targetToken;
  address owner;
}

/**
 * @notice Each type of batch (mint/redeem) have a source token and target token.
 * @param targetToken the token which is minted or redeemed for
 * @param sourceToken the token which is supplied to the batch to be minted/redeemed
 */
struct BatchTokens {
  IERC20 targetToken;
  IERC20 sourceToken;
}

interface IViewableBatchStorage {
  function getAccountBatches(address account) external view returns (bytes32[] memory);

  function getBatch(bytes32 batchId) external view returns (Batch memory);

  function getBatchIds(uint256 index) external view returns (Batch memory);

  function getAccountBalance(bytes32 batchId, address owner) external view returns (uint256);
}

interface IAbstractBatchStorage is IClientBatchStorageAccess {
  function getBatchType(bytes32 batchId) external view returns (BatchType);

  /* ========== VIEW ========== */

  function previewClaim(
    bytes32 batchId,
    address owner,
    uint256 shares
  )
    external
    view
    returns (
      uint256,
      uint256,
      uint256
    );

  /* ========== SETTER ========== */

  function claim(
    bytes32 batchId,
    address owner,
    uint256 shares,
    address recipient
  ) external returns (uint256, uint256);

  /**
   * @notice This function allows a user to withdraw their funds from a batch before that batch has been processed
   * @param batchId From which batch should funds be withdrawn from
   * @param owner address that owns the account balance
   * @param amount amount of tokens to withdraw from batch
   * @param recipient address that will receive the token transfer. if address(0) then no transfer is made
   */
  function withdraw(
    bytes32 batchId,
    address owner,
    uint256 amount,
    address recipient
  ) external returns (uint256);

  function deposit(
    bytes32 batchId,
    address owner,
    uint256 amount
  ) external returns (uint256);

  /**
   * @notice approve allows the client contract to approve an address to be the recipient of a withdrawal or claim
   */
  function approve(
    IERC20 token,
    address delegatee,
    bytes32 batchId,
    uint256 amount
  ) external;

  /**
   * @notice This function transfers the batch source tokens to the client usually for a minting or redeming operation
   * @param batchId From which batch should funds be withdrawn from
   */
  function withdrawSourceTokenFromBatch(bytes32 batchId) external returns (uint256);

  /**
   * @notice Moves funds from unclaimed batches into the current mint/redeem batch
   * @param _sourceBatch the id of the claimable batch
   * @param _destinationBatch the id of the redeem batch
   * @param owner owner of the account balance
   * @param shares how many shares should be claimed
   */
  function moveUnclaimedIntoCurrentBatch(
    bytes32 _sourceBatch,
    bytes32 _destinationBatch,
    address owner,
    uint256 shares
  ) external returns (uint256);

  function depositTargetTokensIntoBatch(bytes32 id, uint256 amount) external returns (bool);

  function createBatch(BatchType _batchType, BatchTokens memory _tokens) external returns (bytes32);
}

File 6 of 9 : IClientBatchStorageAccess.sol
// SPDX-License-Identifier: GPL-3.0
// Docgen-SOLC: 0.8.0

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

interface IClientBatchStorageAccess {
  function grantClientAccess(address newClient) external;

  function revokeClientAccess(address client) external;

  function acceptClientAccess(address grantingAddress) external;

  function addClient(address _address) external;

  function removeClient(address _address) external;
}

File 7 of 9 : IContractRegistry.sol
// SPDX-License-Identifier: GPL-3.0
// Docgen-SOLC: 0.8.0

pragma solidity >=0.6.12;

/**
 * @dev External interface of ContractRegistry.
 */
interface IContractRegistry {
  function getContract(bytes32 _name) external view returns (address);

  function getContractIdFromAddress(address _contractAddress) external view returns (bytes32);

  function addContract(
    bytes32 _name,
    address _address,
    bytes32 _version
  ) external;
}

File 8 of 9 : IThreeXBatchProcessing.sol
// SPDX-License-Identifier: GPL-3.0
// Docgen-SOLC: 0.8.0

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

import { BatchType, IAbstractBatchStorage, Batch } from "./IBatchStorage.sol";

interface IThreeXBatchProcessing {
  function batchStorage() external returns (IAbstractBatchStorage);

  function getBatch(bytes32 batchId) external view returns (Batch memory);

  function depositForMint(uint256 amount_, address account_) external;

  function depositForRedeem(uint256 amount_) external;

  function claim(bytes32 batchId_, address account_) external returns (uint256);

  function withdrawFromBatch(
    bytes32 batchId_,
    uint256 amountToWithdraw_,
    address account_
  ) external returns (uint256);

  function withdrawFromBatch(
    bytes32 batchId_,
    uint256 amountToWithdraw_,
    address _withdrawFor,
    address _recipient
  ) external returns (uint256);
}

File 9 of 9 : Curve3Pool.sol
// SPDX-License-Identifier: GPL-3.0
// Docgen-SOLC: 0.8.0

pragma solidity ^0.8.0;

interface Curve3Pool {
  function add_liquidity(uint256[3] calldata amounts, uint256 min_mint_amounts) external;

  function remove_liquidity_one_coin(
    uint256 burn_amount,
    int128 i,
    uint256 min_amount
  ) external;

  function get_virtual_price() external view returns (uint256);

  function calc_withdraw_one_coin(uint256 _token_amount, int128 i) external view returns (uint256);

  function coins(uint256 i) external view returns (address);

  function calc_token_amount(uint256[3] calldata amounts, bool deposit) external view returns (uint256);

  function exchange(
    int128 i,
    int128 j,
    uint256 dx,
    uint256 min_dy
  ) external;
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IContractRegistry","name":"_contractRegistry","type":"address"},{"internalType":"contract Curve3Pool","name":"_threePool","type":"address"},{"internalType":"contract IERC20[3]","name":"_token","type":"address[3]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"batchId","type":"bytes32"},{"indexed":false,"internalType":"int128","name":"stableCoinIndex","type":"int128"},{"indexed":false,"internalType":"uint256","name":"inputAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outputAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"ClaimedIntoStable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"outputAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"ZappedIntoBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"batchId","type":"bytes32"},{"indexed":false,"internalType":"int128","name":"stableCoinIndex","type":"int128"},{"indexed":false,"internalType":"uint256","name":"inputAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outputAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"ZappedOutOfBatch","type":"event"},{"inputs":[{"internalType":"bytes32","name":"_batchId","type":"bytes32"},{"internalType":"int128","name":"_i","type":"int128"},{"internalType":"int128","name":"_j","type":"int128"},{"internalType":"uint256","name":"_min_amount","type":"uint256"}],"name":"claimAndSwapToStable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"int128","name":"_i","type":"int128"},{"internalType":"int128","name":"_j","type":"int128"},{"internalType":"uint256","name":"_min_amount","type":"uint256"}],"name":"zapIntoBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_batchId","type":"bytes32"},{"internalType":"uint256","name":"_amountToWithdraw","type":"uint256"},{"internalType":"int128","name":"_i","type":"int128"},{"internalType":"int128","name":"_j","type":"int128"},{"internalType":"uint256","name":"_min_amount","type":"uint256"}],"name":"zapOutOfBatch","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620014e8380380620014e8833981016040819052620000349162000132565b600080546001600160a01b038086166001600160a01b03199283161790925560018054928516929091169190911790556200007360028260036200007d565b50505050620001ed565b8260038101928215620000c8579160200282015b82811115620000c857825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000091565b50620000d6929150620000da565b5090565b5b80821115620000d65760008155600101620000db565b6001600160a01b03811681146200010757600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b80516200012d81620000f1565b919050565b600080600060a084860312156200014857600080fd5b83516200015581620000f1565b809350506020808501516200016a81620000f1565b9250605f850186136200017c57600080fd5b604051606081016001600160401b0381118282101715620001a157620001a16200010a565b6040528060a0870188811115620001b757600080fd5b604088015b81811015620001de57620001d08162000120565b8352918401918401620001bc565b50505080925050509250925092565b6112eb80620001fd6000396000f3fe608060405234801561001057600080fd5b50600436106100675760003560e01c80639e7f7c7f116100505780639e7f7c7f146100a5578063f2224984146100b8578063f97d7023146100cb57600080fd5b8063044215c61461006c5780638757b15b1461009b575b600080fd5b61007f61007a366004611097565b6100de565b6040516001600160a01b03909116815260200160405180910390f35b6100a36100fe565b005b6100a36100b33660046110c7565b6102c3565b6100a36100c6366004611115565b61060f565b6100a36100d9366004611115565b610936565b600281600381106100ee57600080fd5b01546001600160a01b0316905081565b60005b60038110156102c057600154610141906001600160a01b031660006002846003811061012f5761012f611159565b01546001600160a01b03169190610b10565b600154610167906001600160a01b03166000196002846003811061012f5761012f611159565b600054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb988600482015261020a916001600160a01b03169063e16c7d9890602401602060405180830381865afa1580156101d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101f59190611184565b60006002846003811061012f5761012f611159565b600054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb98860048201526102ae916001600160a01b03169063e16c7d9890602401602060405180830381865afa158015610274573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102989190611184565b6000196002846003811061012f5761012f611159565b806102b8816111a1565b915050610101565b50565b60008054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb98860048201526001600160a01b039091169063e16c7d9890602401602060405180830381865afa15801561032c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103509190611184565b90506000816001600160a01b031663f1230cb56040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610394573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b89190611184565b90506000604051639db95d0560e01b8152600481018990526001600160a01b03831690639db95d0590602401602060405180830381865afa158015610401573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042591906111de565b6001811115610436576104366111c8565b146104885760405162461bcd60e51b815260206004820152600560248201527f216d696e7400000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6040517f620723a900000000000000000000000000000000000000000000000000000000815260048101889052602481018790523360448201523060648201526000906001600160a01b0384169063620723a9906084016020604051808303816000875af11580156104fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052291906111ff565b90506000610531878784610cc3565b9050848110156105775760405162461bcd60e51b81526020600482015260116024820152700e6d8d2e0e0c2ceca40e8dede40d0d2ced607b1b604482015260640161047f565b6105b333826002896fffffffffffffffffffffffffffffffff16600381106105a1576105a1611159565b01546001600160a01b03169190610e07565b604080518a8152600f88900b6020820152908101839052606081018290523360808201527fdd5d550fd0621de41e6ee74ff8b9b5ac91cacec3c869bb5a5edaa1483d50e4ec9060a00160405180910390a1505050505050505050565b60008054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb98860048201526001600160a01b039091169063e16c7d9890602401602060405180830381865afa158015610678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069c9190611184565b90506000816001600160a01b031663f1230cb56040518163ffffffff1660e01b81526004016020604051808303816000875af11580156106e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107049190611184565b90506001604051639db95d0560e01b8152600481018890526001600160a01b03831690639db95d0590602401602060405180830381865afa15801561074d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077191906111de565b6001811115610782576107826111c8565b146107cf5760405162461bcd60e51b815260206004820152600760248201527f2172656465656d00000000000000000000000000000000000000000000000000604482015260640161047f565b6040517f96c144f0000000000000000000000000000000000000000000000000000000008152600481018790523360248201526000906001600160a01b038416906396c144f0906044016020604051808303816000875af1158015610838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085c91906111ff565b9050600061086b878784610cc3565b9050848110156108b15760405162461bcd60e51b81526020600482015260116024820152700e6d8d2e0e0c2ceca40e8dede40d0d2ced607b1b604482015260640161047f565b6108db33826002896fffffffffffffffffffffffffffffffff16600381106105a1576105a1611159565b60408051898152600f88900b6020820152908101839052606081018290523360808201527fc58ac00e029e1925d27d7bb041ed7b8a9de17c22289b33a06dd7f9424e6f9aa19060a00160405180910390a15050505050505050565b60008054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb98860048201526001600160a01b039091169063e16c7d9890602401602060405180830381865afa15801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c39190611184565b9050610a033330876002886fffffffffffffffffffffffffffffffff16600381106109f0576109f0611159565b01546001600160a01b0316929190610e50565b6000610a10858588610cc3565b905082811015610a565760405162461bcd60e51b81526020600482015260116024820152700e6d8d2e0e0c2ceca40e8dede40d0d2ced607b1b604482015260640161047f565b6040517f961b7d86000000000000000000000000000000000000000000000000000000008152600481018290523360248201526001600160a01b0383169063961b7d8690604401600060405180830381600087803b158015610ab757600080fd5b505af1158015610acb573d6000803e3d6000fd5b5050604080518481523360208201527fa59c8e0fff5360b5d65a99cba38825db122305108affae79287f0029d5b4b6e3935001905060405180910390a1505050505050565b801580610ba357506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610b7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba191906111ff565b155b610c155760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000606482015260840161047f565b6040516001600160a01b038316602482015260448101829052610cbe9084907f095ea7b300000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610ea7565b505050565b6001546040517f3df02124000000000000000000000000000000000000000000000000000000008152600f85810b600483015284900b602482015260448101839052600060648201819052916001600160a01b031690633df0212490608401600060405180830381600087803b158015610d3c57600080fd5b505af1158015610d50573d6000803e3d6000fd5b505050506002836fffffffffffffffffffffffffffffffff1660038110610d7957610d79611159565b01546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610dd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfd91906111ff565b90505b9392505050565b6040516001600160a01b038316602482015260448101829052610cbe9084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401610c5a565b6040516001600160a01b0380851660248301528316604482015260648101829052610ea19085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401610c5a565b50505050565b6000610efc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610f8c9092919063ffffffff16565b805190915015610cbe5780806020019051810190610f1a9190611218565b610cbe5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161047f565b6060610dfd848460008585843b610fe55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161047f565b600080866001600160a01b031685876040516110019190611266565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b509150915061105382828661105e565b979650505050505050565b6060831561106d575081610e00565b82511561107d5782518084602001fd5b8160405162461bcd60e51b815260040161047f9190611282565b6000602082840312156110a957600080fd5b5035919050565b8035600f81900b81146110c257600080fd5b919050565b600080600080600060a086880312156110df57600080fd5b85359450602086013593506110f6604087016110b0565b9250611104606087016110b0565b949793965091946080013592915050565b6000806000806080858703121561112b57600080fd5b8435935061113b602086016110b0565b9250611149604086016110b0565b9396929550929360600135925050565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146102c057600080fd5b60006020828403121561119657600080fd5b8151610e008161116f565b6000600182016111c157634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052602160045260246000fd5b6000602082840312156111f057600080fd5b815160028110610e0057600080fd5b60006020828403121561121157600080fd5b5051919050565b60006020828403121561122a57600080fd5b81518015158114610e0057600080fd5b60005b8381101561125557818101518382015260200161123d565b83811115610ea15750506000910152565b6000825161127881846020870161123a565b9190910192915050565b60208152600082518060208401526112a181604085016020870161123a565b601f01601f1916919091016040019291505056fea2646970667358221220ce12799f287aa0395675bca8cf3215a1a3cde9287514da31180c56ffeb31b87664736f6c634300080d003300000000000000000000000085831b53afb86889c20af38e654d871d8b0b7ec3000000000000000000000000bebc44782c7db0a1a60cb6fe97d0b483032ff1c70000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100675760003560e01c80639e7f7c7f116100505780639e7f7c7f146100a5578063f2224984146100b8578063f97d7023146100cb57600080fd5b8063044215c61461006c5780638757b15b1461009b575b600080fd5b61007f61007a366004611097565b6100de565b6040516001600160a01b03909116815260200160405180910390f35b6100a36100fe565b005b6100a36100b33660046110c7565b6102c3565b6100a36100c6366004611115565b61060f565b6100a36100d9366004611115565b610936565b600281600381106100ee57600080fd5b01546001600160a01b0316905081565b60005b60038110156102c057600154610141906001600160a01b031660006002846003811061012f5761012f611159565b01546001600160a01b03169190610b10565b600154610167906001600160a01b03166000196002846003811061012f5761012f611159565b600054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb988600482015261020a916001600160a01b03169063e16c7d9890602401602060405180830381865afa1580156101d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101f59190611184565b60006002846003811061012f5761012f611159565b600054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb98860048201526102ae916001600160a01b03169063e16c7d9890602401602060405180830381865afa158015610274573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102989190611184565b6000196002846003811061012f5761012f611159565b806102b8816111a1565b915050610101565b50565b60008054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb98860048201526001600160a01b039091169063e16c7d9890602401602060405180830381865afa15801561032c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103509190611184565b90506000816001600160a01b031663f1230cb56040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610394573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b89190611184565b90506000604051639db95d0560e01b8152600481018990526001600160a01b03831690639db95d0590602401602060405180830381865afa158015610401573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042591906111de565b6001811115610436576104366111c8565b146104885760405162461bcd60e51b815260206004820152600560248201527f216d696e7400000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6040517f620723a900000000000000000000000000000000000000000000000000000000815260048101889052602481018790523360448201523060648201526000906001600160a01b0384169063620723a9906084016020604051808303816000875af11580156104fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052291906111ff565b90506000610531878784610cc3565b9050848110156105775760405162461bcd60e51b81526020600482015260116024820152700e6d8d2e0e0c2ceca40e8dede40d0d2ced607b1b604482015260640161047f565b6105b333826002896fffffffffffffffffffffffffffffffff16600381106105a1576105a1611159565b01546001600160a01b03169190610e07565b604080518a8152600f88900b6020820152908101839052606081018290523360808201527fdd5d550fd0621de41e6ee74ff8b9b5ac91cacec3c869bb5a5edaa1483d50e4ec9060a00160405180910390a1505050505050505050565b60008054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb98860048201526001600160a01b039091169063e16c7d9890602401602060405180830381865afa158015610678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069c9190611184565b90506000816001600160a01b031663f1230cb56040518163ffffffff1660e01b81526004016020604051808303816000875af11580156106e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107049190611184565b90506001604051639db95d0560e01b8152600481018890526001600160a01b03831690639db95d0590602401602060405180830381865afa15801561074d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077191906111de565b6001811115610782576107826111c8565b146107cf5760405162461bcd60e51b815260206004820152600760248201527f2172656465656d00000000000000000000000000000000000000000000000000604482015260640161047f565b6040517f96c144f0000000000000000000000000000000000000000000000000000000008152600481018790523360248201526000906001600160a01b038416906396c144f0906044016020604051808303816000875af1158015610838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085c91906111ff565b9050600061086b878784610cc3565b9050848110156108b15760405162461bcd60e51b81526020600482015260116024820152700e6d8d2e0e0c2ceca40e8dede40d0d2ced607b1b604482015260640161047f565b6108db33826002896fffffffffffffffffffffffffffffffff16600381106105a1576105a1611159565b60408051898152600f88900b6020820152908101839052606081018290523360808201527fc58ac00e029e1925d27d7bb041ed7b8a9de17c22289b33a06dd7f9424e6f9aa19060a00160405180910390a15050505050505050565b60008054604051631c2d8fb360e31b81527f704ad3a59be98f184239509fa87569e37a7bbe9669c628d3185d41415cecb98860048201526001600160a01b039091169063e16c7d9890602401602060405180830381865afa15801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c39190611184565b9050610a033330876002886fffffffffffffffffffffffffffffffff16600381106109f0576109f0611159565b01546001600160a01b0316929190610e50565b6000610a10858588610cc3565b905082811015610a565760405162461bcd60e51b81526020600482015260116024820152700e6d8d2e0e0c2ceca40e8dede40d0d2ced607b1b604482015260640161047f565b6040517f961b7d86000000000000000000000000000000000000000000000000000000008152600481018290523360248201526001600160a01b0383169063961b7d8690604401600060405180830381600087803b158015610ab757600080fd5b505af1158015610acb573d6000803e3d6000fd5b5050604080518481523360208201527fa59c8e0fff5360b5d65a99cba38825db122305108affae79287f0029d5b4b6e3935001905060405180910390a1505050505050565b801580610ba357506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610b7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba191906111ff565b155b610c155760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000606482015260840161047f565b6040516001600160a01b038316602482015260448101829052610cbe9084907f095ea7b300000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610ea7565b505050565b6001546040517f3df02124000000000000000000000000000000000000000000000000000000008152600f85810b600483015284900b602482015260448101839052600060648201819052916001600160a01b031690633df0212490608401600060405180830381600087803b158015610d3c57600080fd5b505af1158015610d50573d6000803e3d6000fd5b505050506002836fffffffffffffffffffffffffffffffff1660038110610d7957610d79611159565b01546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610dd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfd91906111ff565b90505b9392505050565b6040516001600160a01b038316602482015260448101829052610cbe9084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401610c5a565b6040516001600160a01b0380851660248301528316604482015260648101829052610ea19085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401610c5a565b50505050565b6000610efc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610f8c9092919063ffffffff16565b805190915015610cbe5780806020019051810190610f1a9190611218565b610cbe5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161047f565b6060610dfd848460008585843b610fe55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161047f565b600080866001600160a01b031685876040516110019190611266565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b509150915061105382828661105e565b979650505050505050565b6060831561106d575081610e00565b82511561107d5782518084602001fd5b8160405162461bcd60e51b815260040161047f9190611282565b6000602082840312156110a957600080fd5b5035919050565b8035600f81900b81146110c257600080fd5b919050565b600080600080600060a086880312156110df57600080fd5b85359450602086013593506110f6604087016110b0565b9250611104606087016110b0565b949793965091946080013592915050565b6000806000806080858703121561112b57600080fd5b8435935061113b602086016110b0565b9250611149604086016110b0565b9396929550929360600135925050565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146102c057600080fd5b60006020828403121561119657600080fd5b8151610e008161116f565b6000600182016111c157634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052602160045260246000fd5b6000602082840312156111f057600080fd5b815160028110610e0057600080fd5b60006020828403121561121157600080fd5b5051919050565b60006020828403121561122a57600080fd5b81518015158114610e0057600080fd5b60005b8381101561125557818101518382015260200161123d565b83811115610ea15750506000910152565b6000825161127881846020870161123a565b9190910192915050565b60208152600082518060208401526112a181604085016020870161123a565b601f01601f1916919091016040019291505056fea2646970667358221220ce12799f287aa0395675bca8cf3215a1a3cde9287514da31180c56ffeb31b87664736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000085831b53afb86889c20af38e654d871d8b0b7ec3000000000000000000000000bebc44782c7db0a1a60cb6fe97d0b483032ff1c70000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7

-----Decoded View---------------
Arg [0] : _contractRegistry (address): 0x85831b53AFb86889c20aF38e654d871D8b0B7eC3
Arg [1] : _threePool (address): 0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7
Arg [2] : _token (address[3]): 0x6B175474E89094C44Da98b954EedeAC495271d0F,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48,0xdAC17F958D2ee523a2206206994597C13D831ec7

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000085831b53afb86889c20af38e654d871d8b0b7ec3
Arg [1] : 000000000000000000000000bebc44782c7db0a1a60cb6fe97d0b483032ff1c7
Arg [2] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Arg [3] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [4] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7


Block Transaction Difficulty 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
[ 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.