Contract Address Details

0xBEDcB568B5944681976849Bc6963ddB4308e191b

Contract Name
OHMDStakingHelper
Creator
0x6d27dc–9843a0 at 0x0c94ec–6a45c3
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
294 Transactions
Transfers
1,430 Transfers
Gas Used
53,308,386
Last Balance Update
26106926
Contract name:
OHMDStakingHelper




Optimization enabled
true
Compiler version
v0.7.5+commit.eb77ed08




Optimization runs
200
EVM Version
default




Verified at
2022-09-21T01:27:25.259086Z

Constructor Arguments

00000000000000000000000066894d855e879eb4244214f71c7df0f63c00f6380000000000000000000000007de470a165e5eb6b6eaae695d63f53a1ecaad9d0

Arg [0] (address) : 0x66894d855e879eb4244214f71c7df0f63c00f638
Arg [1] (address) : 0x7de470a165e5eb6b6eaae695d63f53a1ecaad9d0

              

Contract source code

// SPDX-License-Identifier: MIT
pragma solidity 0.7.5;


interface IERC20 {
    function decimals() external view returns (uint8);
  /**
   * @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);
}

interface IStaking {
    function stake( uint _amount, address _recipient ) external returns ( bool );
    function claim( address _recipient ) external;
}

contract OHMDStakingHelper {

    address public immutable staking;
    address public immutable OHMD;

    constructor ( address _staking, address _OHMD ) {
        require( _staking != address(0) );
        staking = _staking;
        require( _OHMD != address(0) );
        OHMD = _OHMD;
    }

    function stake( uint _amount, address recipient ) external {
        IERC20( OHMD ).transferFrom( msg.sender, address(this), _amount );
        IERC20( OHMD ).approve( staking, _amount );
        IStaking( staking ).stake( _amount, recipient );
        IStaking( staking ).claim( recipient );
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_staking","internalType":"address"},{"type":"address","name":"_OHMD","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"OHMD","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stake","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"address","name":"recipient","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"staking","inputs":[]}]
            

Contract Creation Code

0x60c060405234801561001057600080fd5b506040516104713803806104718339818101604052604081101561003357600080fd5b5080516020909101516001600160a01b03821661004f57600080fd5b6001600160601b0319606083901b166080526001600160a01b03811661007457600080fd5b606081811b6001600160601b03191660a052608051901c91506001600160a01b03166103a76100ca6000398060c6528061011552806101d252508060a252806101a15280610272528061030b52506103a76000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80634cf088d91461004657806370b4aa6e1461006a5780637acb775714610072575b600080fd5b61004e6100a0565b604080516001600160a01b039092168252519081900360200190f35b61004e6100c4565b61009e6004803603604081101561008857600080fd5b50803590602001356001600160a01b03166100e8565b005b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd9160648083019260209291908290030181600087803b15801561015d57600080fd5b505af1158015610171573d6000803e3d6000fd5b505050506040513d602081101561018757600080fd5b50506040805163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820185905291517f00000000000000000000000000000000000000000000000000000000000000009092169163095ea7b3916044808201926020929091908290030181600087803b15801561021d57600080fd5b505af1158015610231573d6000803e3d6000fd5b505050506040513d602081101561024757600080fd5b505060408051637acb775760e01b8152600481018490526001600160a01b03838116602483015291517f000000000000000000000000000000000000000000000000000000000000000090921691637acb7757916044808201926020929091908290030181600087803b1580156102bd57600080fd5b505af11580156102d1573d6000803e3d6000fd5b505050506040513d60208110156102e757600080fd5b505060408051630f41a04d60e11b81526001600160a01b03838116600483015291517f000000000000000000000000000000000000000000000000000000000000000090921691631e83409a9160248082019260009290919082900301818387803b15801561035557600080fd5b505af1158015610369573d6000803e3d6000fd5b50505050505056fea2646970667358221220947ada5349056957ad405c0fec4c4016f95e1d928ec37cc4b5c4be7103bd22cf64736f6c6343000705003300000000000000000000000066894d855e879eb4244214f71c7df0f63c00f6380000000000000000000000007de470a165e5eb6b6eaae695d63f53a1ecaad9d0

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106100415760003560e01c80634cf088d91461004657806370b4aa6e1461006a5780637acb775714610072575b600080fd5b61004e6100a0565b604080516001600160a01b039092168252519081900360200190f35b61004e6100c4565b61009e6004803603604081101561008857600080fd5b50803590602001356001600160a01b03166100e8565b005b7f00000000000000000000000066894d855e879eb4244214f71c7df0f63c00f63881565b7f0000000000000000000000007de470a165e5eb6b6eaae695d63f53a1ecaad9d081565b604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b037f0000000000000000000000007de470a165e5eb6b6eaae695d63f53a1ecaad9d016916323b872dd9160648083019260209291908290030181600087803b15801561015d57600080fd5b505af1158015610171573d6000803e3d6000fd5b505050506040513d602081101561018757600080fd5b50506040805163095ea7b360e01b81526001600160a01b037f00000000000000000000000066894d855e879eb4244214f71c7df0f63c00f638811660048301526024820185905291517f0000000000000000000000007de470a165e5eb6b6eaae695d63f53a1ecaad9d09092169163095ea7b3916044808201926020929091908290030181600087803b15801561021d57600080fd5b505af1158015610231573d6000803e3d6000fd5b505050506040513d602081101561024757600080fd5b505060408051637acb775760e01b8152600481018490526001600160a01b03838116602483015291517f00000000000000000000000066894d855e879eb4244214f71c7df0f63c00f63890921691637acb7757916044808201926020929091908290030181600087803b1580156102bd57600080fd5b505af11580156102d1573d6000803e3d6000fd5b505050506040513d60208110156102e757600080fd5b505060408051630f41a04d60e11b81526001600160a01b03838116600483015291517f00000000000000000000000066894d855e879eb4244214f71c7df0f63c00f63890921691631e83409a9160248082019260009290919082900301818387803b15801561035557600080fd5b505af1158015610369573d6000803e3d6000fd5b50505050505056fea2646970667358221220947ada5349056957ad405c0fec4c4016f95e1d928ec37cc4b5c4be7103bd22cf64736f6c63430007050033