ETH Price: $3,142.30 (+5.51%)

Contract

0x61e537F9c62CF1a894CC46fAB9dAaFE6bB581bF6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Stake211379872024-11-07 19:54:112 days ago1731009251IN
0x61e537F9...6bB581bF6
0 ETH0.0069303119.58511838
Stake166140152023-02-12 16:56:35636 days ago1676220995IN
0x61e537F9...6bB581bF6
0 ETH0.0059422615.88483996
Stake158358792022-10-27 0:38:35745 days ago1666831115IN
0x61e537F9...6bB581bF6
0 ETH0.0041079610.5939906
Stake155756002022-09-20 15:32:11781 days ago1663687931IN
0x61e537F9...6bB581bF6
0 ETH0.003508529.04808139
Stake154692002022-09-04 3:00:36797 days ago1662260436IN
0x61e537F9...6bB581bF6
0 ETH0.002229215.74917618
Stake151767262022-07-20 2:01:38844 days ago1658282498IN
0x61e537F9...6bB581bF6
0 ETH0.0084781121.86516964
Stake151711922022-07-19 5:31:57844 days ago1658208717IN
0x61e537F9...6bB581bF6
0 ETH0.0057158814.74098217
Stake151480892022-07-15 15:31:43848 days ago1657899103IN
0x61e537F9...6bB581bF6
0 ETH0.015403643.5292343
Stake151164732022-07-10 18:19:20853 days ago1657477160IN
0x61e537F9...6bB581bF6
0 ETH0.0097530925.15273529
Stake150837262022-07-05 16:56:09858 days ago1657040169IN
0x61e537F9...6bB581bF6
0 ETH0.0078521420.24981527
Stake150774952022-07-04 17:47:17859 days ago1656956837IN
0x61e537F9...6bB581bF6
0 ETH0.0104120527.83629809
Stake150727192022-07-04 0:03:47860 days ago1656893027IN
0x61e537F9...6bB581bF6
0 ETH0.0055562414.32963538
Stake150655412022-07-02 21:37:03861 days ago1656797823IN
0x61e537F9...6bB581bF6
0 ETH0.0123767333.08456956
Stake150648422022-07-02 18:54:30861 days ago1656788070IN
0x61e537F9...6bB581bF6
0 ETH0.0059420115.88416471
Stake150426782022-06-29 1:56:37865 days ago1656467797IN
0x61e537F9...6bB581bF6
0 ETH0.0245980662.5360795
Stake150143762022-06-23 18:57:42870 days ago1656010662IN
0x61e537F9...6bB581bF6
0 ETH0.0264107268.11189801
Stake149793712022-06-17 13:18:50876 days ago1655471930IN
0x61e537F9...6bB581bF6
0 ETH0.0080256821.45531312
Stake149454342022-06-11 17:11:01882 days ago1654967461IN
0x61e537F9...6bB581bF6
0 ETH0.0194389951.96549974
Stake149047932022-06-04 18:57:08889 days ago1654369028IN
0x61e537F9...6bB581bF6
0 ETH0.0232979962.28160717
Stake148923052022-06-02 17:46:04891 days ago1654191964IN
0x61e537F9...6bB581bF6
0 ETH0.0289359874.62440359
Stake148872482022-06-01 21:51:43892 days ago1654120303IN
0x61e537F9...6bB581bF6
0 ETH0.0125730832.42533181
Stake148381702022-05-24 21:57:35900 days ago1653429455IN
0x61e537F9...6bB581bF6
0 ETH0.0099934725.77266282
Stake147917922022-05-17 9:37:24907 days ago1652780244IN
0x61e537F9...6bB581bF6
0 ETH0.0103997626.82046497
Stake147865972022-05-16 13:44:54908 days ago1652708694IN
0x61e537F9...6bB581bF6
0 ETH0.0116771531.21690151
Stake146813572022-04-29 20:21:57925 days ago1651263717IN
0x61e537F9...6bB581bF6
0 ETH0.0156018341.70778254
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StakingHelper

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2021-12-01
*/

