ETH Price: $2,968.74 (-1.71%)
Gas: 1 Gwei

Contract

0x43a6af320de1AcbF9b06CC6BDEe6dB81CD45028C
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Withdraw198560132024-05-12 19:25:4755 days ago1715541947IN
0x43a6af32...1CD45028C
0 ETH0.000399316.22419884
Claim Rewards198560092024-05-12 19:24:5955 days ago1715541899IN
0x43a6af32...1CD45028C
0 ETH0.000246316.8695901
Withdraw195971592024-04-06 14:03:4792 days ago1712412227IN
0x43a6af32...1CD45028C
0 ETH0.0009052514.11043274
Withdraw195942362024-04-06 4:15:1192 days ago1712376911IN
0x43a6af32...1CD45028C
0 ETH0.0006420410.00775213
Claim Rewards195923882024-04-05 22:03:1192 days ago1712354591IN
0x43a6af32...1CD45028C
0 ETH0.0005851816.32030287
Withdraw195921872024-04-05 21:22:4792 days ago1712352167IN
0x43a6af32...1CD45028C
0 ETH0.0010476916.33061094
Deposit195919192024-04-05 20:29:1192 days ago1712348951IN
0x43a6af32...1CD45028C
0 ETH0.0034820118.73259892
Withdraw195917962024-04-05 20:03:5992 days ago1712347439IN
0x43a6af32...1CD45028C
0 ETH0.0014138122.03744425
Withdraw195912272024-04-05 18:09:5992 days ago1712340599IN
0x43a6af32...1CD45028C
0 ETH0.0037451220.16217864
Set Rewards Rate195905112024-04-05 15:44:4793 days ago1712331887IN
0x43a6af32...1CD45028C
0 ETH0.00059224.80230434
Withdraw195902122024-04-05 14:44:2393 days ago1712328263IN
0x43a6af32...1CD45028C
0 ETH0.002155130.81231732
Withdraw195885972024-04-05 9:17:4793 days ago1712308667IN
0x43a6af32...1CD45028C
0 ETH0.0010668115.25256826
Withdraw195875732024-04-05 5:51:1193 days ago1712296271IN
0x43a6af32...1CD45028C
0 ETH0.0009294713.28906997
Claim Rewards195875682024-04-05 5:50:1193 days ago1712296211IN
0x43a6af32...1CD45028C
0 ETH0.0009159713.92986891
Withdraw195857522024-04-04 23:44:3593 days ago1712274275IN
0x43a6af32...1CD45028C
0 ETH0.0010576415.12157518
Withdraw195857232024-04-04 23:38:4793 days ago1712273927IN
0x43a6af32...1CD45028C
0 ETH0.0025800314.79054274
Deposit195854362024-04-04 22:40:5993 days ago1712270459IN
0x43a6af32...1CD45028C
0 ETH0.002899515.59880096
Withdraw195851192024-04-04 21:37:1193 days ago1712266631IN
0x43a6af32...1CD45028C
0 ETH0.0015138321.64377755
Claim Rewards195851182024-04-04 21:36:5993 days ago1712266619IN
0x43a6af32...1CD45028C
0 ETH0.0014059221.38091145
Withdraw195846212024-04-04 19:57:1193 days ago1712260631IN
0x43a6af32...1CD45028C
0 ETH0.0029719742.49142424
Withdraw195844452024-04-04 19:21:4793 days ago1712258507IN
0x43a6af32...1CD45028C
0 ETH0.0035318150.4955688
Claim Rewards195844372024-04-04 19:20:1193 days ago1712258411IN
0x43a6af32...1CD45028C
0 ETH0.0039299147.43063358
Withdraw195834192024-04-04 15:54:3594 days ago1712246075IN
0x43a6af32...1CD45028C
0 ETH0.0028543440.80962275
Withdraw195828632024-04-04 14:01:2394 days ago1712239283IN
0x43a6af32...1CD45028C
0 ETH0.0021361930.54197658
Withdraw195821402024-04-04 11:35:3594 days ago1712230535IN
0x43a6af32...1CD45028C
0 ETH0.0013897719.87013488
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:
CryptensorStaking

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 5 : CryptensorStaking.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";

interface ICryptensor is IERC20 {
    function mintRewards(address _address, uint _amount) external;
    function burnTokens(address _address, uint _amount) external;
}

