CRC-20
Overview
Max Total Supply
211,156,647.975680420936159976 xARGO
Holders
8,082
Market
Price
$0.00 @ 0.000000 CRO
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
326.50643891810921222 xARGOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
xArgo
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-06-01 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) 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); } // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) 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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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; } _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} } // File contracts/interface/IMintBurnToken.sol pragma solidity ^0.8.0; interface IMintBurnToken { function mintTo(address to, uint256 amount) external returns (bool); function burn(uint256 amount) external returns (bool); } // File contracts/xArgo.sol pragma solidity 0.8.11; /** * @title xArgo Token, time-locked version of Argo token. * @notice xArgo is the time-locked version of the native governance token of Argo Protocol, the premier liquid staking protocol on Cronos. */ contract xArgo is ERC20, IMintBurnToken { event Minted(address to, uint256 amount); address public argoStaking; /** * @dev Initialise xArgo contract setting up the appropriate roles and also to mint the initial supply. */ constructor(address _argoStaking) ERC20("xARGO", "xARGO") { argoStaking = _argoStaking; } /** * @notice Mints xArgo Tokens to the specified address. * @dev Can only be called by ArgoStaking * @param _to Address to mint to * @param _amount Amount of Argo to mint */ function mintTo(address _to, uint256 _amount) external override returns (bool) { require(msg.sender == argoStaking, "xArgo: Only ArgoStaking can mint xARGO!"); _mint(_to, _amount); emit Minted(_to, _amount); return true; } /** * @notice Burn `amount` tokens and decreasing the total supply. * @dev Can only be called by ArgoStaking * @param amount Amount of tokens to burn */ function burn(uint256 amount) external override returns (bool) { require(msg.sender == argoStaking, "xArgo: Only ArgoStaking can burn xARGO!"); _burn(_msgSender(), amount); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_argoStaking","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"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":[],"name":"argoStaking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintTo","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
60806040523480156200001157600080fd5b5060405162000ed838038062000ed883398101604081905262000034916200015a565b604080518082018252600580825264784152474f60d81b6020808401828152855180870190965292855284015281519192916200007491600391620000b4565b5080516200008a906004906020840190620000b4565b5050600580546001600160a01b0319166001600160a01b03939093169290921790915550620001c9565b828054620000c2906200018c565b90600052602060002090601f016020900481019282620000e6576000855562000131565b82601f106200010157805160ff191683800117855562000131565b8280016001018555821562000131579182015b828111156200013157825182559160200191906001019062000114565b506200013f92915062000143565b5090565b5b808211156200013f576000815560010162000144565b6000602082840312156200016d57600080fd5b81516001600160a01b03811681146200018557600080fd5b9392505050565b600181811c90821680620001a157607f821691505b60208210811415620001c357634e487b7160e01b600052602260045260246000fd5b50919050565b610cff80620001d96000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b41146101f1578063a457c2d7146101f9578063a9059cbb1461020c578063dd62ed3e1461021f57600080fd5b806342966c68146101a2578063449a52f8146101b557806370a08231146101c857600080fd5b806318160ddd116100c857806318160ddd1461015b57806323b872dd1461016d578063313ce56714610180578063395093511461018f57600080fd5b806306fdde03146100ef578063095ea7b31461010d5780630f46733714610130575b600080fd5b6100f7610258565b6040516101049190610b04565b60405180910390f35b61012061011b366004610b75565b6102ea565b6040519015158152602001610104565b600554610143906001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6002545b604051908152602001610104565b61012061017b366004610b9f565b610302565b60405160128152602001610104565b61012061019d366004610b75565b610326565b6101206101b0366004610bdb565b610365565b6101206101c3366004610b75565b6103e9565b61015f6101d6366004610bf4565b6001600160a01b031660009081526020819052604090205490565b6100f76104ab565b610120610207366004610b75565b6104ba565b61012061021a366004610b75565b61054c565b61015f61022d366004610c16565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461026790610c49565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610c49565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b6000336102f881858561055a565b5060019392505050565b60003361031085828561067f565b61031b858585610711565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906102f89082908690610360908790610c9a565b61055a565b6005546000906001600160a01b031633146103d75760405162461bcd60e51b815260206004820152602760248201527f784172676f3a204f6e6c79204172676f5374616b696e672063616e206275726e60448201526620784152474f2160c81b60648201526084015b60405180910390fd5b6103e133836108df565b506001919050565b6005546000906001600160a01b031633146104565760405162461bcd60e51b815260206004820152602760248201527f784172676f3a204f6e6c79204172676f5374616b696e672063616e206d696e7460448201526620784152474f2160c81b60648201526084016103ce565b6104608383610a25565b604080516001600160a01b0385168152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150600192915050565b60606004805461026790610c49565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561053f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ce565b61031b828686840361055a565b6000336102f8818585610711565b6001600160a01b0383166105bc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ce565b6001600160a01b03821661061d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461070b57818110156106fe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ce565b61070b848484840361055a565b50505050565b6001600160a01b0383166107755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ce565b6001600160a01b0382166107d75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ce565b6001600160a01b0383166000908152602081905260409020548181101561084f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ce565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610886908490610c9a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108d291815260200190565b60405180910390a361070b565b6001600160a01b03821661093f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ce565b6001600160a01b038216600090815260208190526040902054818110156109b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103ce565b6001600160a01b03831660009081526020819052604081208383039055600280548492906109e2908490610cb2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610672565b6001600160a01b038216610a7b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ce565b8060026000828254610a8d9190610c9a565b90915550506001600160a01b03821660009081526020819052604081208054839290610aba908490610c9a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610b3157858101830151858201604001528201610b15565b81811115610b43576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b7057600080fd5b919050565b60008060408385031215610b8857600080fd5b610b9183610b59565b946020939093013593505050565b600080600060608486031215610bb457600080fd5b610bbd84610b59565b9250610bcb60208501610b59565b9150604084013590509250925092565b600060208284031215610bed57600080fd5b5035919050565b600060208284031215610c0657600080fd5b610c0f82610b59565b9392505050565b60008060408385031215610c2957600080fd5b610c3283610b59565b9150610c4060208401610b59565b90509250929050565b600181811c90821680610c5d57607f821691505b60208210811415610c7e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610cad57610cad610c84565b500190565b600082821015610cc457610cc4610c84565b50039056fea264697066735822122000d78ad285f7c661c2719d4dae48f53c2d52811365d2a9b29bd03b4b752a758d64736f6c634300080b0033000000000000000000000000b7e2c7d79f0850aaec777f05d27c87d8c4aa32e8
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b41146101f1578063a457c2d7146101f9578063a9059cbb1461020c578063dd62ed3e1461021f57600080fd5b806342966c68146101a2578063449a52f8146101b557806370a08231146101c857600080fd5b806318160ddd116100c857806318160ddd1461015b57806323b872dd1461016d578063313ce56714610180578063395093511461018f57600080fd5b806306fdde03146100ef578063095ea7b31461010d5780630f46733714610130575b600080fd5b6100f7610258565b6040516101049190610b04565b60405180910390f35b61012061011b366004610b75565b6102ea565b6040519015158152602001610104565b600554610143906001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6002545b604051908152602001610104565b61012061017b366004610b9f565b610302565b60405160128152602001610104565b61012061019d366004610b75565b610326565b6101206101b0366004610bdb565b610365565b6101206101c3366004610b75565b6103e9565b61015f6101d6366004610bf4565b6001600160a01b031660009081526020819052604090205490565b6100f76104ab565b610120610207366004610b75565b6104ba565b61012061021a366004610b75565b61054c565b61015f61022d366004610c16565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461026790610c49565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610c49565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b6000336102f881858561055a565b5060019392505050565b60003361031085828561067f565b61031b858585610711565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906102f89082908690610360908790610c9a565b61055a565b6005546000906001600160a01b031633146103d75760405162461bcd60e51b815260206004820152602760248201527f784172676f3a204f6e6c79204172676f5374616b696e672063616e206275726e60448201526620784152474f2160c81b60648201526084015b60405180910390fd5b6103e133836108df565b506001919050565b6005546000906001600160a01b031633146104565760405162461bcd60e51b815260206004820152602760248201527f784172676f3a204f6e6c79204172676f5374616b696e672063616e206d696e7460448201526620784152474f2160c81b60648201526084016103ce565b6104608383610a25565b604080516001600160a01b0385168152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150600192915050565b60606004805461026790610c49565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561053f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ce565b61031b828686840361055a565b6000336102f8818585610711565b6001600160a01b0383166105bc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ce565b6001600160a01b03821661061d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461070b57818110156106fe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ce565b61070b848484840361055a565b50505050565b6001600160a01b0383166107755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ce565b6001600160a01b0382166107d75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ce565b6001600160a01b0383166000908152602081905260409020548181101561084f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ce565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610886908490610c9a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108d291815260200190565b60405180910390a361070b565b6001600160a01b03821661093f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ce565b6001600160a01b038216600090815260208190526040902054818110156109b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103ce565b6001600160a01b03831660009081526020819052604081208383039055600280548492906109e2908490610cb2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610672565b6001600160a01b038216610a7b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ce565b8060026000828254610a8d9190610c9a565b90915550506001600160a01b03821660009081526020819052604081208054839290610aba908490610c9a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610b3157858101830151858201604001528201610b15565b81811115610b43576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b7057600080fd5b919050565b60008060408385031215610b8857600080fd5b610b9183610b59565b946020939093013593505050565b600080600060608486031215610bb457600080fd5b610bbd84610b59565b9250610bcb60208501610b59565b9150604084013590509250925092565b600060208284031215610bed57600080fd5b5035919050565b600060208284031215610c0657600080fd5b610c0f82610b59565b9392505050565b60008060408385031215610c2957600080fd5b610c3283610b59565b9150610c4060208401610b59565b90509250929050565b600181811c90821680610c5d57607f821691505b60208210811415610c7e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610cad57610cad610c84565b500190565b600082821015610cc457610cc4610c84565b50039056fea264697066735822122000d78ad285f7c661c2719d4dae48f53c2d52811365d2a9b29bd03b4b752a758d64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b7e2c7d79f0850aaec777f05d27c87d8c4aa32e8
-----Decoded View---------------
Arg [0] : _argoStaking (address): 0xB7e2c7D79f0850AaEc777F05d27c87d8C4aA32E8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b7e2c7d79f0850aaec777f05d27c87d8c4aa32e8
Deployed Bytecode Sourcemap
18093:1306:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6774:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9125:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9125:201:0;1053:187:1;18189:26:0;;;;;-1:-1:-1;;;;;18189:26:0;;;;;;-1:-1:-1;;;;;1409:32:1;;;1391:51;;1379:2;1364:18;18189:26:0;1245:203:1;7894:108:0;7982:12;;7894:108;;;1599:25:1;;;1587:2;1572:18;7894:108:0;1453:177:1;9906:295:0;;;;;;:::i;:::-;;:::i;7736:93::-;;;7819:2;2110:36:1;;2098:2;2083:18;7736:93:0;1968:184:1;10610:240:0;;;;;;:::i;:::-;;:::i;19177:219::-;;;;;;:::i;:::-;;:::i;18691:295::-;;;;;;:::i;:::-;;:::i;8065:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8166:18:0;8139:7;8166:18;;;;;;;;;;;;8065:127;6993:104;;;:::i;11353:438::-;;;;;;:::i;:::-;;:::i;8398:193::-;;;;;;:::i;:::-;;:::i;8654:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8770:18:0;;;8743:7;8770:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8654:151;6774:100;6828:13;6861:5;6854:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6774:100;:::o;9125:201::-;9208:4;4488:10;9264:32;4488:10;9280:7;9289:6;9264:8;:32::i;:::-;-1:-1:-1;9314:4:0;;9125:201;-1:-1:-1;;;9125:201:0:o;9906:295::-;10037:4;4488:10;10095:38;10111:4;4488:10;10126:6;10095:15;:38::i;:::-;10144:27;10154:4;10160:2;10164:6;10144:9;:27::i;:::-;-1:-1:-1;10189:4:0;;9906:295;-1:-1:-1;;;;9906:295:0:o;10610:240::-;4488:10;10698:4;10779:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10779:27:0;;;;;;;;;;10698:4;;4488:10;10754:66;;4488:10;;10779:27;;:40;;10809:10;;10779:40;:::i;:::-;10754:8;:66::i;19177:219::-;19273:11;;19234:4;;-1:-1:-1;;;;;19273:11:0;19259:10;:25;19251:77;;;;-1:-1:-1;;;19251:77:0;;3650:2:1;19251:77:0;;;3632:21:1;3689:2;3669:18;;;3662:30;3728:34;3708:18;;;3701:62;-1:-1:-1;;;3779:18:1;;;3772:37;3826:19;;19251:77:0;;;;;;;;;19339:27;4488:10;19359:6;19339:5;:27::i;:::-;-1:-1:-1;19384:4:0;;19177:219;-1:-1:-1;19177:219:0:o;18691:295::-;18835:11;;18791:4;;-1:-1:-1;;;;;18835:11:0;18821:10;:25;18813:77;;;;-1:-1:-1;;;18813:77:0;;4058:2:1;18813:77:0;;;4040:21:1;4097:2;4077:18;;;4070:30;4136:34;4116:18;;;4109:62;-1:-1:-1;;;4187:18:1;;;4180:37;4234:19;;18813:77:0;3856:403:1;18813:77:0;18901:19;18907:3;18912:7;18901:5;:19::i;:::-;18936:20;;;-1:-1:-1;;;;;4456:32:1;;4438:51;;4520:2;4505:18;;4498:34;;;18936:20:0;;4411:18:1;18936:20:0;;;;;;;-1:-1:-1;18974:4:0;18691:295;;;;:::o;6993:104::-;7049:13;7082:7;7075:14;;;;;:::i;11353:438::-;4488:10;11446:4;11529:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11529:27:0;;;;;;;;;;11446:4;;4488:10;11575:35;;;;11567:85;;;;-1:-1:-1;;;11567:85:0;;4745:2:1;11567:85:0;;;4727:21:1;4784:2;4764:18;;;4757:30;4823:34;4803:18;;;4796:62;-1:-1:-1;;;4874:18:1;;;4867:35;4919:19;;11567:85:0;4543:401:1;11567:85:0;11688:60;11697:5;11704:7;11732:15;11713:16;:34;11688:8;:60::i;8398:193::-;8477:4;4488:10;8533:28;4488:10;8550:2;8554:6;8533:9;:28::i;14989:380::-;-1:-1:-1;;;;;15125:19:0;;15117:68;;;;-1:-1:-1;;;15117:68:0;;5151:2:1;15117:68:0;;;5133:21:1;5190:2;5170:18;;;5163:30;5229:34;5209:18;;;5202:62;-1:-1:-1;;;5280:18:1;;;5273:34;5324:19;;15117:68:0;4949:400:1;15117:68:0;-1:-1:-1;;;;;15204:21:0;;15196:68;;;;-1:-1:-1;;;15196:68:0;;5556:2:1;15196:68:0;;;5538:21:1;5595:2;5575:18;;;5568:30;5634:34;5614:18;;;5607:62;-1:-1:-1;;;5685:18:1;;;5678:32;5727:19;;15196:68:0;5354:398:1;15196:68:0;-1:-1:-1;;;;;15277:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15329:32;;1599:25:1;;;15329:32:0;;1572:18:1;15329:32:0;;;;;;;;14989:380;;;:::o;15656:453::-;-1:-1:-1;;;;;8770:18:0;;;15791:24;8770:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15858:37:0;;15854:248;;15940:6;15920:16;:26;;15912:68;;;;-1:-1:-1;;;15912:68:0;;5959:2:1;15912:68:0;;;5941:21:1;5998:2;5978:18;;;5971:30;6037:31;6017:18;;;6010:59;6086:18;;15912:68:0;5757:353:1;15912:68:0;16024:51;16033:5;16040:7;16068:6;16049:16;:25;16024:8;:51::i;:::-;15780:329;15656:453;;;:::o;12270:671::-;-1:-1:-1;;;;;12401:18:0;;12393:68;;;;-1:-1:-1;;;12393:68:0;;6317:2:1;12393:68:0;;;6299:21:1;6356:2;6336:18;;;6329:30;6395:34;6375:18;;;6368:62;-1:-1:-1;;;6446:18:1;;;6439:35;6491:19;;12393:68:0;6115:401:1;12393:68:0;-1:-1:-1;;;;;12480:16:0;;12472:64;;;;-1:-1:-1;;;12472:64:0;;6723:2:1;12472:64:0;;;6705:21:1;6762:2;6742:18;;;6735:30;6801:34;6781:18;;;6774:62;-1:-1:-1;;;6852:18:1;;;6845:33;6895:19;;12472:64:0;6521:399:1;12472:64:0;-1:-1:-1;;;;;12622:15:0;;12600:19;12622:15;;;;;;;;;;;12656:21;;;;12648:72;;;;-1:-1:-1;;;12648:72:0;;7127:2:1;12648:72:0;;;7109:21:1;7166:2;7146:18;;;7139:30;7205:34;7185:18;;;7178:62;-1:-1:-1;;;7256:18:1;;;7249:36;7302:19;;12648:72:0;6925:402:1;12648:72:0;-1:-1:-1;;;;;12756:15:0;;;:9;:15;;;;;;;;;;;12774:20;;;12756:38;;12816:13;;;;;;;;:23;;12788:6;;12756:9;12816:23;;12788:6;;12816:23;:::i;:::-;;;;;;;;12872:2;-1:-1:-1;;;;;12857:26:0;12866:4;-1:-1:-1;;;;;12857:26:0;;12876:6;12857:26;;;;1599:25:1;;1587:2;1572:18;;1453:177;12857:26:0;;;;;;;;12896:37;13960:591;;-1:-1:-1;;;;;14044:21:0;;14036:67;;;;-1:-1:-1;;;14036:67:0;;7534:2:1;14036:67:0;;;7516:21:1;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;-1:-1:-1;;;7663:18:1;;;7656:31;7704:19;;14036:67:0;7332:397:1;14036:67:0;-1:-1:-1;;;;;14203:18:0;;14178:22;14203:18;;;;;;;;;;;14240:24;;;;14232:71;;;;-1:-1:-1;;;14232:71:0;;7936:2:1;14232:71:0;;;7918:21:1;7975:2;7955:18;;;7948:30;8014:34;7994:18;;;7987:62;-1:-1:-1;;;8065:18:1;;;8058:32;8107:19;;14232:71:0;7734:398:1;14232:71:0;-1:-1:-1;;;;;14339:18:0;;:9;:18;;;;;;;;;;14360:23;;;14339:44;;14405:12;:22;;14377:6;;14339:9;14405:22;;14377:6;;14405:22;:::i;:::-;;;;-1:-1:-1;;14445:37:0;;1599:25:1;;;14471:1:0;;-1:-1:-1;;;;;14445:37:0;;;;;1587:2:1;1572:18;14445:37:0;1453:177:1;13228:399:0;-1:-1:-1;;;;;13312:21:0;;13304:65;;;;-1:-1:-1;;;13304:65:0;;8469:2:1;13304:65:0;;;8451:21:1;8508:2;8488:18;;;8481:30;8547:33;8527:18;;;8520:61;8598:18;;13304:65:0;8267:355:1;13304:65:0;13460:6;13444:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13477:18:0;;:9;:18;;;;;;;;;;:28;;13499:6;;13477:9;:28;;13499:6;;13477:28;:::i;:::-;;;;-1:-1:-1;;13521:37:0;;1599:25:1;;;-1:-1:-1;;;;;13521:37:0;;;13538:1;;13521:37;;1587:2:1;1572:18;13521:37:0;;;;;;;13228:399;;:::o;14:597:1:-;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;1635:328::-;1712:6;1720;1728;1781:2;1769:9;1760:7;1756:23;1752:32;1749:52;;;1797:1;1794;1787:12;1749:52;1820:29;1839:9;1820:29;:::i;:::-;1810:39;;1868:38;1902:2;1891:9;1887:18;1868:38;:::i;:::-;1858:48;;1953:2;1942:9;1938:18;1925:32;1915:42;;1635:328;;;;;:::o;2157:180::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;-1:-1:-1;2308:23:1;;2157:180;-1:-1:-1;2157:180:1:o;2342:186::-;2401:6;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;2342:186;-1:-1:-1;;;2342:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:127::-;3244:10;3239:3;3235:20;3232:1;3225:31;3275:4;3272:1;3265:15;3299:4;3296:1;3289:15;3315:128;3355:3;3386:1;3382:6;3379:1;3376:13;3373:39;;;3392:18;;:::i;:::-;-1:-1:-1;3428:9:1;;3315:128::o;8137:125::-;8177:4;8205:1;8202;8199:8;8196:34;;;8210:18;;:::i;:::-;-1:-1:-1;8247:9:1;;8137:125::o
Swarm Source
ipfs://00d78ad285f7c661c2719d4dae48f53c2d52811365d2a9b29bd03b4b752a758d
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.