// SPDX-License-Identifier: AGPL-3.0-or-later
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 StakingHelper {

    address public immutable staking;
    address public immutable USV;

    constructor ( address _staking, address _USV ) {
        require( _staking != address(0) );
        staking = _staking;
        require( _USV != address(0) );
        USV = _USV;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_staking","type":"address"},{"internalType":"address","name":"_USV","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"USV","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c060405234801561001057600080fd5b506040516106373803806106378339818101604052604081101561003357600080fd5b810190808051906020019092919080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561008857600080fd5b8173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100f957600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050505060805160601c60a05160601c6104c461017360003980610122528061020d528061046c52508060fe528061024952806102fa52806103c752506104c46000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80634cf088d9146100465780637acb77571461007a578063e222ad78146100c8575b600080fd5b61004e6100fc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6100c66004803603604081101561009057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610120565b005b6100d061046a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156101cf57600080fd5b505af11580156101e3573d6000803e3d6000fd5b505050506040513d60208110156101f957600080fd5b8101908080519060200190929190505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156102bc57600080fd5b505af11580156102d0573d6000803e3d6000fd5b505050506040513d60208110156102e657600080fd5b8101908080519060200190929190505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637acb775783836040518363ffffffff1660e01b8152600401808381526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561038957600080fd5b505af115801561039d573d6000803e3d6000fd5b505050506040513d60208110156103b357600080fd5b8101908080519060200190929190505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631e83409a826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561044e57600080fd5b505af1158015610462573d6000803e3d6000fd5b505050505050565b7f00000000000000000000000000000000000000000000000000000000000000008156fea264697066735822122014d81eeeb95a993945c394febe5892be9ff0cac507c973e68aa0c1288713995664736f6c63430007050033000000000000000000000000f7d3b9727a0a94cf7eb53bc26d3b62db2613705500000000000000000000000088536c9b2c4701b8db824e6a16829d5b5eb84440

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100415760003560e01c80634cf088d9146100465780637acb77571461007a578063e222ad78146100c8575b600080fd5b61004e6100fc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6100c66004803603604081101561009057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610120565b005b6100d061046a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b7f000000000000000000000000f7d3b9727a0a94cf7eb53bc26d3b62db2613705581565b7f00000000000000000000000088536c9b2c4701b8db824e6a16829d5b5eb8444073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156101cf57600080fd5b505af11580156101e3573d6000803e3d6000fd5b505050506040513d60208110156101f957600080fd5b8101908080519060200190929190505050507f00000000000000000000000088536c9b2c4701b8db824e6a16829d5b5eb8444073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f000000000000000000000000f7d3b9727a0a94cf7eb53bc26d3b62db26137055846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156102bc57600080fd5b505af11580156102d0573d6000803e3d6000fd5b505050506040513d60208110156102e657600080fd5b8101908080519060200190929190505050507f000000000000000000000000f7d3b9727a0a94cf7eb53bc26d3b62db2613705573ffffffffffffffffffffffffffffffffffffffff16637acb775783836040518363ffffffff1660e01b8152600401808381526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561038957600080fd5b505af115801561039d573d6000803e3d6000fd5b505050506040513d60208110156103b357600080fd5b8101908080519060200190929190505050507f000000000000000000000000f7d3b9727a0a94cf7eb53bc26d3b62db2613705573ffffffffffffffffffffffffffffffffffffffff16631e83409a826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561044e57600080fd5b505af1158015610462573d6000803e3d6000fd5b505050505050565b7f00000000000000000000000088536c9b2c4701b8db824e6a16829d5b5eb844408156fea264697066735822122014d81eeeb95a993945c394febe5892be9ff0cac507c973e68aa0c1288713995664736f6c63430007050033

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

000000000000000000000000f7d3b9727a0a94cf7eb53bc26d3b62db2613705500000000000000000000000088536c9b2c4701b8db824e6a16829d5b5eb84440

-----Decoded View---------------
Arg [0] : _staking (address): 0xf7d3B9727A0A94Cf7Eb53bc26D3B62Db26137055
Arg [1] : _USV (address): 0x88536C9B2C4701b8dB824e6A16829D5B5Eb84440

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f7d3b9727a0a94cf7eb53bc26d3b62db26137055
Arg [1] : 00000000000000000000000088536c9b2c4701b8db824e6a16829d5b5eb84440


Deployed Bytecode Sourcemap

2810:612:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2842:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3115:304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2881:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2842:32;;;:::o;3115:304::-;3194:3;3186:26;;;3214:10;3234:4;3241:7;3186:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3269:3;3261:21;;;3284:7;3293;3261:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3323:7;3313:25;;;3340:7;3349:10;3313:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3382:7;3372:25;;;3399:10;3372:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3115:304;;:::o;2881:28::-;;;:::o

Swarm Source

ipfs://14d81eeeb95a993945c394febe5892be9ff0cac507c973e68aa0c12887139956

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.