ETH Price: $3,644.74 (-0.41%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer215383552025-01-02 17:43:113 days ago1735839791IN
Neighbourhoods: NHT Token
0 ETH0.0007747914.97735325
Transfer215349012025-01-02 6:09:593 days ago1735798199IN
Neighbourhoods: NHT Token
0 ETH0.0009988721.28391736
Transfer215101282024-12-29 19:10:117 days ago1735499411IN
Neighbourhoods: NHT Token
0 ETH0.000215474.59016708
Transfer214888622024-12-26 19:55:1110 days ago1735242911IN
Neighbourhoods: NHT Token
0 ETH0.000314756.08298368
Transfer214850442024-12-26 7:08:1110 days ago1735196891IN
Neighbourhoods: NHT Token
0 ETH0.000310836.62324558
Transfer214792752024-12-25 11:45:2311 days ago1735127123IN
Neighbourhoods: NHT Token
0 ETH0.000214754.57358796
Transfer214315662024-12-18 19:41:2318 days ago1734550883IN
Neighbourhoods: NHT Token
0 ETH0.0008451918
Transfer214254822024-12-17 23:16:2318 days ago1734477383IN
Neighbourhoods: NHT Token
0 ETH0.0009983619.29921056
Transfer214011722024-12-14 13:52:1122 days ago1734184331IN
Neighbourhoods: NHT Token
0 ETH0.000415748.85854537
Transfer213456522024-12-06 19:49:3530 days ago1733514575IN
Neighbourhoods: NHT Token
0 ETH0.0013326828.38213441
Transfer213391182024-12-05 21:56:1130 days ago1733435771IN
Neighbourhoods: NHT Token
0 ETH0.001158922.40246832
Transfer213391102024-12-05 21:54:3530 days ago1733435675IN
Neighbourhoods: NHT Token
0 ETH0.0008310323.99677244
Transfer213137512024-12-02 8:52:1134 days ago1733129531IN
Neighbourhoods: NHT Token
0 ETH0.0018241638.86916599
Transfer212725142024-11-26 14:27:2340 days ago1732631243IN
Neighbourhoods: NHT Token
0 ETH0.0007820216.66328604
Transfer212694432024-11-26 4:09:3540 days ago1732594175IN
Neighbourhoods: NHT Token
0 ETH0.000321396.84826028
Transfer212682082024-11-26 0:01:1140 days ago1732579271IN
Neighbourhoods: NHT Token
0 ETH0.0005462610.55487517
Transfer212395182024-11-21 23:53:4744 days ago1732233227IN
Neighbourhoods: NHT Token
0 ETH0.0006644212.84376299
Transfer212361532024-11-21 12:38:1145 days ago1732192691IN
Neighbourhoods: NHT Token
0 ETH0.0016626232.13975995
Transfer212270252024-11-20 6:01:1146 days ago1732082471IN
Neighbourhoods: NHT Token
0 ETH0.000274779.20360172
Transfer212209282024-11-19 9:37:5947 days ago1732009079IN
Neighbourhoods: NHT Token
0 ETH0.000422279
Approve212139672024-11-18 10:20:5948 days ago1731925259IN
Neighbourhoods: NHT Token
0 ETH0.0005459811.77385482
Transfer211617552024-11-11 3:29:1155 days ago1731295751IN
Neighbourhoods: NHT Token
0 ETH0.0010776420.83160994
Transfer210993562024-11-02 10:27:2364 days ago1730543243IN
Neighbourhoods: NHT Token
0 ETH0.000122434.10437151
Transfer210628832024-10-28 8:17:2369 days ago1730103443IN
Neighbourhoods: NHT Token
0 ETH0.000278045.92449044
Transfer210201152024-10-22 9:06:2375 days ago1729587983IN
Neighbourhoods: NHT Token
0 ETH0.0004842110.31759533
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:
NHT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : NHT.sol
pragma solidity 0.8.0;

// SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract NHT is ERC20Capped, Ownable {
    constructor(uint256 initial_, uint256 cap_) Ownable() ERC20("Neighbourhoods Token", "NHT") ERC20Capped(cap_) {
        ERC20._mint(msg.sender, initial_);
    }

    function mint(address _to, uint256 _amount) external onlyOwner {
        _mint(_to, _amount);
    }

    function burn(address _from, uint256 _amount) external onlyOwner {
        _burn(_from, _amount);
    }
}

