ETH Price: $2,321.78 (+2.15%)

Contract

0xEB74FbFbd9d3b190940384867bc984890b96D202
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
155280262022-09-13 16:50:06735 days ago1663087806  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SturdyInternalAsset

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-14
*/

// SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.0;
pragma abicoder v2;


/**
 * @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 GSN 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;
  }
}

/**
 * @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);
}

/**
 * @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) {
    // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
    // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
    // for accounts without code, i.e. `keccak256('')`
    bytes32 codehash;
    bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
    // solhint-disable-next-line no-inline-assembly
    assembly {
      codehash := extcodehash(account)
    }
    return (codehash != accountHash && codehash != 0x0);
  }

  /**
   * @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');

    // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
    (bool success, ) = recipient.call{value: amount}('');
    require(success, 'Address: unable to send value, recipient may have reverted');
  }
}

contract ERC20 is Context, IERC20 {
  using Address for address;

  mapping(address => uint256) private _balances;

  mapping(address => mapping(address => uint256)) private _allowances;

  uint256 private _totalSupply;

  string internal _name;
  string internal _symbol;
  uint8 private _decimals;

  /**
   * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
   * a default value of 18.
   *
   * To select a different value for {decimals}, use {_setupDecimals}.
   *
   * All three of these values are immutable: they can only be set once during
   * construction.
   */
  constructor(string memory name, string memory symbol) {
    _name = name;
    _symbol = symbol;
    _decimals = 18;
  }

  /**
   * @dev Returns the name of the token.
   */
  function name() public view returns (string memory) {
    return _name;
  }

  /**
   * @dev Returns the symbol of the token, usually a shorter version of the
   * name.
   */
  function symbol() public view returns (string memory) {
    return _symbol;
  }

  /**
   * @dev Returns the number of decimals used to get its user representation.
   * For example, if `decimals` equals `2`, a balance of `505` tokens should
   * be displayed to a user as `5,05` (`505 / 10 ** 2`).
   *
   * Tokens usually opt for a value of 18, imitating the relationship between
   * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
   * called.
   *
   * NOTE: This information is only used for _display_ purposes: it in
   * no way affects any of the arithmetic of the contract, including
   * {IERC20-balanceOf} and {IERC20-transfer}.
   */
  function decimals() public view returns (uint8) {
    return _decimals;
  }

  /**
   * @dev See {IERC20-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev See {IERC20-balanceOf}.
   */
  function balanceOf(address account) public view override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev See {IERC20-transfer}.
   *
   * Requirements:
   *
   * - `recipient` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev See {IERC20-allowance}.
   */
  function allowance(address owner, address spender)
    public
    view
    virtual
    override
    returns (uint256)
  {
    return _allowances[owner][spender];
  }

  /**
   * @dev See {IERC20-approve}.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(address spender, uint256 amount) public virtual override returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }

  /**
   * @dev See {IERC20-transferFrom}.
   *
   * Emits an {Approval} event indicating the updated allowance. This is not
   * required by the EIP. See the note at the beginning of {ERC20};
   *
   * Requirements:
   * - `sender` and `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   * - the caller must have allowance for ``sender``'s tokens of at least
   * `amount`.
   */
  function transferFrom(
    address sender,
    address recipient,
    uint256 amount
  ) public virtual override returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
    return true;
  }

  /**
   * @dev Atomically increases the allowance granted to `spender` by the caller.
   *
   * This is an alternative to {approve} that can be used as a mitigation for
   * problems described in {IERC20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
    return true;
  }

  /**
   * @dev Atomically decreases the allowance granted to `spender` by the caller.
   *
   * This is an alternative to {approve} that can be used as a mitigation for
   * problems described in {IERC20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   * - `spender` must have allowance for the caller of at least
   * `subtractedValue`.
   */
  function decreaseAllowance(address spender, uint256 subtractedValue)
    public
    virtual
    returns (bool)
  {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue);
    return true;
  }

  /**
   * @dev Moves tokens `amount` from `sender` to `recipient`.
   *
   * This is internal function is equivalent to {transfer}, and can be used to
   * e.g. implement automatic token fees, slashing mechanisms, etc.
   *
   * Emits a {Transfer} event.
   *
   * Requirements:
   *
   * - `sender` cannot be the zero address.
   * - `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   */
  function _transfer(
    address sender,
    address recipient,
    uint256 amount
  ) internal virtual {
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');

    _beforeTokenTransfer(sender, recipient, amount);

    _balances[sender] -= amount;
    _balances[recipient] += amount;
    emit Transfer(sender, recipient, amount);
  }

  /** @dev Creates `amount` tokens and assigns them to `account`, increasing
   * the total supply.
   *
   * Emits a {Transfer} event with `from` set to the zero address.
   *
   * Requirements
   *
   * - `to` cannot be the zero address.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: mint to the zero address');

    _beforeTokenTransfer(address(0), account, amount);

    _totalSupply += amount;
    _balances[account] += amount;
    emit Transfer(address(0), account, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the
   * total supply.
   *
   * Emits a {Transfer} event with `to` set to the zero address.
   *
   * Requirements
   *
   * - `account` cannot be the zero address.
   * - `account` must have at least `amount` tokens.
   */
  function _burn(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: burn from the zero address');

    _beforeTokenTransfer(account, address(0), amount);

    _balances[account] -= amount;
    _totalSupply -= amount;
    emit Transfer(account, address(0), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
   *
   * This is internal function is equivalent to `approve`, and can be used to
   * e.g. set automatic allowances for certain subsystems, etc.
   *
   * Emits an {Approval} event.
   *
   * Requirements:
   *
   * - `owner` cannot be the zero address.
   * - `spender` cannot be the zero address.
   */
  function _approve(
    address owner,
    address spender,
    uint256 amount
  ) internal virtual {
    require(owner != address(0), 'ERC20: approve from the zero address');
    require(spender != address(0), 'ERC20: approve to the zero address');

    _allowances[owner][spender] = amount;
    emit Approval(owner, spender, amount);
  }

  /**
   * @dev Sets {decimals} to a value other than the default one of 18.
   *
   * WARNING: This function should only be called from the constructor. Most
   * applications that interact with token contracts will not expect
   * {decimals} to ever change, and may work incorrectly if it does.
   */
  function _setupDecimals(uint8 decimals_) internal {
    _decimals = decimals_;
  }

  /**
   * @dev Hook that is called before any transfer of tokens. This includes
   * minting and burning.
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
   * will be to transferred to `to`.
   * - when `from` is zero, `amount` tokens will be minted for `to`.
   * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
   * - `from` and `to` are never both zero.
   *
   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
   */
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {}
}

contract Ownable is Context {
  address private _owner;

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

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
  constructor() {
    address msgSender = _msgSender();
    _owner = msgSender;
    emit OwnershipTransferred(address(0), msgSender);
  }

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(_owner == _msgSender(), 'Ownable: caller is not the owner');
    _;
  }

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions anymore. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby removing any functionality that is only available to the owner.
   */
  function renounceOwnership() public payable virtual onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = 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 payable virtual onlyOwner {
    require(newOwner != address(0), 'Ownable: new owner is the zero address');
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

/**
 * @notice implementation of the internal asset token contract
 * @author Sturdy
 */
contract SturdyInternalAsset is ERC20, Ownable {
  constructor(
    string memory name,
    string memory symbol,
    uint8 decimals
  ) ERC20(name, symbol) {
    _setupDecimals(decimals);
  }

  /**
   * @dev Function to mint token
   * Caller is only owner which is vault address
   * @param user The user which token is mint
   * @param amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address user, uint256 amount) external payable onlyOwner returns (bool) {
    _mint(user, amount);
    return true;
  }

  /**
   * @dev Function to burn token
   * Caller is only owner which is vault address
   * @param user The user which token is burned
   * @param amount The amount of tokens to burn
   */
  function burn(address user, uint256 amount) external payable onlyOwner {
    _burn(user, amount);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b50604051620010393803806200103983398101604081905262000034916200025e565b8251839083906200004d906003906020850190620000eb565b50805162000063906004906020840190620000eb565b50506005805460ff191660121790555060006200007d3390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506005805460ff191660ff831617905550505062000320565b828054620000f990620002e3565b90600052602060002090601f0160209004810192826200011d576000855562000168565b82601f106200013857805160ff191683800117855562000168565b8280016001018555821562000168579182015b82811115620001685782518255916020019190600101906200014b565b50620001769291506200017a565b5090565b5b808211156200017657600081556001016200017b565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001b957600080fd5b81516001600160401b0380821115620001d657620001d662000191565b604051601f8301601f19908116603f0116810190828211818310171562000201576200020162000191565b816040528381526020925086838588010111156200021e57600080fd5b600091505b8382101562000242578582018301518183018401529082019062000223565b83821115620002545760008385830101525b9695505050505050565b6000806000606084860312156200027457600080fd5b83516001600160401b03808211156200028c57600080fd5b6200029a87838801620001a7565b94506020860151915080821115620002b157600080fd5b50620002c086828701620001a7565b925050604084015160ff81168114620002d857600080fd5b809150509250925092565b600181811c90821680620002f857607f821691505b602082108114156200031a57634e487b7160e01b600052602260045260246000fd5b50919050565b610d0980620003306000396000f3fe6080604052600436106100f35760003560e01c8063715018a61161008a578063a457c2d711610059578063a457c2d714610285578063a9059cbb146102a5578063dd62ed3e146102c5578063f2fde38b1461030b57600080fd5b8063715018a61461021d5780638da5cb5b1461022757806395d89b411461025d5780639dc29fac1461027257600080fd5b8063313ce567116100c6578063313ce5671461019257806339509351146101b457806340c10f19146101d457806370a08231146101e757600080fd5b806306fdde03146100f8578063095ea7b31461012357806318160ddd1461015357806323b872dd14610172575b600080fd5b34801561010457600080fd5b5061010d61031e565b60405161011a9190610af2565b60405180910390f35b34801561012f57600080fd5b5061014361013e366004610b63565b6103b0565b604051901515815260200161011a565b34801561015f57600080fd5b506002545b60405190815260200161011a565b34801561017e57600080fd5b5061014361018d366004610b8d565b6103c6565b34801561019e57600080fd5b5060055460405160ff909116815260200161011a565b3480156101c057600080fd5b506101436101cf366004610b63565b610418565b6101436101e2366004610b63565b61044f565b3480156101f357600080fd5b50610164610202366004610bc9565b6001600160a01b031660009081526020819052604090205490565b610225610495565b005b34801561023357600080fd5b5060055461010090046001600160a01b03166040516001600160a01b03909116815260200161011a565b34801561026957600080fd5b5061010d610515565b610225610280366004610b63565b610524565b34801561029157600080fd5b506101436102a0366004610b63565b610562565b3480156102b157600080fd5b506101436102c0366004610b63565b610599565b3480156102d157600080fd5b506101646102e0366004610beb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610225610319366004610bc9565b6105a6565b60606003805461032d90610c1e565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610c1e565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b60006103bd3384846106a2565b50600192915050565b60006103d38484846107c7565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461040e918691610409908690610c6f565b6106a2565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bd918590610409908690610c86565b6005546000906001600160a01b0361010090910416331461048b5760405162461bcd60e51b815260040161048290610c9e565b60405180910390fd5b6103bd838361092e565b6005546001600160a01b036101009091041633146104c55760405162461bcd60e51b815260040161048290610c9e565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60606004805461032d90610c1e565b6005546001600160a01b036101009091041633146105545760405162461bcd60e51b815260040161048290610c9e565b61055e8282610a0e565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bd918590610409908690610c6f565b60006103bd3384846107c7565b6005546001600160a01b036101009091041633146105d65760405162461bcd60e51b815260040161048290610c9e565b6001600160a01b03811661063b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610482565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166107045760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610482565b6001600160a01b0382166107655760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610482565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661082b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610482565b6001600160a01b03821661088d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610482565b6001600160a01b038316600090815260208190526040812080548392906108b5908490610c6f565b90915550506001600160a01b038216600090815260208190526040812080548392906108e2908490610c86565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107ba91815260200190565b6001600160a01b0382166109845760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610482565b80600260008282546109969190610c86565b90915550506001600160a01b038216600090815260208190526040812080548392906109c3908490610c86565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b038216610a6e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610482565b6001600160a01b03821660009081526020819052604081208054839290610a96908490610c6f565b925050819055508060026000828254610aaf9190610c6f565b90915550506040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610a02565b600060208083528351808285015260005b81811015610b1f57858101830151858201604001528201610b03565b81811115610b31576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b5e57600080fd5b919050565b60008060408385031215610b7657600080fd5b610b7f83610b47565b946020939093013593505050565b600080600060608486031215610ba257600080fd5b610bab84610b47565b9250610bb960208501610b47565b9150604084013590509250925092565b600060208284031215610bdb57600080fd5b610be482610b47565b9392505050565b60008060408385031215610bfe57600080fd5b610c0783610b47565b9150610c1560208401610b47565b90509250929050565b600181811c90821680610c3257607f821691505b60208210811415610c5357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610c8157610c81610c59565b500390565b60008219821115610c9957610c99610c59565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220d2a1c12197fd30bb8fd6229bc16673808b6d33e038afa0b9f43cd784cd93adaf64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000175374757264792054555344465241584250334352562d6600000000000000000000000000000000000000000000000000000000000000000000000000000000116354555344465241584250334352562d66000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100f35760003560e01c8063715018a61161008a578063a457c2d711610059578063a457c2d714610285578063a9059cbb146102a5578063dd62ed3e146102c5578063f2fde38b1461030b57600080fd5b8063715018a61461021d5780638da5cb5b1461022757806395d89b411461025d5780639dc29fac1461027257600080fd5b8063313ce567116100c6578063313ce5671461019257806339509351146101b457806340c10f19146101d457806370a08231146101e757600080fd5b806306fdde03146100f8578063095ea7b31461012357806318160ddd1461015357806323b872dd14610172575b600080fd5b34801561010457600080fd5b5061010d61031e565b60405161011a9190610af2565b60405180910390f35b34801561012f57600080fd5b5061014361013e366004610b63565b6103b0565b604051901515815260200161011a565b34801561015f57600080fd5b506002545b60405190815260200161011a565b34801561017e57600080fd5b5061014361018d366004610b8d565b6103c6565b34801561019e57600080fd5b5060055460405160ff909116815260200161011a565b3480156101c057600080fd5b506101436101cf366004610b63565b610418565b6101436101e2366004610b63565b61044f565b3480156101f357600080fd5b50610164610202366004610bc9565b6001600160a01b031660009081526020819052604090205490565b610225610495565b005b34801561023357600080fd5b5060055461010090046001600160a01b03166040516001600160a01b03909116815260200161011a565b34801561026957600080fd5b5061010d610515565b610225610280366004610b63565b610524565b34801561029157600080fd5b506101436102a0366004610b63565b610562565b3480156102b157600080fd5b506101436102c0366004610b63565b610599565b3480156102d157600080fd5b506101646102e0366004610beb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610225610319366004610bc9565b6105a6565b60606003805461032d90610c1e565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610c1e565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b60006103bd3384846106a2565b50600192915050565b60006103d38484846107c7565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461040e918691610409908690610c6f565b6106a2565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bd918590610409908690610c86565b6005546000906001600160a01b0361010090910416331461048b5760405162461bcd60e51b815260040161048290610c9e565b60405180910390fd5b6103bd838361092e565b6005546001600160a01b036101009091041633146104c55760405162461bcd60e51b815260040161048290610c9e565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60606004805461032d90610c1e565b6005546001600160a01b036101009091041633146105545760405162461bcd60e51b815260040161048290610c9e565b61055e8282610a0e565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bd918590610409908690610c6f565b60006103bd3384846107c7565b6005546001600160a01b036101009091041633146105d65760405162461bcd60e51b815260040161048290610c9e565b6001600160a01b03811661063b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610482565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166107045760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610482565b6001600160a01b0382166107655760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610482565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661082b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610482565b6001600160a01b03821661088d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610482565b6001600160a01b038316600090815260208190526040812080548392906108b5908490610c6f565b90915550506001600160a01b038216600090815260208190526040812080548392906108e2908490610c86565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107ba91815260200190565b6001600160a01b0382166109845760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610482565b80600260008282546109969190610c86565b90915550506001600160a01b038216600090815260208190526040812080548392906109c3908490610c86565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b038216610a6e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610482565b6001600160a01b03821660009081526020819052604081208054839290610a96908490610c6f565b925050819055508060026000828254610aaf9190610c6f565b90915550506040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610a02565b600060208083528351808285015260005b81811015610b1f57858101830151858201604001528201610b03565b81811115610b31576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b5e57600080fd5b919050565b60008060408385031215610b7657600080fd5b610b7f83610b47565b946020939093013593505050565b600080600060608486031215610ba257600080fd5b610bab84610b47565b9250610bb960208501610b47565b9150604084013590509250925092565b600060208284031215610bdb57600080fd5b610be482610b47565b9392505050565b60008060408385031215610bfe57600080fd5b610c0783610b47565b9150610c1560208401610b47565b90509250929050565b600181811c90821680610c3257607f821691505b60208210811415610c5357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610c8157610c81610c59565b500390565b60008219821115610c9957610c99610c59565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220d2a1c12197fd30bb8fd6229bc16673808b6d33e038afa0b9f43cd784cd93adaf64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000175374757264792054555344465241584250334352562d6600000000000000000000000000000000000000000000000000000000000000000000000000000000116354555344465241584250334352562d66000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Sturdy TUSDFRAXBP3CRV-f
Arg [1] : symbol (string): cTUSDFRAXBP3CRV-f
Arg [2] : decimals (uint8): 18

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [4] : 5374757264792054555344465241584250334352562d66000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [6] : 6354555344465241584250334352562d66000000000000000000000000000000


Deployed Bytecode Sourcemap

16595:916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6776:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8768:159;;;;;;;;;;-1:-1:-1;8768:159:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8768:159:0;1053:187:1;7787:94:0;;;;;;;;;;-1:-1:-1;7863:12:0;;7787:94;;;1391:25:1;;;1379:2;1364:18;7787:94:0;1245:177:1;9375:280:0;;;;;;;;;;-1:-1:-1;9375:280:0;;;;;:::i;:::-;;:::i;7653:77::-;;;;;;;;;;-1:-1:-1;7715:9:0;;7653:77;;7715:9;;;;1902:36:1;;1890:2;1875:18;7653:77:0;1760:184:1;10038:205:0;;;;;;;;;;-1:-1:-1;10038:205:0;;;;;:::i;:::-;;:::i;17067:136::-;;;;;;:::i;:::-;;:::i;7936:113::-;;;;;;;;;;-1:-1:-1;7936:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;8025:18:0;8002:7;8025:18;;;;;;;;;;;;7936:113;15966:146;;;:::i;:::-;;15364:73;;;;;;;;;;-1:-1:-1;15425:6:0;;;;;-1:-1:-1;;;;;15425:6:0;15364:73;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;15364:73:0;2140:203:1;6962:81:0;;;;;;;;;;;;;:::i;17405:103::-;;;;;;:::i;:::-;;:::i;10716:233::-;;;;;;;;;;-1:-1:-1;10716:233:0;;;;;:::i;:::-;;:::i;8244:165::-;;;;;;;;;;-1:-1:-1;8244:165:0;;;;;:::i;:::-;;:::i;8464:173::-;;;;;;;;;;-1:-1:-1;8464:173:0;;;;;:::i;:::-;-1:-1:-1;;;;;8604:18:0;;;8578:7;8604:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8464:173;16257:238;;;;;;:::i;:::-;;:::i;6776:77::-;6813:13;6842:5;6835:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6776:77;:::o;8768:159::-;8851:4;8864:39;706:10;8887:7;8896:6;8864:8;:39::i;:::-;-1:-1:-1;8917:4:0;8768:159;;;;:::o;9375:280::-;9501:4;9514:36;9524:6;9532:9;9543:6;9514:9;:36::i;:::-;-1:-1:-1;;;;;9588:19:0;;;;;;:11;:19;;;;;;;;706:10;9588:33;;;;;;;;;9557:74;;9566:6;;9588:42;;9624:6;;9588:42;:::i;:::-;9557:8;:74::i;:::-;-1:-1:-1;9645:4:0;9375:280;;;;;:::o;10038:205::-;706:10;10126:4;10171:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10171:34:0;;;;;;;;;;10126:4;;10139:80;;10162:7;;10171:47;;10208:10;;10171:47;:::i;17067:136::-;15558:6;;17147:4;;-1:-1:-1;;;;;15558:6:0;;;;;706:10;15558:22;15550:67;;;;-1:-1:-1;;;15550:67:0;;;;;;;:::i;:::-;;;;;;;;;17160:19:::1;17166:4;17172:6;17160:5;:19::i;15966:146::-:0;15558:6;;-1:-1:-1;;;;;15558:6:0;;;;;706:10;15558:22;15550:67;;;;-1:-1:-1;;;15550:67:0;;;;;;;:::i;:::-;16061:6:::1;::::0;16040:40:::1;::::0;16077:1:::1;::::0;16061:6:::1;::::0;::::1;-1:-1:-1::0;;;;;16061:6:0::1;::::0;16040:40:::1;::::0;16077:1;;16040:40:::1;16087:6;:19:::0;;-1:-1:-1;;;;;;16087:19:0::1;::::0;;15966:146::o;6962:81::-;7001:13;7030:7;7023:14;;;;;:::i;17405:103::-;15558:6;;-1:-1:-1;;;;;15558:6:0;;;;;706:10;15558:22;15550:67;;;;-1:-1:-1;;;15550:67:0;;;;;;;:::i;:::-;17483:19:::1;17489:4;17495:6;17483:5;:19::i;:::-;17405:103:::0;;:::o;10716:233::-;706:10;10824:4;10872:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10872:34:0;;;;;;;;;;10824:4;;10840:85;;10863:7;;10872:52;;10909:15;;10872:52;:::i;8244:165::-;8330:4;8343:42;706:10;8367:9;8378:6;8343:9;:42::i;16257:238::-;15558:6;;-1:-1:-1;;;;;15558:6:0;;;;;706:10;15558:22;15550:67;;;;-1:-1:-1;;;15550:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16350:22:0;::::1;16342:73;;;::::0;-1:-1:-1;;;16342:73:0;;3956:2:1;16342:73:0::1;::::0;::::1;3938:21:1::0;3995:2;3975:18;;;3968:30;4034:34;4014:18;;;4007:62;-1:-1:-1;;;4085:18:1;;;4078:36;4131:19;;16342:73:0::1;3754:402:1::0;16342:73:0::1;16448:6;::::0;16427:38:::1;::::0;-1:-1:-1;;;;;16427:38:0;;::::1;::::0;16448:6:::1;::::0;::::1;;::::0;16427:38:::1;::::0;;;::::1;16472:6;:17:::0;;-1:-1:-1;;;;;16472:17:0;;::::1;;;-1:-1:-1::0;;;;;;16472:17:0;;::::1;::::0;;;::::1;::::0;;16257:238::o;13468:348::-;-1:-1:-1;;;;;13586:19:0;;13578:68;;;;-1:-1:-1;;;13578:68:0;;4363:2:1;13578:68:0;;;4345:21:1;4402:2;4382:18;;;4375:30;4441:34;4421:18;;;4414:62;-1:-1:-1;;;4492:18:1;;;4485:34;4536:19;;13578:68:0;4161:400:1;13578:68:0;-1:-1:-1;;;;;13661:21:0;;13653:68;;;;-1:-1:-1;;;13653:68:0;;4768:2:1;13653:68:0;;;4750:21:1;4807:2;4787:18;;;4780:30;4846:34;4826:18;;;4819:62;-1:-1:-1;;;4897:18:1;;;4890:32;4939:19;;13653:68:0;4566:398:1;13653:68:0;-1:-1:-1;;;;;13730:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13778:32;;1391:25:1;;;13778:32:0;;1364:18:1;13778:32:0;;;;;;;;13468:348;;;:::o;11409:444::-;-1:-1:-1;;;;;11531:20:0;;11523:70;;;;-1:-1:-1;;;11523:70:0;;5171:2:1;11523:70:0;;;5153:21:1;5210:2;5190:18;;;5183:30;5249:34;5229:18;;;5222:62;-1:-1:-1;;;5300:18:1;;;5293:35;5345:19;;11523:70:0;4969:401:1;11523:70:0;-1:-1:-1;;;;;11608:23:0;;11600:71;;;;-1:-1:-1;;;11600:71:0;;5577:2:1;11600:71:0;;;5559:21:1;5616:2;5596:18;;;5589:30;5655:34;5635:18;;;5628:62;-1:-1:-1;;;5706:18:1;;;5699:33;5749:19;;11600:71:0;5375:399:1;11600:71:0;-1:-1:-1;;;;;11736:17:0;;:9;:17;;;;;;;;;;:27;;11757:6;;11736:9;:27;;11757:6;;11736:27;:::i;:::-;;;;-1:-1:-1;;;;;;;11770:20:0;;:9;:20;;;;;;;;;;:30;;11794:6;;11770:9;:30;;11794:6;;11770:30;:::i;:::-;;;;;;;;11829:9;-1:-1:-1;;;;;11812:35:0;11821:6;-1:-1:-1;;;;;11812:35:0;;11840:6;11812:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;12114:316:0;-1:-1:-1;;;;;12194:21:0;;12186:65;;;;-1:-1:-1;;;12186:65:0;;5981:2:1;12186:65:0;;;5963:21:1;6020:2;6000:18;;;5993:30;6059:33;6039:18;;;6032:61;6110:18;;12186:65:0;5779:355:1;12186:65:0;12334:6;12318:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12347:18:0;;:9;:18;;;;;;;;;;:28;;12369:6;;12347:9;:28;;12369:6;;12347:28;:::i;:::-;;;;-1:-1:-1;;12387:37:0;;1391:25:1;;;-1:-1:-1;;;;;12387:37:0;;;12404:1;;12387:37;;1379:2:1;1364:18;12387:37:0;;;;;;;;12114:316;;:::o;12738:318::-;-1:-1:-1;;;;;12818:21:0;;12810:67;;;;-1:-1:-1;;;12810:67:0;;6341:2:1;12810:67:0;;;6323:21:1;6380:2;6360:18;;;6353:30;6419:34;6399:18;;;6392:62;-1:-1:-1;;;6470:18:1;;;6463:31;6511:19;;12810:67:0;6139:397:1;12810:67:0;-1:-1:-1;;;;;12944:18:0;;:9;:18;;;;;;;;;;:28;;12966:6;;12944:9;:28;;12966:6;;12944:28;:::i;:::-;;;;;;;;12995:6;12979:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13013:37:0;;1391:25:1;;;13039:1:0;;-1:-1:-1;;;;;13013:37:0;;;;;1379:2:1;1364:18;13013:37:0;1245:177:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:127::-;3059:10;3054:3;3050:20;3047:1;3040:31;3090:4;3087:1;3080:15;3114:4;3111:1;3104:15;3130:125;3170:4;3198:1;3195;3192:8;3189:34;;;3203:18;;:::i;:::-;-1:-1:-1;3240:9:1;;3130:125::o;3260:128::-;3300:3;3331:1;3327:6;3324:1;3321:13;3318:39;;;3337:18;;:::i;:::-;-1:-1:-1;3373:9:1;;3260:128::o;3393:356::-;3595:2;3577:21;;;3614:18;;;3607:30;3673:34;3668:2;3653:18;;3646:62;3740:2;3725:18;;3393:356::o

Swarm Source

ipfs://d2a1c12197fd30bb8fd6229bc16673808b6d33e038afa0b9f43cd784cd93adaf

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.