contract CryptensorStaking is Ownable, ReentrancyGuard {
    struct Stake {
        uint lastClaim;
        uint amountStaked;
    }

    mapping(address => Stake) public staking;

    bool stakingEnable;

    uint public rewardsRate; // percentage of rewards per day (/ 10e12)

    ICryptensor cryptensor;

    constructor(address _cryptensor) Ownable(msg.sender) {
        cryptensor = ICryptensor(_cryptensor);

        rewardsRate = 8e11;
    }

    function switchStakingEnable() external onlyOwner {
        stakingEnable = !stakingEnable;
    }

    function setRewardsRate(uint _amount) external onlyOwner {
        rewardsRate = _amount;
    }

    function deposit(uint _amount) external nonReentrant {
        require(stakingEnable);
        _claimRewards(); // claim rewards

        cryptensor.burnTokens(msg.sender, _amount); // burn account tokens

        staking[msg.sender].amountStaked += _amount; // add the amount to staked tokens
    }

    function withdraw() external nonReentrant {
        require(stakingEnable);
        require(staking[msg.sender].amountStaked > 0, "No staking");
        _claimRewards(); // claim rewards

        cryptensor.mintRewards(msg.sender, staking[msg.sender].amountStaked); // mint staked tokens

        staking[msg.sender].amountStaked = 0; // reset amount staked
    }

    function claimRewards() external nonReentrant {
        require(stakingEnable);
        require(staking[msg.sender].amountStaked > 0, "No staking");
        _claimRewards();
    }

    function _claimRewards() internal {
        uint rewards = getReward(msg.sender);

        staking[msg.sender].lastClaim = block.timestamp; // reset last claim timestamp
        if (rewards > 0) cryptensor.mintRewards(msg.sender, rewards);
    }

    function staked(address _account) external view returns (uint) {
        return staking[_account].amountStaked;
    }

    function getReward(address _account) public view returns (uint) {
        uint delay = block.timestamp - staking[_account].lastClaim;
        uint effectiveRewardsRate = (rewardsRate * delay) / (1 days);
        uint rewards = (effectiveRewardsRate * staking[_account].amountStaked) /
            10e12;

        return rewards;
    }
}

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