File 2 of 7 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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 4 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initial_","type":"uint256"},{"internalType":"uint256","name":"cap_","type":"uint256"}],"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":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","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":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620013f3380380620013f38339810160408190526200003491620002eb565b604080518082018252601481527f4e65696768626f7572686f6f647320546f6b656e0000000000000000000000006020808301918252835180850190945260038085526213921560ea1b91850191909152825185949262000096929162000245565b508051620000ac90600490602084019062000245565b50505060008111620000db5760405162461bcd60e51b8152600401620000d2906200030f565b60405180910390fd5b608052620000f2620000ec62000111565b62000115565b6200010933836200016760201b620006641760201c565b5050620003e8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001905760405162461bcd60e51b8152600401620000d29062000346565b6200019e6000838362000240565b8060026000828254620001b2919062000386565b90915550506001600160a01b03821660009081526020819052604081208054839290620001e190849062000386565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002269085906200037d565b60405180910390a36200023c6000838362000240565b5050565b505050565b8280546200025390620003ab565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b60008060408385031215620002fe578182fd5b505080516020909101519092909150565b60208082526015908201527f45524332304361707065643a2063617020697320300000000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003a657634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620003c057607f821691505b60208210811415620003e257634e487b7160e01b600052602260045260246000fd5b50919050565b608051610fef6200040460003960006103a70152610fef6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a25780639dc29fac116100715780639dc29fac146101f3578063a457c2d714610206578063a9059cbb14610219578063dd62ed3e1461022c578063f2fde38b1461023f5761010b565b806370a08231146101bb578063715018a6146101ce5780638da5cb5b146101d657806395d89b41146101eb5761010b565b8063313ce567116100de578063313ce56714610176578063355274ea1461018b578063395093511461019357806340c10f19146101a65761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b610118610252565b6040516101259190610b82565b60405180910390f35b61014161013c366004610b3a565b6102e4565b6040516101259190610b77565b610156610301565b6040516101259190610f22565b610141610171366004610aff565b610307565b61017e6103a0565b6040516101259190610f2b565b6101566103a5565b6101416101a1366004610b3a565b6103c9565b6101b96101b4366004610b3a565b61041d565b005b6101566101c9366004610aac565b61046a565b6101b9610489565b6101de6104d4565b6040516101259190610b63565b6101186104e3565b6101b9610201366004610b3a565b6104f2565b610141610214366004610b3a565b61053b565b610141610227366004610b3a565b6105b4565b61015661023a366004610acd565b6105c8565b6101b961024d366004610aac565b6105f3565b60606003805461026190610f68565b80601f016020809104026020016040519081016040528092919081815260200182805461028d90610f68565b80156102da5780601f106102af576101008083540402835291602001916102da565b820191906000526020600020905b8154815290600101906020018083116102bd57829003601f168201915b5050505050905090565b60006102f86102f161072c565b8484610730565b50600192915050565b60025490565b60006103148484846107e4565b6001600160a01b03841660009081526001602052604081208161033561072c565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103815760405162461bcd60e51b815260040161037890610d28565b60405180910390fd5b6103958561038d61072c565b858403610730565b506001949350505050565b601290565b7f000000000000000000000000000000000000000000000000000000000000000090565b60006102f86103d661072c565b8484600160006103e461072c565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104189190610f39565b610730565b61042561072c565b6001600160a01b03166104366104d4565b6001600160a01b03161461045c5760405162461bcd60e51b815260040161037890610d70565b610466828261090e565b5050565b6001600160a01b0381166000908152602081905260409020545b919050565b61049161072c565b6001600160a01b03166104a26104d4565b6001600160a01b0316146104c85760405162461bcd60e51b815260040161037890610d70565b6104d26000610951565b565b6005546001600160a01b031690565b60606004805461026190610f68565b6104fa61072c565b6001600160a01b031661050b6104d4565b6001600160a01b0316146105315760405162461bcd60e51b815260040161037890610d70565b61046682826109a3565b6000806001600061054a61072c565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105965760405162461bcd60e51b815260040161037890610ea6565b6105aa6105a161072c565b85858403610730565b5060019392505050565b60006102f86105c161072c565b84846107e4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105fb61072c565b6001600160a01b031661060c6104d4565b6001600160a01b0316146106325760405162461bcd60e51b815260040161037890610d70565b6001600160a01b0381166106585760405162461bcd60e51b815260040161037890610c5a565b61066181610951565b50565b6001600160a01b03821661068a5760405162461bcd60e51b815260040161037890610eeb565b61069660008383610a90565b80600260008282546106a89190610f39565b90915550506001600160a01b038216600090815260208190526040812080548392906106d5908490610f39565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610718908590610f22565b60405180910390a361046660008383610a90565b3390565b6001600160a01b0383166107565760405162461bcd60e51b815260040161037890610e62565b6001600160a01b03821661077c5760405162461bcd60e51b815260040161037890610ca0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107d7908590610f22565b60405180910390a3505050565b6001600160a01b03831661080a5760405162461bcd60e51b815260040161037890610de6565b6001600160a01b0382166108305760405162461bcd60e51b815260040161037890610bd5565b61083b838383610a90565b6001600160a01b038316600090815260208190526040902054818110156108745760405162461bcd60e51b815260040161037890610ce2565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108ab908490610f39565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108f59190610f22565b60405180910390a3610908848484610a90565b50505050565b6109166103a5565b8161091f610301565b6109299190610f39565b11156109475760405162461bcd60e51b815260040161037890610e2b565b6104668282610664565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166109c95760405162461bcd60e51b815260040161037890610da5565b6109d582600083610a90565b6001600160a01b03821660009081526020819052604090205481811015610a0e5760405162461bcd60e51b815260040161037890610c18565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a3d908490610f51565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a80908690610f22565b60405180910390a3610a90836000845b505050565b80356001600160a01b038116811461048457600080fd5b600060208284031215610abd578081fd5b610ac682610a95565b9392505050565b60008060408385031215610adf578081fd5b610ae883610a95565b9150610af660208401610a95565b90509250929050565b600080600060608486031215610b13578081fd5b610b1c84610a95565b9250610b2a60208501610a95565b9150604084013590509250925092565b60008060408385031215610b4c578182fd5b610b5583610a95565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610bae57858101830151858201604001528201610b92565b81811115610bbf5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610f4c57610f4c610fa3565b500190565b600082821015610f6357610f63610fa3565b500390565b600281046001821680610f7c57607f821691505b60208210811415610f9d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ca8faae0f53ae4cfc4b6f4ef2d7c14ad6aee08c515c738934e6ae06ec5d9de2164736f6c634300080000330000000000000000000000000000000000000000204fce5e3e25026110000000000000000000000000000000000000000000000060ef6b1aba6f072330000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a25780639dc29fac116100715780639dc29fac146101f3578063a457c2d714610206578063a9059cbb14610219578063dd62ed3e1461022c578063f2fde38b1461023f5761010b565b806370a08231146101bb578063715018a6146101ce5780638da5cb5b146101d657806395d89b41146101eb5761010b565b8063313ce567116100de578063313ce56714610176578063355274ea1461018b578063395093511461019357806340c10f19146101a65761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b610118610252565b6040516101259190610b82565b60405180910390f35b61014161013c366004610b3a565b6102e4565b6040516101259190610b77565b610156610301565b6040516101259190610f22565b610141610171366004610aff565b610307565b61017e6103a0565b6040516101259190610f2b565b6101566103a5565b6101416101a1366004610b3a565b6103c9565b6101b96101b4366004610b3a565b61041d565b005b6101566101c9366004610aac565b61046a565b6101b9610489565b6101de6104d4565b6040516101259190610b63565b6101186104e3565b6101b9610201366004610b3a565b6104f2565b610141610214366004610b3a565b61053b565b610141610227366004610b3a565b6105b4565b61015661023a366004610acd565b6105c8565b6101b961024d366004610aac565b6105f3565b60606003805461026190610f68565b80601f016020809104026020016040519081016040528092919081815260200182805461028d90610f68565b80156102da5780601f106102af576101008083540402835291602001916102da565b820191906000526020600020905b8154815290600101906020018083116102bd57829003601f168201915b5050505050905090565b60006102f86102f161072c565b8484610730565b50600192915050565b60025490565b60006103148484846107e4565b6001600160a01b03841660009081526001602052604081208161033561072c565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103815760405162461bcd60e51b815260040161037890610d28565b60405180910390fd5b6103958561038d61072c565b858403610730565b506001949350505050565b601290565b7f000000000000000000000000000000000000000060ef6b1aba6f07233000000090565b60006102f86103d661072c565b8484600160006103e461072c565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104189190610f39565b610730565b61042561072c565b6001600160a01b03166104366104d4565b6001600160a01b03161461045c5760405162461bcd60e51b815260040161037890610d70565b610466828261090e565b5050565b6001600160a01b0381166000908152602081905260409020545b919050565b61049161072c565b6001600160a01b03166104a26104d4565b6001600160a01b0316146104c85760405162461bcd60e51b815260040161037890610d70565b6104d26000610951565b565b6005546001600160a01b031690565b60606004805461026190610f68565b6104fa61072c565b6001600160a01b031661050b6104d4565b6001600160a01b0316146105315760405162461bcd60e51b815260040161037890610d70565b61046682826109a3565b6000806001600061054a61072c565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105965760405162461bcd60e51b815260040161037890610ea6565b6105aa6105a161072c565b85858403610730565b5060019392505050565b60006102f86105c161072c565b84846107e4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105fb61072c565b6001600160a01b031661060c6104d4565b6001600160a01b0316146106325760405162461bcd60e51b815260040161037890610d70565b6001600160a01b0381166106585760405162461bcd60e51b815260040161037890610c5a565b61066181610951565b50565b6001600160a01b03821661068a5760405162461bcd60e51b815260040161037890610eeb565b61069660008383610a90565b80600260008282546106a89190610f39565b90915550506001600160a01b038216600090815260208190526040812080548392906106d5908490610f39565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610718908590610f22565b60405180910390a361046660008383610a90565b3390565b6001600160a01b0383166107565760405162461bcd60e51b815260040161037890610e62565b6001600160a01b03821661077c5760405162461bcd60e51b815260040161037890610ca0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107d7908590610f22565b60405180910390a3505050565b6001600160a01b03831661080a5760405162461bcd60e51b815260040161037890610de6565b6001600160a01b0382166108305760405162461bcd60e51b815260040161037890610bd5565b61083b838383610a90565b6001600160a01b038316600090815260208190526040902054818110156108745760405162461bcd60e51b815260040161037890610ce2565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108ab908490610f39565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108f59190610f22565b60405180910390a3610908848484610a90565b50505050565b6109166103a5565b8161091f610301565b6109299190610f39565b11156109475760405162461bcd60e51b815260040161037890610e2b565b6104668282610664565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166109c95760405162461bcd60e51b815260040161037890610da5565b6109d582600083610a90565b6001600160a01b03821660009081526020819052604090205481811015610a0e5760405162461bcd60e51b815260040161037890610c18565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a3d908490610f51565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a80908690610f22565b60405180910390a3610a90836000845b505050565b80356001600160a01b038116811461048457600080fd5b600060208284031215610abd578081fd5b610ac682610a95565b9392505050565b60008060408385031215610adf578081fd5b610ae883610a95565b9150610af660208401610a95565b90509250929050565b600080600060608486031215610b13578081fd5b610b1c84610a95565b9250610b2a60208501610a95565b9150604084013590509250925092565b60008060408385031215610b4c578182fd5b610b5583610a95565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610bae57858101830151858201604001528201610b92565b81811115610bbf5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610f4c57610f4c610fa3565b500190565b600082821015610f6357610f63610fa3565b500390565b600281046001821680610f7c57607f821691505b60208210811415610f9d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ca8faae0f53ae4cfc4b6f4ef2d7c14ad6aee08c515c738934e6ae06ec5d9de2164736f6c63430008000033

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

0000000000000000000000000000000000000000204fce5e3e25026110000000000000000000000000000000000000000000000060ef6b1aba6f072330000000

-----Decoded View---------------
Arg [0] : initial_ (uint256): 10000000000000000000000000000
Arg [1] : cap_ (uint256): 30000000000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [1] : 000000000000000000000000000000000000000060ef6b1aba6f072330000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Neighbourhoods is a design philosophy for Holochain hApps that helps groups intentionally design and share their specific cultural patterns, centered on our Reputation Interchange.

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.