Overview
ETH Balance
0 ETH
ETH Value
$0.00Latest 25 from a total of 25 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18967641 | 8 days ago | IN | 0 ETH | 0.00000426 | ||||
Approve | 18967500 | 8 days ago | IN | 0 ETH | 0.00000235 | ||||
Approve | 18446004 | 28 days ago | IN | 0 ETH | 0.00000436 | ||||
Approve | 18339745 | 33 days ago | IN | 0 ETH | 0.00000567 | ||||
Approve | 18335032 | 33 days ago | IN | 0 ETH | 0.00000063 | ||||
Approve | 18186196 | 38 days ago | IN | 0 ETH | 0.00000317 | ||||
Transfer | 18104529 | 42 days ago | IN | 0 ETH | 0.0000002 | ||||
Approve | 18073795 | 43 days ago | IN | 0 ETH | 0.00000555 | ||||
Approve | 18073492 | 43 days ago | IN | 0 ETH | 0.00000687 | ||||
Approve | 17708888 | 58 days ago | IN | 0 ETH | 0.00000452 | ||||
Approve | 17708888 | 58 days ago | IN | 0 ETH | 0.00000452 | ||||
Approve | 17708888 | 58 days ago | IN | 0 ETH | 0.00000452 | ||||
Approve | 17708555 | 58 days ago | IN | 0 ETH | 0.00000433 | ||||
Approve | 17708521 | 58 days ago | IN | 0 ETH | 0.0000042 | ||||
Approve | 17708521 | 58 days ago | IN | 0 ETH | 0.0000042 | ||||
Approve | 17626366 | 61 days ago | IN | 0 ETH | 0.0000123 | ||||
Approve | 17625623 | 61 days ago | IN | 0 ETH | 0.00000719 | ||||
Approve | 17603812 | 62 days ago | IN | 0 ETH | 0.00001694 | ||||
Approve | 17603534 | 62 days ago | IN | 0 ETH | 0.00001563 | ||||
Approve | 17546599 | 64 days ago | IN | 0 ETH | 0.00001099 | ||||
Approve | 17546252 | 64 days ago | IN | 0 ETH | 0.00001123 | ||||
Approve | 17546188 | 64 days ago | IN | 0 ETH | 0.00001174 | ||||
Approve | 17332353 | 73 days ago | IN | 0 ETH | 0.00000141 | ||||
Approve | 17221731 | 77 days ago | IN | 0 ETH | 0.00000371 | ||||
Approve | 17083545 | 83 days ago | IN | 0 ETH | 0.00000231 |
Loading...
Loading
Contract Name:
PermitableERC20
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract PermitableERC20 is Ownable, ERC20 { address public constant PERMIT2 = 0x000000000022D473030F116dDEE9F6B43aC78BA3; string private _name; string private _symbol; event NameChanged(string newName, address by); event SymbolChanged(string newSymbol, address by); event Mint(address receiver, uint256 amount, address by); constructor( string memory _tempName, string memory _tempSymbol ) ERC20(_tempName, _tempSymbol) { _name = _tempName; _symbol = _tempSymbol; } function setName(string memory _newName) public onlyOwner { _name = _newName; emit NameChanged(_newName, msg.sender); } function setSymbol(string memory _newSymbol) public onlyOwner { _symbol = _newSymbol; emit SymbolChanged(_newSymbol, msg.sender); } function mint(address _receiver, uint256 _amount) public onlyOwner { _mint(_receiver, _amount); emit Mint(_receiver, _amount, msg.sender); } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function burnBurned() public { address burned = address(1); _burn(burned, balanceOf(burned)); } /// @notice The permit2 contract has full approval by default. If the approval is revoked, it can still be manually approved. function allowance( address owner, address spender ) public view override returns (uint256) { if (spender == PERMIT2) return type(uint256).max; return super.allowance(owner, spender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tempName","type":"string"},{"internalType":"string","name":"_tempSymbol","type":"string"}],"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":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"by","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newName","type":"string"},{"indexed":false,"internalType":"address","name":"by","type":"address"}],"name":"NameChanged","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":false,"internalType":"string","name":"newSymbol","type":"string"},{"indexed":false,"internalType":"address","name":"by","type":"address"}],"name":"SymbolChanged","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":"PERMIT2","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"burnBurned","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":"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":"_receiver","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":[{"internalType":"string","name":"_newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newSymbol","type":"string"}],"name":"setSymbol","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002349380380620023498339818101604052810190620000379190620002b5565b8181620000596200004d620000c760201b60201c565b620000cf60201b60201c565b81600490805190602001906200007192919062000193565b5080600590805190602001906200008a92919062000193565b5050508160069080519060200190620000a592919062000193565b508060079080519060200190620000be92919062000193565b50505062000459565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001a190620003c5565b90600052602060002090601f016020900481019282620001c5576000855562000211565b82601f10620001e057805160ff191683800117855562000211565b8280016001018555821562000211579182015b8281111562000210578251825591602001919060010190620001f3565b5b50905062000220919062000224565b5090565b5b808211156200023f57600081600090555060010162000225565b5090565b60006200025a62000254846200035c565b62000328565b9050828152602081018484840111156200027357600080fd5b620002808482856200038f565b509392505050565b600082601f8301126200029a57600080fd5b8151620002ac84826020860162000243565b91505092915050565b60008060408385031215620002c957600080fd5b600083015167ffffffffffffffff811115620002e457600080fd5b620002f28582860162000288565b925050602083015167ffffffffffffffff8111156200031057600080fd5b6200031e8582860162000288565b9150509250929050565b6000604051905081810181811067ffffffffffffffff821117156200035257620003516200042a565b5b8060405250919050565b600067ffffffffffffffff8211156200037a57620003796200042a565b5b601f19601f8301169050602081019050919050565b60005b83811015620003af57808201518184015260208101905062000392565b83811115620003bf576000848401525b50505050565b60006002820490506001821680620003de57607f821691505b60208210811415620003f557620003f4620003fb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ee080620004696000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb146102fa578063b84c82461461032a578063c47f002714610346578063dd62ed3e14610362578063f2fde38b1461039257610121565b8063715018a61461027a578063730f5240146102845780638da5cb5b1461028e57806395d89b41146102ac578063a457c2d7146102ca57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806340c10f19146102105780636afdd8501461022c57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103ae565b60405161013b9190611a3a565b60405180910390f35b61015e60048036038101906101599190611485565b610440565b60405161016b9190611a1f565b60405180910390f35b61017c610463565b6040516101899190611c0c565b60405180910390f35b6101ac60048036038101906101a79190611436565b61046d565b6040516101b99190611a1f565b60405180910390f35b6101ca61049c565b6040516101d79190611c27565b60405180910390f35b6101fa60048036038101906101f59190611485565b6104a5565b6040516102079190611a1f565b60405180910390f35b61022a60048036038101906102259190611485565b6104dc565b005b61023461052d565b60405161024191906119cd565b60405180910390f35b610264600480360381019061025f91906113d1565b610540565b6040516102719190611c0c565b60405180910390f35b610282610589565b005b61028c61059d565b005b6102966105b8565b6040516102a391906119cd565b60405180910390f35b6102b46105e1565b6040516102c19190611a3a565b60405180910390f35b6102e460048036038101906102df9190611485565b610673565b6040516102f19190611a1f565b60405180910390f35b610314600480360381019061030f9190611485565b6106ea565b6040516103219190611a1f565b60405180910390f35b610344600480360381019061033f91906114c1565b61070d565b005b610360600480360381019061035b91906114c1565b610768565b005b61037c600480360381019061037791906113fa565b6107c3565b6040516103899190611c0c565b60405180910390f35b6103ac60048036038101906103a791906113d1565b610843565b005b6060600680546103bd90611dac565b80601f01602080910402602001604051908101604052809291908181526020018280546103e990611dac565b80156104365780601f1061040b57610100808354040283529160200191610436565b820191906000526020600020905b81548152906001019060200180831161041957829003601f168201915b5050505050905090565b60008061044b6108c7565b90506104588185856108cf565b600191505092915050565b6000600354905090565b6000806104786108c7565b9050610485858285610a9a565b610490858585610b26565b60019150509392505050565b60006012905090565b6000806104b06108c7565b90506104d18185856104c285896107c3565b6104cc9190611cbf565b6108cf565b600191505092915050565b6104e4610da1565b6104ee8282610e1f565b7fbcad3d7d3dfccb90d49c6063bf70f828901fefc88937d90af74e58e6e55bc39d828233604051610521939291906119e8565b60405180910390a15050565b6e22d473030f116ddee9f6b43ac78ba381565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610591610da1565b61059b6000610f77565b565b6000600190506105b5816105b083610540565b61103b565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105f090611dac565b80601f016020809104026020016040519081016040528092919081815260200182805461061c90611dac565b80156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b5050505050905090565b60008061067e6108c7565b9050600061068c82866107c3565b9050838110156106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c890611bcc565b60405180910390fd5b6106de82868684036108cf565b60019250505092915050565b6000806106f56108c7565b9050610702818585610b26565b600191505092915050565b610715610da1565b806007908051906020019061072b92919061129c565b507f653270c8338e84172b2847363c8c0de7a9bf4a957ee465b74a13aa6897dfa98b813360405161075d929190611a5c565b60405180910390a150565b610770610da1565b806006908051906020019061078692919061129c565b507f1e3652b21ef1bd2c76130610ad0be2b8ab01fbea80964c84c54473bf090dc8a481336040516107b8929190611a5c565b60405180910390a150565b60006e22d473030f116ddee9f6b43ac78ba373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610830577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905061083d565b61083a838361120b565b90505b92915050565b61084b610da1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b290611acc565b60405180910390fd5b6108c481610f77565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690611bac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690611aec565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a8d9190611c0c565b60405180910390a3505050565b6000610aa684846107c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b205781811015610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611b0c565b60405180910390fd5b610b1f84848484036108cf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90611b8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90611a8c565b60405180910390fd5b610c11838383611292565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90611b2c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d889190611c0c565b60405180910390a3610d9b848484611297565b50505050565b610da96108c7565b73ffffffffffffffffffffffffffffffffffffffff16610dc76105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490611b4c565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611bec565b60405180910390fd5b610e9b60008383611292565b8060036000828254610ead9190611cbf565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f5f9190611c0c565b60405180910390a3610f7360008383611297565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290611b6c565b60405180910390fd5b6110b782600083611292565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590611aac565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f29190611c0c565b60405180910390a361120683600084611297565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b505050565b8280546112a890611dac565b90600052602060002090601f0160209004810192826112ca5760008555611311565b82601f106112e357805160ff1916838001178555611311565b82800160010185558215611311579182015b828111156113105782518255916020019190600101906112f5565b5b50905061131e9190611322565b5090565b5b8082111561133b576000816000905550600101611323565b5090565b600061135261134d84611c73565b611c42565b90508281526020810184848401111561136a57600080fd5b611375848285611d6a565b509392505050565b60008135905061138c81611e7c565b92915050565b600082601f8301126113a357600080fd5b81356113b384826020860161133f565b91505092915050565b6000813590506113cb81611e93565b92915050565b6000602082840312156113e357600080fd5b60006113f18482850161137d565b91505092915050565b6000806040838503121561140d57600080fd5b600061141b8582860161137d565b925050602061142c8582860161137d565b9150509250929050565b60008060006060848603121561144b57600080fd5b60006114598682870161137d565b935050602061146a8682870161137d565b925050604061147b868287016113bc565b9150509250925092565b6000806040838503121561149857600080fd5b60006114a68582860161137d565b92505060206114b7858286016113bc565b9150509250929050565b6000602082840312156114d357600080fd5b600082013567ffffffffffffffff8111156114ed57600080fd5b6114f984828501611392565b91505092915050565b61150b81611d15565b82525050565b61151a81611d27565b82525050565b600061152b82611ca3565b6115358185611cae565b9350611545818560208601611d79565b61154e81611e6b565b840191505092915050565b6000611566602383611cae565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115cc602283611cae565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611632602683611cae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611698602283611cae565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116fe601d83611cae565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061173e602683611cae565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117a4602083611cae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006117e4602183611cae565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061184a602583611cae565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118b0602483611cae565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611916602583611cae565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061197c601f83611cae565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6119b881611d53565b82525050565b6119c781611d5d565b82525050565b60006020820190506119e26000830184611502565b92915050565b60006060820190506119fd6000830186611502565b611a0a60208301856119af565b611a176040830184611502565b949350505050565b6000602082019050611a346000830184611511565b92915050565b60006020820190508181036000830152611a548184611520565b905092915050565b60006040820190508181036000830152611a768185611520565b9050611a856020830184611502565b9392505050565b60006020820190508181036000830152611aa581611559565b9050919050565b60006020820190508181036000830152611ac5816115bf565b9050919050565b60006020820190508181036000830152611ae581611625565b9050919050565b60006020820190508181036000830152611b058161168b565b9050919050565b60006020820190508181036000830152611b25816116f1565b9050919050565b60006020820190508181036000830152611b4581611731565b9050919050565b60006020820190508181036000830152611b6581611797565b9050919050565b60006020820190508181036000830152611b85816117d7565b9050919050565b60006020820190508181036000830152611ba58161183d565b9050919050565b60006020820190508181036000830152611bc5816118a3565b9050919050565b60006020820190508181036000830152611be581611909565b9050919050565b60006020820190508181036000830152611c058161196f565b9050919050565b6000602082019050611c2160008301846119af565b92915050565b6000602082019050611c3c60008301846119be565b92915050565b6000604051905081810181811067ffffffffffffffff82111715611c6957611c68611e3c565b5b8060405250919050565b600067ffffffffffffffff821115611c8e57611c8d611e3c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000611cca82611d53565b9150611cd583611d53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d0a57611d09611dde565b5b828201905092915050565b6000611d2082611d33565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015611d97578082015181840152602081019050611d7c565b83811115611da6576000848401525b50505050565b60006002820490506001821680611dc457607f821691505b60208210811415611dd857611dd7611e0d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b611e8581611d15565b8114611e9057600080fd5b50565b611e9c81611d53565b8114611ea757600080fd5b5056fea26469706673582212203c2a6e1b274d71eca8f7d95396716042820178960f86524320727dd2a223e01e64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4d616920537461626c65636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d41490000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb146102fa578063b84c82461461032a578063c47f002714610346578063dd62ed3e14610362578063f2fde38b1461039257610121565b8063715018a61461027a578063730f5240146102845780638da5cb5b1461028e57806395d89b41146102ac578063a457c2d7146102ca57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806340c10f19146102105780636afdd8501461022c57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103ae565b60405161013b9190611a3a565b60405180910390f35b61015e60048036038101906101599190611485565b610440565b60405161016b9190611a1f565b60405180910390f35b61017c610463565b6040516101899190611c0c565b60405180910390f35b6101ac60048036038101906101a79190611436565b61046d565b6040516101b99190611a1f565b60405180910390f35b6101ca61049c565b6040516101d79190611c27565b60405180910390f35b6101fa60048036038101906101f59190611485565b6104a5565b6040516102079190611a1f565b60405180910390f35b61022a60048036038101906102259190611485565b6104dc565b005b61023461052d565b60405161024191906119cd565b60405180910390f35b610264600480360381019061025f91906113d1565b610540565b6040516102719190611c0c565b60405180910390f35b610282610589565b005b61028c61059d565b005b6102966105b8565b6040516102a391906119cd565b60405180910390f35b6102b46105e1565b6040516102c19190611a3a565b60405180910390f35b6102e460048036038101906102df9190611485565b610673565b6040516102f19190611a1f565b60405180910390f35b610314600480360381019061030f9190611485565b6106ea565b6040516103219190611a1f565b60405180910390f35b610344600480360381019061033f91906114c1565b61070d565b005b610360600480360381019061035b91906114c1565b610768565b005b61037c600480360381019061037791906113fa565b6107c3565b6040516103899190611c0c565b60405180910390f35b6103ac60048036038101906103a791906113d1565b610843565b005b6060600680546103bd90611dac565b80601f01602080910402602001604051908101604052809291908181526020018280546103e990611dac565b80156104365780601f1061040b57610100808354040283529160200191610436565b820191906000526020600020905b81548152906001019060200180831161041957829003601f168201915b5050505050905090565b60008061044b6108c7565b90506104588185856108cf565b600191505092915050565b6000600354905090565b6000806104786108c7565b9050610485858285610a9a565b610490858585610b26565b60019150509392505050565b60006012905090565b6000806104b06108c7565b90506104d18185856104c285896107c3565b6104cc9190611cbf565b6108cf565b600191505092915050565b6104e4610da1565b6104ee8282610e1f565b7fbcad3d7d3dfccb90d49c6063bf70f828901fefc88937d90af74e58e6e55bc39d828233604051610521939291906119e8565b60405180910390a15050565b6e22d473030f116ddee9f6b43ac78ba381565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610591610da1565b61059b6000610f77565b565b6000600190506105b5816105b083610540565b61103b565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105f090611dac565b80601f016020809104026020016040519081016040528092919081815260200182805461061c90611dac565b80156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b5050505050905090565b60008061067e6108c7565b9050600061068c82866107c3565b9050838110156106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c890611bcc565b60405180910390fd5b6106de82868684036108cf565b60019250505092915050565b6000806106f56108c7565b9050610702818585610b26565b600191505092915050565b610715610da1565b806007908051906020019061072b92919061129c565b507f653270c8338e84172b2847363c8c0de7a9bf4a957ee465b74a13aa6897dfa98b813360405161075d929190611a5c565b60405180910390a150565b610770610da1565b806006908051906020019061078692919061129c565b507f1e3652b21ef1bd2c76130610ad0be2b8ab01fbea80964c84c54473bf090dc8a481336040516107b8929190611a5c565b60405180910390a150565b60006e22d473030f116ddee9f6b43ac78ba373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610830577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905061083d565b61083a838361120b565b90505b92915050565b61084b610da1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b290611acc565b60405180910390fd5b6108c481610f77565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690611bac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690611aec565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a8d9190611c0c565b60405180910390a3505050565b6000610aa684846107c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b205781811015610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611b0c565b60405180910390fd5b610b1f84848484036108cf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90611b8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90611a8c565b60405180910390fd5b610c11838383611292565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90611b2c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d889190611c0c565b60405180910390a3610d9b848484611297565b50505050565b610da96108c7565b73ffffffffffffffffffffffffffffffffffffffff16610dc76105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490611b4c565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611bec565b60405180910390fd5b610e9b60008383611292565b8060036000828254610ead9190611cbf565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f5f9190611c0c565b60405180910390a3610f7360008383611297565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290611b6c565b60405180910390fd5b6110b782600083611292565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590611aac565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f29190611c0c565b60405180910390a361120683600084611297565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b505050565b8280546112a890611dac565b90600052602060002090601f0160209004810192826112ca5760008555611311565b82601f106112e357805160ff1916838001178555611311565b82800160010185558215611311579182015b828111156113105782518255916020019190600101906112f5565b5b50905061131e9190611322565b5090565b5b8082111561133b576000816000905550600101611323565b5090565b600061135261134d84611c73565b611c42565b90508281526020810184848401111561136a57600080fd5b611375848285611d6a565b509392505050565b60008135905061138c81611e7c565b92915050565b600082601f8301126113a357600080fd5b81356113b384826020860161133f565b91505092915050565b6000813590506113cb81611e93565b92915050565b6000602082840312156113e357600080fd5b60006113f18482850161137d565b91505092915050565b6000806040838503121561140d57600080fd5b600061141b8582860161137d565b925050602061142c8582860161137d565b9150509250929050565b60008060006060848603121561144b57600080fd5b60006114598682870161137d565b935050602061146a8682870161137d565b925050604061147b868287016113bc565b9150509250925092565b6000806040838503121561149857600080fd5b60006114a68582860161137d565b92505060206114b7858286016113bc565b9150509250929050565b6000602082840312156114d357600080fd5b600082013567ffffffffffffffff8111156114ed57600080fd5b6114f984828501611392565b91505092915050565b61150b81611d15565b82525050565b61151a81611d27565b82525050565b600061152b82611ca3565b6115358185611cae565b9350611545818560208601611d79565b61154e81611e6b565b840191505092915050565b6000611566602383611cae565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115cc602283611cae565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611632602683611cae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611698602283611cae565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116fe601d83611cae565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061173e602683611cae565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117a4602083611cae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006117e4602183611cae565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061184a602583611cae565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118b0602483611cae565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611916602583611cae565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061197c601f83611cae565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6119b881611d53565b82525050565b6119c781611d5d565b82525050565b60006020820190506119e26000830184611502565b92915050565b60006060820190506119fd6000830186611502565b611a0a60208301856119af565b611a176040830184611502565b949350505050565b6000602082019050611a346000830184611511565b92915050565b60006020820190508181036000830152611a548184611520565b905092915050565b60006040820190508181036000830152611a768185611520565b9050611a856020830184611502565b9392505050565b60006020820190508181036000830152611aa581611559565b9050919050565b60006020820190508181036000830152611ac5816115bf565b9050919050565b60006020820190508181036000830152611ae581611625565b9050919050565b60006020820190508181036000830152611b058161168b565b9050919050565b60006020820190508181036000830152611b25816116f1565b9050919050565b60006020820190508181036000830152611b4581611731565b9050919050565b60006020820190508181036000830152611b6581611797565b9050919050565b60006020820190508181036000830152611b85816117d7565b9050919050565b60006020820190508181036000830152611ba58161183d565b9050919050565b60006020820190508181036000830152611bc5816118a3565b9050919050565b60006020820190508181036000830152611be581611909565b9050919050565b60006020820190508181036000830152611c058161196f565b9050919050565b6000602082019050611c2160008301846119af565b92915050565b6000602082019050611c3c60008301846119be565b92915050565b6000604051905081810181811067ffffffffffffffff82111715611c6957611c68611e3c565b5b8060405250919050565b600067ffffffffffffffff821115611c8e57611c8d611e3c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000611cca82611d53565b9150611cd583611d53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d0a57611d09611dde565b5b828201905092915050565b6000611d2082611d33565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015611d97578082015181840152602081019050611d7c565b83811115611da6576000848401525b50505050565b60006002820490506001821680611dc457607f821691505b60208210811415611dd857611dd7611e0d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b611e8581611d15565b8114611e9057600080fd5b50565b611e9c81611d53565b8114611ea757600080fd5b5056fea26469706673582212203c2a6e1b274d71eca8f7d95396716042820178960f86524320727dd2a223e01e64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4d616920537461626c65636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d41490000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tempName (string): Mai Stablecoin
Arg [1] : _tempSymbol (string): MAI
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 4d616920537461626c65636f696e000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4d41490000000000000000000000000000000000000000000000000000000000
Loading...
Loading
OVERVIEW
Mai Finance is an open source and non-custodial stable protocol for extracting value out of priced assetsLoading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.