Token migration announcement. Banana token contract has migrated to a new address.
ERC-20
Old Contract
Overview
Max Total Supply
838,459.543749999999993921 BANANA
Holders
927 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
19.744657337233266985 BANANAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YieldToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-16 */ // SPDX-License-Identifier: NONE pragma solidity 0.6.12; // Part: IKongz interface IKongz { function balanceOG(address _user) external view returns(uint256); } // Part: OpenZeppelin/[email protected]/Address /** * @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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // Part: OpenZeppelin/[email protected]/Context /* * @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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // Part: OpenZeppelin/[email protected]/IERC20 /** * @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); } // Part: OpenZeppelin/[email protected]/SafeMath /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // Part: OpenZeppelin/[email protected]/ERC20 /** * @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 guidelines: functions revert instead * of 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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _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) public { _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()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(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] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 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 { } } // File: YieldToken.sol contract YieldToken is ERC20("Banana", "BANANA") { using SafeMath for uint256; uint256 constant public BASE_RATE = 10 ether; uint256 constant public INITIAL_ISSUANCE = 300 ether; // Tue Mar 18 2031 17:46:47 GMT+0000 uint256 constant public END = 1931622407; mapping(address => uint256) public rewards; mapping(address => uint256) public lastUpdate; IKongz public kongzContract; event RewardPaid(address indexed user, uint256 reward); constructor(address _kongz) public{ kongzContract = IKongz(_kongz); } function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } // called when minting many NFTs // updated_amount = (balanceOG(user) * base_rate * delta / 86400) + amount * initial rate function updateRewardOnMint(address _user, uint256 _amount) external { require(msg.sender == address(kongzContract), "Can't call this"); uint256 time = min(block.timestamp, END); uint256 timerUser = lastUpdate[_user]; if (timerUser > 0) rewards[_user] = rewards[_user].add(kongzContract.balanceOG(_user).mul(BASE_RATE.mul((time.sub(timerUser)))).div(86400) .add(_amount.mul(INITIAL_ISSUANCE))); else rewards[_user] = rewards[_user].add(_amount.mul(INITIAL_ISSUANCE)); lastUpdate[_user] = time; } // called on transfers function updateReward(address _from, address _to, uint256 _tokenId) external { require(msg.sender == address(kongzContract)); if (_tokenId < 1001) { uint256 time = min(block.timestamp, END); uint256 timerFrom = lastUpdate[_from]; if (timerFrom > 0) rewards[_from] += kongzContract.balanceOG(_from).mul(BASE_RATE.mul((time.sub(timerFrom)))).div(86400); if (timerFrom != END) lastUpdate[_from] = time; if (_to != address(0)) { uint256 timerTo = lastUpdate[_to]; if (timerTo > 0) rewards[_to] += kongzContract.balanceOG(_to).mul(BASE_RATE.mul((time.sub(timerTo)))).div(86400); if (timerTo != END) lastUpdate[_to] = time; } } } function getReward(address _to) external { require(msg.sender == address(kongzContract)); uint256 reward = rewards[_to]; if (reward > 0) { rewards[_to] = 0; _mint(_to, reward); emit RewardPaid(_to, reward); } } function burn(address _from, uint256 _amount) external { require(msg.sender == address(kongzContract)); _burn(_from, _amount); } function getTotalClaimable(address _user) external view returns(uint256) { uint256 time = min(block.timestamp, END); uint256 pending = kongzContract.balanceOG(_user).mul(BASE_RATE.mul((time.sub(lastUpdate[_user])))).div(86400); return rewards[_user] + pending; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_kongz","type":"address"}],"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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","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":[],"name":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_ISSUANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"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":"_to","type":"address"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"kongzContract","outputs":[{"internalType":"contract IKongz","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateRewardOnMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200164d3803806200164d833981810160405260208110156200003757600080fd5b505160408051808201825260068082526542616e616e6160d01b602083810191825284518086019095529184526542414e414e4160d01b9184019190915281519192916200008891600391620000d5565b5080516200009e906004906020840190620000d5565b50506005805460ff1916601217905550600880546001600160a01b039092166001600160a01b031990921691909117905562000171565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011857805160ff191683800117855562000148565b8280016001018555821562000148579182015b82811115620001485782518255916020019190600101906200012b565b50620001569291506200015a565b5090565b5b808211156200015657600081556001016200015b565b6114cc80620001816000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb146103dc578063c00007b014610408578063cb03fb1e1461042e578063cc240c0114610454578063dd62ed3e14610480578063efe7a504146104ae57610142565b806370a0823114610332578063785c98721461035857806395d89b411461037c5780639dc29fac14610384578063a457c2d7146103b057610142565b8063267e8ab61161010a578063267e8ab61461027a5780632c8e8dfa146102a0578063313ce567146102d857806339509351146102f657806341910f901461032257806344a6b86c1461032a57610142565b806306fdde03146101475780630700037d146101c4578063095ea7b3146101fc57806318160ddd1461023c57806323b872dd14610244575b600080fd5b61014f6104b6565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ea600480360360208110156101da57600080fd5b50356001600160a01b031661054c565b60408051918252519081900360200190f35b6102286004803603604081101561021257600080fd5b506001600160a01b03813516906020013561055e565b604080519115158252519081900360200190f35b6101ea61057c565b6102286004803603606081101561025a57600080fd5b506001600160a01b03813581169160208101359091169060400135610582565b6101ea6004803603602081101561029057600080fd5b50356001600160a01b0316610609565b6102d6600480360360608110156102b657600080fd5b506001600160a01b0381358116916020810135909116906040013561070a565b005b6102e061089e565b6040805160ff9092168252519081900360200190f35b6102286004803603604081101561030c57600080fd5b506001600160a01b0381351690602001356108a7565b6101ea6108f5565b6101ea610901565b6101ea6004803603602081101561034857600080fd5b50356001600160a01b031661090e565b610360610929565b604080516001600160a01b039092168252519081900360200190f35b61014f610938565b6102d66004803603604081101561039a57600080fd5b506001600160a01b038135169060200135610999565b610228600480360360408110156103c657600080fd5b506001600160a01b0381351690602001356109be565b610228600480360360408110156103f257600080fd5b506001600160a01b038135169060200135610a26565b6102d66004803603602081101561041e57600080fd5b50356001600160a01b0316610a3a565b6101ea6004803603602081101561044457600080fd5b50356001600160a01b0316610ad6565b6102d66004803603604081101561046a57600080fd5b506001600160a01b038135169060200135610ae8565b6101ea6004803603604081101561049657600080fd5b506001600160a01b0381358116916020013516610c7c565b6101ea610ca7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b5050505050905090565b60066020526000908152604090205481565b600061057261056b610caf565b8484610cb3565b5060015b92915050565b60025490565b600061058f848484610d9f565b6105ff8461059b610caf565b6105fa856040518060600160405280602881526020016113e0602891396001600160a01b038a166000908152600160205260408120906105d9610caf565b6001600160a01b031681526020810191909152604001600020549190610efa565b610cb3565b5060019392505050565b60008061061a426373223807610f91565b6001600160a01b038416600090815260076020526040812054919250906106e79062015180906106e19061066290610653908790610fa9565b678ac7230489e8000090610feb565b600854604080516338712d8d60e01b81526001600160a01b038b81166004830152915191909216916338712d8d916024808301926020929190829003018186803b1580156106af57600080fd5b505afa1580156106c3573d6000803e3d6000fd5b505050506040513d60208110156106d957600080fd5b505190610feb565b90611044565b6001600160a01b0385166000908152600660205260409020540192505050919050565b6008546001600160a01b0316331461072157600080fd5b6103e981101561089957600061073b426373223807610f91565b6001600160a01b03851660009081526007602052604090205490915080156107e1576107c1620151806106e16107746106538686610fa9565b600854604080516338712d8d60e01b81526001600160a01b038c81166004830152915191909216916338712d8d916024808301926020929190829003018186803b1580156106af57600080fd5b6001600160a01b0386166000908152600660205260409020805490910190555b63732238078114610808576001600160a01b03851660009081526007602052604090208290555b6001600160a01b03841615610896576001600160a01b038416600090815260076020526040902054801561086d5761084d620151806106e16107746106538786610fa9565b6001600160a01b0386166000908152600660205260409020805490910190555b63732238078114610894576001600160a01b03851660009081526007602052604090208390555b505b50505b505050565b60055460ff1690565b60006105726108b4610caf565b846105fa85600160006108c5610caf565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611086565b678ac7230489e8000081565b681043561a882930000081565b6001600160a01b031660009081526020819052604090205490565b6008546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105425780601f1061051757610100808354040283529160200191610542565b6008546001600160a01b031633146109b057600080fd5b6109ba82826110e0565b5050565b60006105726109cb610caf565b846105fa8560405180606001604052806025815260200161147260259139600160006109f5610caf565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610efa565b6000610572610a33610caf565b8484610d9f565b6008546001600160a01b03163314610a5157600080fd5b6001600160a01b03811660009081526006602052604090205480156109ba576001600160a01b038216600090815260066020526040812055610a9382826111dc565b6040805182815290516001600160a01b038416917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25050565b60076020526000908152604090205481565b6008546001600160a01b03163314610b39576040805162461bcd60e51b815260206004820152600f60248201526e43616e27742063616c6c207468697360881b604482015290519081900360640190fd5b6000610b49426373223807610f91565b6001600160a01b0384166000908152600760205260409020549091508015610c2b57610c0d610bee610b8485681043561a8829300000610feb565b610be8620151806106e1610b9b6106538989610fa9565b600854604080516338712d8d60e01b81526001600160a01b038e81166004830152915191909216916338712d8d916024808301926020929190829003018186803b1580156106af57600080fd5b90611086565b6001600160a01b03861660009081526006602052604090205490611086565b6001600160a01b038516600090815260066020526040902055610c5b565b610c41610bee84681043561a8829300000610feb565b6001600160a01b0385166000908152600660205260409020555b506001600160a01b0390921660009081526007602052604090209190915550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b637322380781565b3390565b6001600160a01b038316610cf85760405162461bcd60e51b815260040180806020018281038252602481526020018061144e6024913960400191505060405180910390fd5b6001600160a01b038216610d3d5760405162461bcd60e51b81526004018080602001828103825260228152602001806113776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610de45760405162461bcd60e51b81526004018080602001828103825260258152602001806114296025913960400191505060405180910390fd5b6001600160a01b038216610e295760405162461bcd60e51b81526004018080602001828103825260238152602001806113326023913960400191505060405180910390fd5b610e34838383610899565b610e7181604051806060016040528060268152602001611399602691396001600160a01b0386166000908152602081905260409020549190610efa565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ea09082611086565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610f895760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f4e578181015183820152602001610f36565b50505050905090810190601f168015610f7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818310610fa05781610fa2565b825b9392505050565b6000610fa283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610efa565b600082610ffa57506000610576565b8282028284828161100757fe5b0414610fa25760405162461bcd60e51b81526004018080602001828103825260218152602001806113bf6021913960400191505060405180910390fd5b6000610fa283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506112cc565b600082820183811015610fa2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166111255760405162461bcd60e51b81526004018080602001828103825260218152602001806114086021913960400191505060405180910390fd5b61113182600083610899565b61116e81604051806060016040528060228152602001611355602291396001600160a01b0385166000908152602081905260409020549190610efa565b6001600160a01b0383166000908152602081905260409020556002546111949082610fa9565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216611237576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61124360008383610899565b6002546112509082611086565b6002556001600160a01b0382166000908152602081905260409020546112769082611086565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818361131b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f4e578181015183820152602001610f36565b50600083858161132757fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220315931216554430282dbfdd80cbf483d48fdcdbe63bb8f19b336bea0adb9728264736f6c634300060c003300000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb146103dc578063c00007b014610408578063cb03fb1e1461042e578063cc240c0114610454578063dd62ed3e14610480578063efe7a504146104ae57610142565b806370a0823114610332578063785c98721461035857806395d89b411461037c5780639dc29fac14610384578063a457c2d7146103b057610142565b8063267e8ab61161010a578063267e8ab61461027a5780632c8e8dfa146102a0578063313ce567146102d857806339509351146102f657806341910f901461032257806344a6b86c1461032a57610142565b806306fdde03146101475780630700037d146101c4578063095ea7b3146101fc57806318160ddd1461023c57806323b872dd14610244575b600080fd5b61014f6104b6565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ea600480360360208110156101da57600080fd5b50356001600160a01b031661054c565b60408051918252519081900360200190f35b6102286004803603604081101561021257600080fd5b506001600160a01b03813516906020013561055e565b604080519115158252519081900360200190f35b6101ea61057c565b6102286004803603606081101561025a57600080fd5b506001600160a01b03813581169160208101359091169060400135610582565b6101ea6004803603602081101561029057600080fd5b50356001600160a01b0316610609565b6102d6600480360360608110156102b657600080fd5b506001600160a01b0381358116916020810135909116906040013561070a565b005b6102e061089e565b6040805160ff9092168252519081900360200190f35b6102286004803603604081101561030c57600080fd5b506001600160a01b0381351690602001356108a7565b6101ea6108f5565b6101ea610901565b6101ea6004803603602081101561034857600080fd5b50356001600160a01b031661090e565b610360610929565b604080516001600160a01b039092168252519081900360200190f35b61014f610938565b6102d66004803603604081101561039a57600080fd5b506001600160a01b038135169060200135610999565b610228600480360360408110156103c657600080fd5b506001600160a01b0381351690602001356109be565b610228600480360360408110156103f257600080fd5b506001600160a01b038135169060200135610a26565b6102d66004803603602081101561041e57600080fd5b50356001600160a01b0316610a3a565b6101ea6004803603602081101561044457600080fd5b50356001600160a01b0316610ad6565b6102d66004803603604081101561046a57600080fd5b506001600160a01b038135169060200135610ae8565b6101ea6004803603604081101561049657600080fd5b506001600160a01b0381358116916020013516610c7c565b6101ea610ca7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b5050505050905090565b60066020526000908152604090205481565b600061057261056b610caf565b8484610cb3565b5060015b92915050565b60025490565b600061058f848484610d9f565b6105ff8461059b610caf565b6105fa856040518060600160405280602881526020016113e0602891396001600160a01b038a166000908152600160205260408120906105d9610caf565b6001600160a01b031681526020810191909152604001600020549190610efa565b610cb3565b5060019392505050565b60008061061a426373223807610f91565b6001600160a01b038416600090815260076020526040812054919250906106e79062015180906106e19061066290610653908790610fa9565b678ac7230489e8000090610feb565b600854604080516338712d8d60e01b81526001600160a01b038b81166004830152915191909216916338712d8d916024808301926020929190829003018186803b1580156106af57600080fd5b505afa1580156106c3573d6000803e3d6000fd5b505050506040513d60208110156106d957600080fd5b505190610feb565b90611044565b6001600160a01b0385166000908152600660205260409020540192505050919050565b6008546001600160a01b0316331461072157600080fd5b6103e981101561089957600061073b426373223807610f91565b6001600160a01b03851660009081526007602052604090205490915080156107e1576107c1620151806106e16107746106538686610fa9565b600854604080516338712d8d60e01b81526001600160a01b038c81166004830152915191909216916338712d8d916024808301926020929190829003018186803b1580156106af57600080fd5b6001600160a01b0386166000908152600660205260409020805490910190555b63732238078114610808576001600160a01b03851660009081526007602052604090208290555b6001600160a01b03841615610896576001600160a01b038416600090815260076020526040902054801561086d5761084d620151806106e16107746106538786610fa9565b6001600160a01b0386166000908152600660205260409020805490910190555b63732238078114610894576001600160a01b03851660009081526007602052604090208390555b505b50505b505050565b60055460ff1690565b60006105726108b4610caf565b846105fa85600160006108c5610caf565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611086565b678ac7230489e8000081565b681043561a882930000081565b6001600160a01b031660009081526020819052604090205490565b6008546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105425780601f1061051757610100808354040283529160200191610542565b6008546001600160a01b031633146109b057600080fd5b6109ba82826110e0565b5050565b60006105726109cb610caf565b846105fa8560405180606001604052806025815260200161147260259139600160006109f5610caf565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610efa565b6000610572610a33610caf565b8484610d9f565b6008546001600160a01b03163314610a5157600080fd5b6001600160a01b03811660009081526006602052604090205480156109ba576001600160a01b038216600090815260066020526040812055610a9382826111dc565b6040805182815290516001600160a01b038416917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25050565b60076020526000908152604090205481565b6008546001600160a01b03163314610b39576040805162461bcd60e51b815260206004820152600f60248201526e43616e27742063616c6c207468697360881b604482015290519081900360640190fd5b6000610b49426373223807610f91565b6001600160a01b0384166000908152600760205260409020549091508015610c2b57610c0d610bee610b8485681043561a8829300000610feb565b610be8620151806106e1610b9b6106538989610fa9565b600854604080516338712d8d60e01b81526001600160a01b038e81166004830152915191909216916338712d8d916024808301926020929190829003018186803b1580156106af57600080fd5b90611086565b6001600160a01b03861660009081526006602052604090205490611086565b6001600160a01b038516600090815260066020526040902055610c5b565b610c41610bee84681043561a8829300000610feb565b6001600160a01b0385166000908152600660205260409020555b506001600160a01b0390921660009081526007602052604090209190915550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b637322380781565b3390565b6001600160a01b038316610cf85760405162461bcd60e51b815260040180806020018281038252602481526020018061144e6024913960400191505060405180910390fd5b6001600160a01b038216610d3d5760405162461bcd60e51b81526004018080602001828103825260228152602001806113776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610de45760405162461bcd60e51b81526004018080602001828103825260258152602001806114296025913960400191505060405180910390fd5b6001600160a01b038216610e295760405162461bcd60e51b81526004018080602001828103825260238152602001806113326023913960400191505060405180910390fd5b610e34838383610899565b610e7181604051806060016040528060268152602001611399602691396001600160a01b0386166000908152602081905260409020549190610efa565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ea09082611086565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610f895760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f4e578181015183820152602001610f36565b50505050905090810190601f168015610f7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818310610fa05781610fa2565b825b9392505050565b6000610fa283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610efa565b600082610ffa57506000610576565b8282028284828161100757fe5b0414610fa25760405162461bcd60e51b81526004018080602001828103825260218152602001806113bf6021913960400191505060405180910390fd5b6000610fa283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506112cc565b600082820183811015610fa2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166111255760405162461bcd60e51b81526004018080602001828103825260218152602001806114086021913960400191505060405180910390fd5b61113182600083610899565b61116e81604051806060016040528060228152602001611355602291396001600160a01b0385166000908152602081905260409020549190610efa565b6001600160a01b0383166000908152602081905260409020556002546111949082610fa9565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216611237576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61124360008383610899565b6002546112509082611086565b6002556001600160a01b0382166000908152602081905260409020546112769082611086565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818361131b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f4e578181015183820152602001610f36565b50600083858161132757fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220315931216554430282dbfdd80cbf483d48fdcdbe63bb8f19b336bea0adb9728264736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37
-----Decoded View---------------
Arg [0] : _kongz (address): 0x57a204AA1042f6E66DD7730813f4024114d74f37
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.