File 4 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 5 of 5 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant NOT_ENTERED = 1;
    uint256 private constant ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_cryptensor","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRewardsRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"staked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"staking","outputs":[{"internalType":"uint256","name":"lastClaim","type":"uint256"},{"internalType":"uint256","name":"amountStaked","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchStakingEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5060405161084338038061084383398101604081905261002f916100e1565b338061005557604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61005e81610091565b5060018055600580546001600160a01b0319166001600160a01b039290921691909117905564ba43b74000600455610111565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100f357600080fd5b81516001600160a01b038116811461010a57600080fd5b9392505050565b610723806101206000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b1461010a57806398807d8414610125578063b6b55f2514610151578063c00007b014610164578063d764b78f14610177578063f2fde38b146101b357600080fd5b8063372500ab146100b95780633ccfd60b146100c3578063523bc7d5146100cb578063715018a6146100e757806374791fb6146100ef578063789ba8e914610102575b600080fd5b6100c16101c6565b005b6100c1610241565b6100d460045481565b6040519081526020015b60405180910390f35b6100c1610341565b6100c16100fd366004610629565b610353565b6100c1610360565b6000546040516001600160a01b0390911681526020016100de565b6100d4610133366004610642565b6001600160a01b031660009081526002602052604090206001015490565b6100c161015f366004610629565b61037c565b6100d4610172366004610642565b610431565b61019e610185366004610642565b6002602052600090815260409020805460019091015482565b604080519283526020830191909152016100de565b6100c16101c1366004610642565b6104bb565b6101ce6104f6565b60035460ff166101dd57600080fd5b3360009081526002602052604090206001015461022e5760405162461bcd60e51b815260206004820152600a6024820152694e6f207374616b696e6760b01b60448201526064015b60405180910390fd5b610236610520565b61023f60018055565b565b6102496104f6565b60035460ff1661025857600080fd5b336000908152600260205260409020600101546102a45760405162461bcd60e51b815260206004820152600a6024820152694e6f207374616b696e6760b01b6044820152606401610225565b6102ac610520565b60055433600081815260026020526040908190206001015490516335106f4960e11b8152600481019290925260248201526001600160a01b0390911690636a20de9290604401600060405180830381600087803b15801561030c57600080fd5b505af1158015610320573d6000803e3d6000fd5b5050336000908152600260205260408120600101555061023f905060018055565b6103496105ac565b61023f60006105d9565b61035b6105ac565b600455565b6103686105ac565b6003805460ff19811660ff90911615179055565b6103846104f6565b60035460ff1661039357600080fd5b61039b610520565b6005546040516306888c6760e11b8152336004820152602481018390526001600160a01b0390911690630d1118ce90604401600060405180830381600087803b1580156103e757600080fd5b505af11580156103fb573d6000803e3d6000fd5b50503360009081526002602052604081206001018054859450909250610422908490610688565b90915550506001805550565b50565b6001600160a01b038116600090815260026020526040812054819061045690426106a1565b90506000620151808260045461046c91906106b4565b61047691906106cb565b6001600160a01b038516600090815260026020526040812060010154919250906509184e72a000906104a890846106b4565b6104b291906106cb565b95945050505050565b6104c36105ac565b6001600160a01b0381166104ed57604051631e4fbdf760e01b815260006004820152602401610225565b61042e816105d9565b60026001540361051957604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b600061052b33610431565b3360009081526002602052604090204290559050801561042e576005546040516335106f4960e11b8152336004820152602481018390526001600160a01b0390911690636a20de9290604401600060405180830381600087803b15801561059157600080fd5b505af11580156105a5573d6000803e3d6000fd5b5050505050565b6000546001600160a01b0316331461023f5760405163118cdaa760e01b8152336004820152602401610225565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561063b57600080fd5b5035919050565b60006020828403121561065457600080fd5b81356001600160a01b038116811461066b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561069b5761069b610672565b92915050565b8181038181111561069b5761069b610672565b808202811582820484141761069b5761069b610672565b6000826106e857634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212209ba46041b01c13df9ad108a9320719181f085acf64e34aab3a3a6e34f21eb0d464736f6c634300081400330000000000000000000000009cc32f63850a3d9a64d613a4fa7b1c7d8993c054

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b1461010a57806398807d8414610125578063b6b55f2514610151578063c00007b014610164578063d764b78f14610177578063f2fde38b146101b357600080fd5b8063372500ab146100b95780633ccfd60b146100c3578063523bc7d5146100cb578063715018a6146100e757806374791fb6146100ef578063789ba8e914610102575b600080fd5b6100c16101c6565b005b6100c1610241565b6100d460045481565b6040519081526020015b60405180910390f35b6100c1610341565b6100c16100fd366004610629565b610353565b6100c1610360565b6000546040516001600160a01b0390911681526020016100de565b6100d4610133366004610642565b6001600160a01b031660009081526002602052604090206001015490565b6100c161015f366004610629565b61037c565b6100d4610172366004610642565b610431565b61019e610185366004610642565b6002602052600090815260409020805460019091015482565b604080519283526020830191909152016100de565b6100c16101c1366004610642565b6104bb565b6101ce6104f6565b60035460ff166101dd57600080fd5b3360009081526002602052604090206001015461022e5760405162461bcd60e51b815260206004820152600a6024820152694e6f207374616b696e6760b01b60448201526064015b60405180910390fd5b610236610520565b61023f60018055565b565b6102496104f6565b60035460ff1661025857600080fd5b336000908152600260205260409020600101546102a45760405162461bcd60e51b815260206004820152600a6024820152694e6f207374616b696e6760b01b6044820152606401610225565b6102ac610520565b60055433600081815260026020526040908190206001015490516335106f4960e11b8152600481019290925260248201526001600160a01b0390911690636a20de9290604401600060405180830381600087803b15801561030c57600080fd5b505af1158015610320573d6000803e3d6000fd5b5050336000908152600260205260408120600101555061023f905060018055565b6103496105ac565b61023f60006105d9565b61035b6105ac565b600455565b6103686105ac565b6003805460ff19811660ff90911615179055565b6103846104f6565b60035460ff1661039357600080fd5b61039b610520565b6005546040516306888c6760e11b8152336004820152602481018390526001600160a01b0390911690630d1118ce90604401600060405180830381600087803b1580156103e757600080fd5b505af11580156103fb573d6000803e3d6000fd5b50503360009081526002602052604081206001018054859450909250610422908490610688565b90915550506001805550565b50565b6001600160a01b038116600090815260026020526040812054819061045690426106a1565b90506000620151808260045461046c91906106b4565b61047691906106cb565b6001600160a01b038516600090815260026020526040812060010154919250906509184e72a000906104a890846106b4565b6104b291906106cb565b95945050505050565b6104c36105ac565b6001600160a01b0381166104ed57604051631e4fbdf760e01b815260006004820152602401610225565b61042e816105d9565b60026001540361051957604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b600061052b33610431565b3360009081526002602052604090204290559050801561042e576005546040516335106f4960e11b8152336004820152602481018390526001600160a01b0390911690636a20de9290604401600060405180830381600087803b15801561059157600080fd5b505af11580156105a5573d6000803e3d6000fd5b5050505050565b6000546001600160a01b0316331461023f5760405163118cdaa760e01b8152336004820152602401610225565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561063b57600080fd5b5035919050565b60006020828403121561065457600080fd5b81356001600160a01b038116811461066b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561069b5761069b610672565b92915050565b8181038181111561069b5761069b610672565b808202811582820484141761069b5761069b610672565b6000826106e857634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212209ba46041b01c13df9ad108a9320719181f085acf64e34aab3a3a6e34f21eb0d464736f6c63430008140033

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

0000000000000000000000009cc32f63850a3d9a64d613a4fa7b1c7d8993c054

-----Decoded View---------------
Arg [0] : _cryptensor (address): 0x9cc32F63850a3D9a64D613a4fa7b1c7D8993C054

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009cc32f63850a3d9a64d613a4fa7b1c7d8993c054


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.