More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 4,140 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18025944 | 2 days ago | IN | 0 CRO | 0.23517345 | ||||
Approve | 17994581 | 4 days ago | IN | 0 CRO | 0.23517345 | ||||
Approve | 17988910 | 4 days ago | IN | 0 CRO | 0.14687925 | ||||
Approve | 17988820 | 4 days ago | IN | 0 CRO | 0.14687925 | ||||
Approve | 17963046 | 6 days ago | IN | 0 CRO | 0.1774185 | ||||
Approve | 17956077 | 6 days ago | IN | 0 CRO | 0.162876 | ||||
Approve | 17955999 | 6 days ago | IN | 0 CRO | 0.14681865 | ||||
Approve | 17954928 | 6 days ago | IN | 0 CRO | 0.1541505 | ||||
Approve | 17954904 | 6 days ago | IN | 0 CRO | 0.1541505 | ||||
Approve | 17954785 | 6 days ago | IN | 0 CRO | 0.151242 | ||||
Approve | 17954652 | 6 days ago | IN | 0 CRO | 0.157059 | ||||
Approve | 17954610 | 6 days ago | IN | 0 CRO | 0.1541505 | ||||
Approve | 17954595 | 6 days ago | IN | 0 CRO | 0.151242 | ||||
Approve | 17954593 | 6 days ago | IN | 0 CRO | 0.1511796 | ||||
Approve | 17954261 | 6 days ago | IN | 0 CRO | 0.151242 | ||||
Approve | 17954159 | 6 days ago | IN | 0 CRO | 0.151242 | ||||
Approve | 17954158 | 6 days ago | IN | 0 CRO | 0.151242 | ||||
Approve | 17954157 | 6 days ago | IN | 0 CRO | 0.151242 | ||||
Approve | 17953543 | 6 days ago | IN | 0 CRO | 0.1511796 | ||||
Approve | 17953541 | 6 days ago | IN | 0 CRO | 0.151242 | ||||
Transfer | 17936056 | 7 days ago | IN | 0 CRO | 0.505 | ||||
Approve | 17871291 | 12 days ago | IN | 0 CRO | 0.23517345 | ||||
Approve | 17838457 | 14 days ago | IN | 0 CRO | 0.24693212 | ||||
Approve | 17818141 | 15 days ago | IN | 0 CRO | 0.24693212 | ||||
Approve | 17769125 | 18 days ago | IN | 0 CRO | 0.27044946 |
Loading...
Loading
Contract Name:
Gold
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2023-06-13 */ // SPDX-License-Identifier: MIT 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); } pragma solidity ^0.8.0; /** * @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); } 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; } } pragma solidity ^0.8.0; /** * @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]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 {} } pragma solidity 0.8.11; /// @title Atlantis Gold Contract /// @author Kratos contract Gold is ERC20 { event Minted(address to, uint256 amount); uint256 public INITIAL_SUPPLY = 10_000_000_000 ether; constructor() ERC20("GOLD", "GOLD") { // Mint initial supply to contract creator _mint(msg.sender, INITIAL_SUPPLY); } /** * @notice Burn `amount` tokens and decreasing the total supply. * @param amount Amount of tokens to burn */ function burn(uint256 amount) external returns (bool) { _burn(_msgSender(), amount); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"INITIAL_SUPPLY","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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"}]
Contract Creation Code
60806040526b204fce5e3e250261100000006005553480156200002157600080fd5b5060408051808201825260048082526311d3d31160e21b60208084018281528551808701909652928552840152815191929162000061916003916200015a565b508051620000779060049060208401906200015a565b5050506200008e336005546200009460201b60201c565b62000264565b6001600160a01b038216620000ef5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000103919062000200565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620001689062000227565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b600082198211156200022257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200023c57607f821691505b602082108114156200025e57634e487b7160e01b600052602260045260246000fd5b50919050565b6109f780620002746000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b41146101a1578063a457c2d7146101a9578063a9059cbb146101bc578063dd62ed3e146101cf57600080fd5b8063395093511461015257806342966c681461016557806370a082311461017857600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd146101275780632ff2e9dc1461013a578063313ce56714610143575b600080fd5b6100dc6101e2565b6040516100e9919061081b565b60405180910390f35b61010561010036600461088c565b610274565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b6101056101353660046108b6565b61028c565b61011960055481565b604051601281526020016100e9565b61010561016036600461088c565b6102b0565b6101056101733660046108f2565b6102d2565b61011961018636600461090b565b6001600160a01b031660009081526020819052604090205490565b6100dc6102e6565b6101056101b736600461088c565b6102f5565b6101056101ca36600461088c565b610375565b6101196101dd36600461092d565b610383565b6060600380546101f190610960565b80601f016020809104026020016040519081016040528092919081815260200182805461021d90610960565b801561026a5780601f1061023f5761010080835404028352916020019161026a565b820191906000526020600020905b81548152906001019060200180831161024d57829003601f168201915b5050505050905090565b6000336102828185856103ae565b5060019392505050565b60003361029a8582856104d3565b6102a585858561054d565b506001949350505050565b6000336102828185856102c38383610383565b6102cd919061099b565b6103ae565b60006102de33836106f1565b506001919050565b6060600480546101f190610960565b600033816103038286610383565b9050838110156103685760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102a582868684036103ae565b60003361028281858561054d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161035f565b6001600160a01b0382166104715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161035f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006104df8484610383565b90506000198114610547578181101561053a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161035f565b61054784848484036103ae565b50505050565b6001600160a01b0383166105b15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161035f565b6001600160a01b0382166106135760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161035f565b6001600160a01b0383166000908152602081905260409020548181101561068b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161035f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610547565b6001600160a01b0382166107515760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161035f565b6001600160a01b038216600090815260208190526040902054818110156107c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161035f565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016104c6565b600060208083528351808285015260005b818110156108485785810183015185820160400152820161082c565b8181111561085a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461088757600080fd5b919050565b6000806040838503121561089f57600080fd5b6108a883610870565b946020939093013593505050565b6000806000606084860312156108cb57600080fd5b6108d484610870565b92506108e260208501610870565b9150604084013590509250925092565b60006020828403121561090457600080fd5b5035919050565b60006020828403121561091d57600080fd5b61092682610870565b9392505050565b6000806040838503121561094057600080fd5b61094983610870565b915061095760208401610870565b90509250929050565b600181811c9082168061097457607f821691505b6020821081141561099557634e487b7160e01b600052602260045260246000fd5b50919050565b600082198211156109bc57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220c1a7719d66c212dd3ac4a12cca17d7e79599ea7f6875d672a4b3b1f741799bf264736f6c634300080b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b41146101a1578063a457c2d7146101a9578063a9059cbb146101bc578063dd62ed3e146101cf57600080fd5b8063395093511461015257806342966c681461016557806370a082311461017857600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd146101275780632ff2e9dc1461013a578063313ce56714610143575b600080fd5b6100dc6101e2565b6040516100e9919061081b565b60405180910390f35b61010561010036600461088c565b610274565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b6101056101353660046108b6565b61028c565b61011960055481565b604051601281526020016100e9565b61010561016036600461088c565b6102b0565b6101056101733660046108f2565b6102d2565b61011961018636600461090b565b6001600160a01b031660009081526020819052604090205490565b6100dc6102e6565b6101056101b736600461088c565b6102f5565b6101056101ca36600461088c565b610375565b6101196101dd36600461092d565b610383565b6060600380546101f190610960565b80601f016020809104026020016040519081016040528092919081815260200182805461021d90610960565b801561026a5780601f1061023f5761010080835404028352916020019161026a565b820191906000526020600020905b81548152906001019060200180831161024d57829003601f168201915b5050505050905090565b6000336102828185856103ae565b5060019392505050565b60003361029a8582856104d3565b6102a585858561054d565b506001949350505050565b6000336102828185856102c38383610383565b6102cd919061099b565b6103ae565b60006102de33836106f1565b506001919050565b6060600480546101f190610960565b600033816103038286610383565b9050838110156103685760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102a582868684036103ae565b60003361028281858561054d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161035f565b6001600160a01b0382166104715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161035f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006104df8484610383565b90506000198114610547578181101561053a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161035f565b61054784848484036103ae565b50505050565b6001600160a01b0383166105b15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161035f565b6001600160a01b0382166106135760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161035f565b6001600160a01b0383166000908152602081905260409020548181101561068b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161035f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610547565b6001600160a01b0382166107515760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161035f565b6001600160a01b038216600090815260208190526040902054818110156107c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161035f565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016104c6565b600060208083528351808285015260005b818110156108485785810183015185820160400152820161082c565b8181111561085a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461088757600080fd5b919050565b6000806040838503121561089f57600080fd5b6108a883610870565b946020939093013593505050565b6000806000606084860312156108cb57600080fd5b6108d484610870565b92506108e260208501610870565b9150604084013590509250925092565b60006020828403121561090457600080fd5b5035919050565b60006020828403121561091d57600080fd5b61092682610870565b9392505050565b6000806040838503121561094057600080fd5b61094983610870565b915061095760208401610870565b90509250929050565b600181811c9082168061097457607f821691505b6020821081141561099557634e487b7160e01b600052602260045260246000fd5b50919050565b600082198211156109bc57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220c1a7719d66c212dd3ac4a12cca17d7e79599ea7f6875d672a4b3b1f741799bf264736f6c634300080b0033
Deployed Bytecode Sourcemap
17479:547:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6165:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8523:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8523:201:0;1053:187:1;7285:108:0;7373:12;;7285:108;;;1391:25:1;;;1379:2;1364:18;7285:108:0;1245:177:1;9304:295:0;;;;;;:::i;:::-;;:::i;17556:52::-;;;;;;7127:93;;;7210:2;1902:36:1;;1890:2;1875:18;7127:93:0;1760:184:1;10015:238:0;;;;;;:::i;:::-;;:::i;17901:122::-;;;;;;:::i;:::-;;:::i;7456:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7557:18:0;7530:7;7557:18;;;;;;;;;;;;7456:127;6384:104;;;:::i;10763:436::-;;;;;;:::i;:::-;;:::i;7789:193::-;;;;;;:::i;:::-;;:::i;8045:151::-;;;;;;:::i;:::-;;:::i;6165:100::-;6219:13;6252:5;6245:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6165:100;:::o;8523:201::-;8606:4;4019:10;8662:32;4019:10;8678:7;8687:6;8662:8;:32::i;:::-;-1:-1:-1;8712:4:0;;8523:201;-1:-1:-1;;;8523:201:0:o;9304:295::-;9435:4;4019:10;9493:38;9509:4;4019:10;9524:6;9493:15;:38::i;:::-;9542:27;9552:4;9558:2;9562:6;9542:9;:27::i;:::-;-1:-1:-1;9587:4:0;;9304:295;-1:-1:-1;;;;9304:295:0:o;10015:238::-;10103:4;4019:10;10159:64;4019:10;10175:7;10212:10;10184:25;4019:10;10175:7;10184:9;:25::i;:::-;:38;;;;:::i;:::-;10159:8;:64::i;17901:122::-;17949:4;17966:27;4019:10;17986:6;17966:5;:27::i;:::-;-1:-1:-1;18011:4:0;;17901:122;-1:-1:-1;17901:122:0:o;6384:104::-;6440:13;6473:7;6466:14;;;;;:::i;10763:436::-;10856:4;4019:10;10856:4;10939:25;4019:10;10956:7;10939:9;:25::i;:::-;10912:52;;11003:15;10983:16;:35;;10975:85;;;;-1:-1:-1;;;10975:85:0;;3407:2:1;10975:85:0;;;3389:21:1;3446:2;3426:18;;;3419:30;3485:34;3465:18;;;3458:62;-1:-1:-1;;;3536:18:1;;;3529:35;3581:19;;10975:85:0;;;;;;;;;11096:60;11105:5;11112:7;11140:15;11121:16;:34;11096:8;:60::i;7789:193::-;7868:4;4019:10;7924:28;4019:10;7941:2;7945:6;7924:9;:28::i;8045:151::-;-1:-1:-1;;;;;8161:18:0;;;8134:7;8161:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8045:151::o;14805:380::-;-1:-1:-1;;;;;14941:19:0;;14933:68;;;;-1:-1:-1;;;14933:68:0;;3813:2:1;14933:68:0;;;3795:21:1;3852:2;3832:18;;;3825:30;3891:34;3871:18;;;3864:62;-1:-1:-1;;;3942:18:1;;;3935:34;3986:19;;14933:68:0;3611:400:1;14933:68:0;-1:-1:-1;;;;;15020:21:0;;15012:68;;;;-1:-1:-1;;;15012:68:0;;4218:2:1;15012:68:0;;;4200:21:1;4257:2;4237:18;;;4230:30;4296:34;4276:18;;;4269:62;-1:-1:-1;;;4347:18:1;;;4340:32;4389:19;;15012:68:0;4016:398:1;15012:68:0;-1:-1:-1;;;;;15093:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15145:32;;1391:25:1;;;15145:32:0;;1364:18:1;15145:32:0;;;;;;;;14805:380;;;:::o;15476:461::-;15611:24;15638:25;15648:5;15655:7;15638:9;:25::i;:::-;15611:52;;-1:-1:-1;;15678:16:0;:37;15674:256;;15760:6;15740:16;:26;;15732:68;;;;-1:-1:-1;;;15732:68:0;;4621:2:1;15732:68:0;;;4603:21:1;4660:2;4640:18;;;4633:30;4699:31;4679:18;;;4672:59;4748:18;;15732:68:0;4419:353:1;15732:68:0;15852:51;15861:5;15868:7;15896:6;15877:16;:25;15852:8;:51::i;:::-;15600:337;15476:461;;;:::o;11669:848::-;-1:-1:-1;;;;;11800:18:0;;11792:68;;;;-1:-1:-1;;;11792:68:0;;4979:2:1;11792:68:0;;;4961:21:1;5018:2;4998:18;;;4991:30;5057:34;5037:18;;;5030:62;-1:-1:-1;;;5108:18:1;;;5101:35;5153:19;;11792:68:0;4777:401:1;11792:68:0;-1:-1:-1;;;;;11879:16:0;;11871:64;;;;-1:-1:-1;;;11871:64:0;;5385:2:1;11871:64:0;;;5367:21:1;5424:2;5404:18;;;5397:30;5463:34;5443:18;;;5436:62;-1:-1:-1;;;5514:18:1;;;5507:33;5557:19;;11871:64:0;5183:399:1;11871:64:0;-1:-1:-1;;;;;12021:15:0;;11999:19;12021:15;;;;;;;;;;;12055:21;;;;12047:72;;;;-1:-1:-1;;;12047:72:0;;5789:2:1;12047:72:0;;;5771:21:1;5828:2;5808:18;;;5801:30;5867:34;5847:18;;;5840:62;-1:-1:-1;;;5918:18:1;;;5911:36;5964:19;;12047:72:0;5587:402:1;12047:72:0;-1:-1:-1;;;;;12163:15:0;;;:9;:15;;;;;;;;;;;12181:20;;;12163:38;;12381:13;;;;;;;;;;:23;;;;;;12433:26;;1391:25:1;;;12381:13:0;;12433:26;;1364:18:1;12433:26:0;;;;;;;12472:37;13685:675;;-1:-1:-1;;;;;13769:21:0;;13761:67;;;;-1:-1:-1;;;13761:67:0;;6196:2:1;13761:67:0;;;6178:21:1;6235:2;6215:18;;;6208:30;6274:34;6254:18;;;6247:62;-1:-1:-1;;;6325:18:1;;;6318:31;6366:19;;13761:67:0;5994:397:1;13761:67:0;-1:-1:-1;;;;;13928:18:0;;13903:22;13928:18;;;;;;;;;;;13965:24;;;;13957:71;;;;-1:-1:-1;;;13957:71:0;;6598:2:1;13957:71:0;;;6580:21:1;6637:2;6617:18;;;6610:30;6676:34;6656:18;;;6649:62;-1:-1:-1;;;6727:18:1;;;6720:32;6769:19;;13957:71:0;6396:398:1;13957:71:0;-1:-1:-1;;;;;14064:18:0;;:9;:18;;;;;;;;;;;14085:23;;;14064:44;;14203:12;:22;;;;;;;14254:37;1391:25:1;;;14064:9:0;;:18;14254:37;;1364:18:1;14254:37:0;1245:177:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2325:260::-;2393:6;2401;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;:::-;2483:39;;2541:38;2575:2;2564:9;2560:18;2541:38;:::i;:::-;2531:48;;2325:260;;;;;:::o;2590:380::-;2669:1;2665:12;;;;2712;;;2733:61;;2787:4;2779:6;2775:17;2765:27;;2733:61;2840:2;2832:6;2829:14;2809:18;2806:38;2803:161;;;2886:10;2881:3;2877:20;2874:1;2867:31;2921:4;2918:1;2911:15;2949:4;2946:1;2939:15;2803:161;;2590:380;;;:::o;2975:225::-;3015:3;3046:1;3042:6;3039:1;3036:13;3033:136;;;3091:10;3086:3;3082:20;3079:1;3072:31;3126:4;3123:1;3116:15;3154:4;3151:1;3144:15;3033:136;-1:-1:-1;3185:9:1;;2975:225::o
Swarm Source
ipfs://c1a7719d66c212dd3ac4a12cca17d7e79599ea7f6875d672a4b3b1f741799bf2
Loading...
Loading
Loading...
Loading
Loading...
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.