Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 13113739 | 1178 days ago | IN | 0 ETH | 0.05836983 |
Loading...
Loading
Contract Name:
ONS
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "./ApprovedERC20.sol"; contract ONS is ApprovedERC20 { function __ONS_init(address governor_, address oneMinter_, address onsMine, address offering, address timelock) external initializer { __Context_init_unchained(); __ERC20_init("One Share", "ONS"); __Governable_init_unchained(governor_); __ApprovedERC20_init_unchained(oneMinter_); __ONS_init_unchained(onsMine, offering, timelock); } function __ONS_init_unchained(address onsMine, address offering, address timelock) public governance { _mint(onsMine, 90000 * 10 ** uint256(decimals())); // 90% _mint(offering, 5000 * 10 ** uint256(decimals())); // 5% _mint(timelock, 5000 * 10 ** uint256(decimals())); // 5% } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "../utils/Configurable.sol"; import "./ERC20UpgradeSafe.sol"; contract ApprovedERC20 is ERC20UpgradeSafe, Configurable { address public operator; function __ApprovedERC20_init_unchained(address operator_) public governance { operator = operator_; } function setNameAndSymbol(string memory newName, string memory newSymbol) external governance { updateNameAndSymbol(newName, newSymbol); } modifier onlyOperator { require(msg.sender == operator, 'called only by operator'); _; } function transferFrom_(address sender, address recipient, uint256 amount) external onlyOperator returns (bool) { _transfer(sender, recipient, amount); return true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "@openzeppelin/contracts/proxy/Initializable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../utils/ContextUpgradeSafe.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.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 {ERC20MinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20UpgradeSafe is Initializable, ContextUpgradeSafe, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name, string memory symbol) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name, symbol); } function __ERC20_init_unchained(string memory name, string memory symbol) internal initializer { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function updateNameAndSymbol(string memory newName, string memory newSymbol) internal { _name = newName; _symbol = newSymbol; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } uint256[44] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "./Governable.sol"; contract Configurable is Governable { mapping (bytes32 => uint) internal config; function getConfig(bytes32 key) public view returns (uint) { return config[key]; } function getConfig(bytes32 key, uint index) public view returns (uint) { return config[bytes32(uint(key) ^ index)]; } function getConfig(bytes32 key, address addr) public view returns (uint) { return config[bytes32(uint(key) ^ uint(addr))]; } function _setConfig(bytes32 key, uint value) internal { if(config[key] != value) config[key] = value; } function _setConfig(bytes32 key, uint index, uint value) internal { _setConfig(bytes32(uint(key) ^ index), value); } function _setConfig(bytes32 key, address addr, uint value) internal { _setConfig(bytes32(uint(key) ^ uint(addr)), value); } function setConfig(bytes32 key, uint value) external governance { _setConfig(key, value); } function setConfig(bytes32 key, uint index, uint value) external governance { _setConfig(bytes32(uint(key) ^ index), value); } function setConfig(bytes32 key, address addr, uint value) public governance { _setConfig(bytes32(uint(key) ^ uint(addr)), value); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "@openzeppelin/contracts/proxy/Initializable.sol"; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract ContextUpgradeSafe is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "@openzeppelin/contracts/proxy/Initializable.sol"; contract Governable is Initializable { address public governor; event GovernorshipTransferred(address indexed previousGovernor, address indexed newGovernor); /** * @dev Contract initializer. * called once by the factory at time of deployment */ function __Governable_init_unchained(address governor_) virtual public initializer { governor = governor_; emit GovernorshipTransferred(address(0), governor); } modifier governance() { require(msg.sender == governor); _; } /** * @dev Allows the current governor to relinquish control of the contract. * @notice Renouncing to governorship will leave the contract without an governor. * It will not be possible to call the functions with the `governance` * modifier anymore. */ function renounceGovernorship() public governance { emit GovernorshipTransferred(governor, address(0)); governor = address(0); } /** * @dev Allows the current governor to transfer control of the contract to a newGovernor. * @param newGovernor The address to transfer governorship to. */ function transferGovernorship(address newGovernor) public governance { _transferGovernorship(newGovernor); } /** * @dev Transfers control of the contract to a newGovernor. * @param newGovernor The address to transfer governorship to. */ function _transferGovernorship(address newGovernor) internal { require(newGovernor != address(0)); emit GovernorshipTransferred(governor, newGovernor); governor = newGovernor; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity >=0.4.24 <0.8.0; import "../utils/Address.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { return !Address.isContract(address(this)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousGovernor","type":"address"},{"indexed":true,"internalType":"address","name":"newGovernor","type":"address"}],"name":"GovernorshipTransferred","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":"operator_","type":"address"}],"name":"__ApprovedERC20_init_unchained","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"governor_","type":"address"}],"name":"__Governable_init_unchained","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"governor_","type":"address"},{"internalType":"address","name":"oneMinter_","type":"address"},{"internalType":"address","name":"onsMine","type":"address"},{"internalType":"address","name":"offering","type":"address"},{"internalType":"address","name":"timelock","type":"address"}],"name":"__ONS_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"onsMine","type":"address"},{"internalType":"address","name":"offering","type":"address"},{"internalType":"address","name":"timelock","type":"address"}],"name":"__ONS_init_unchained","outputs":[],"stateMutability":"nonpayable","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":"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":"bytes32","name":"key","type":"bytes32"},{"internalType":"address","name":"addr","type":"address"}],"name":"getConfig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"}],"name":"getConfig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceGovernorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setNameAndSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom_","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newGovernor","type":"address"}],"name":"transferGovernorship","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611799806100206000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636dd5b69d116100f9578063a9059cbb11610097578063d54f08be11610071578063d54f08be14610679578063dd62ed3e146106b1578063ddf2be3f146106df578063df69e01614610708576101a9565b8063a9059cbb146105f5578063b21544f314610621578063b6aa515b14610653576101a9565b80638ec872e3116100d35780638ec872e31461057857806395d89b411461059b578063a457c2d7146105a3578063a8a50f60146105cf576101a9565b80636dd5b69d1461052d57806370a082311461054a57806381c0c26314610570576101a9565b8063313ce5671161016657806355d204841161014057806355d204841461037a578063570ca735146103c25780635a446215146103ca5780636b5e27ef146104f7576101a9565b8063313ce56714610304578063395093511461032257806352665f471461034e576101a9565b806306fdde03146101ae578063095ea7b31461022b5780630c340a241461026b57806315fe96dc1461028f57806318160ddd146102b457806323b872dd146102ce575b600080fd5b6101b661072e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356107c4565b604080519115158252519081900360200190f35b6102736107e1565b604080516001600160a01b039092168252519081900360200190f35b6102b2600480360360408110156102a557600080fd5b50803590602001356107f0565b005b6102bc610815565b60408051918252519081900360200190f35b610257600480360360608110156102e457600080fd5b506001600160a01b0381358116916020810135909116906040013561081b565b61030c6108a2565b6040805160ff9092168252519081900360200190f35b6102576004803603604081101561033857600080fd5b506001600160a01b0381351690602001356108ab565b6102bc6004803603604081101561036457600080fd5b50803590602001356001600160a01b03166108f9565b6102b2600480360360a081101561039057600080fd5b506001600160a01b03813581169160208101358216916040820135811691606081013582169160809091013516610915565b610273610a27565b6102b2600480360360408110156103e057600080fd5b8101906020810181356401000000008111156103fb57600080fd5b82018360208201111561040d57600080fd5b8035906020019184600183028401116401000000008311171561042f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561048257600080fd5b82018360208201111561049457600080fd5b803590602001918460018302840111640100000000831117156104b657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a36945050505050565b6102576004803603606081101561050d57600080fd5b506001600160a01b03813581169160208101359091169060400135610a57565b6102bc6004803603602081101561054357600080fd5b5035610ac4565b6102bc6004803603602081101561056057600080fd5b50356001600160a01b0316610ad6565b6102b2610af1565b6102bc6004803603604081101561058e57600080fd5b5080359060200135610b52565b6101b6610b65565b610257600480360360408110156105b957600080fd5b506001600160a01b038135169060200135610bc6565b6102b2600480360360208110156105e557600080fd5b50356001600160a01b0316610c2e565b6102576004803603604081101561060b57600080fd5b506001600160a01b038135169060200135610c67565b6102b26004803603606081101561063757600080fd5b508035906001600160a01b036020820135169060400135610c7b565b6102b26004803603602081101561066957600080fd5b50356001600160a01b0316610cac565b6102b26004803603606081101561068f57600080fd5b506001600160a01b038135811691602081013582169160409091013516610ccf565b6102bc600480360360408110156106c757600080fd5b506001600160a01b0381358116916020013516610d29565b6102b2600480360360608110156106f557600080fd5b5080359060208101359060400135610d54565b6102b26004803603602081101561071e57600080fd5b50356001600160a01b0316610d77565b60368054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b60006107d86107d1610e68565b8484610e6c565b50600192915050565b6065546001600160a01b031681565b6065546001600160a01b0316331461080757600080fd5b6108118282610f58565b5050565b60355490565b6000610828848484610f7f565b61089884610834610e68565b610893856040518060600160405280602881526020016116ce602891396001600160a01b038a16600090815260346020526040812090610872610e68565b6001600160a01b0316815260208101919091526040016000205491906110dc565b610e6c565b5060019392505050565b60385460ff1690565b60006107d86108b8610e68565b8461089385603460006108c9610e68565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611173565b6001600160a01b03161860009081526066602052604090205490565b600054610100900460ff168061092e575061092e6111d4565b8061093c575060005460ff16155b6109775760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff161580156109a2576000805460ff1961ff0019909116610100171660011790555b6109aa6111e5565b6109f0604051806040016040528060098152602001684f6e6520536861726560b81b815250604051806040016040528060038152602001624f4e5360e81b815250611286565b6109f986610d77565b610a0285610c2e565b610a0d848484610ccf565b8015610a1f576000805461ff00191690555b505050505050565b6067546001600160a01b031681565b6065546001600160a01b03163314610a4d57600080fd5b610811828261133b565b6067546000906001600160a01b03163314610ab9576040805162461bcd60e51b815260206004820152601760248201527f63616c6c6564206f6e6c79206279206f70657261746f72000000000000000000604482015290519081900360640190fd5b610898848484610f7f565b60009081526066602052604090205490565b6001600160a01b031660009081526033602052604090205490565b6065546001600160a01b03163314610b0857600080fd5b6065546040516000916001600160a01b0316907fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a908390a3606580546001600160a01b0319169055565b1860009081526066602052604090205490565b60378054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ba5780601f1061078f576101008083540402835291602001916107ba565b60006107d8610bd3610e68565b846108938560405180606001604052806025815260200161173f6025913960346000610bfd610e68565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110dc565b6065546001600160a01b03163314610c4557600080fd5b606780546001600160a01b0319166001600160a01b0392909216919091179055565b60006107d8610c74610e68565b8484610f7f565b6065546001600160a01b03163314610c9257600080fd5b610ca76001600160a01b038316841882610f58565b505050565b6065546001600160a01b03163314610cc357600080fd5b610ccc81611362565b50565b6065546001600160a01b03163314610ce657600080fd5b610d0283610cf26108a2565b60ff16600a0a62015f90026113d1565b610d1d82610d0e6108a2565b60ff16600a0a611388026113d1565b610ca781610d0e6108a2565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b6065546001600160a01b03163314610d6b57600080fd5b610ca783831882610f58565b600054610100900460ff1680610d905750610d906111d4565b80610d9e575060005460ff16155b610dd95760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff16158015610e04576000805460ff1961ff0019909116610100171660011790555b606580546001600160a01b0319166001600160a01b0384811691909117918290556040519116906000907fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a908290a38015610811576000805461ff00191690555050565b3390565b6001600160a01b038316610eb15760405162461bcd60e51b815260040180806020018281038252602481526020018061171b6024913960400191505060405180910390fd5b6001600160a01b038216610ef65760405162461bcd60e51b81526004018080602001828103825260228152602001806116586022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008281526066602052604090205481146108115760009182526066602052604090912055565b6001600160a01b038316610fc45760405162461bcd60e51b81526004018080602001828103825260258152602001806116f66025913960400191505060405180910390fd5b6001600160a01b0382166110095760405162461bcd60e51b81526004018080602001828103825260238152602001806116356023913960400191505060405180910390fd5b611014838383610ca7565b6110518160405180606001604052806026815260200161167a602691396001600160a01b03861660009081526033602052604090205491906110dc565b6001600160a01b0380851660009081526033602052604080822093909355908416815220546110809082611173565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561116b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611130578181015183820152602001611118565b50505050905090810190601f16801561115d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111cd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006111df306114c3565b15905090565b600054610100900460ff16806111fe57506111fe6111d4565b8061120c575060005460ff16155b6112475760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff16158015611272576000805460ff1961ff0019909116610100171660011790555b8015610ccc576000805461ff001916905550565b600054610100900460ff168061129f575061129f6111d4565b806112ad575060005460ff16155b6112e85760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff16158015611313576000805460ff1961ff0019909116610100171660011790555b61131b6111e5565b61132583836114c9565b8015610ca7576000805461ff0019169055505050565b815161134e9060369060208501906115a1565b508051610ca79060379060208401906115a1565b6001600160a01b03811661137557600080fd5b6065546040516001600160a01b038084169216907fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a90600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661142c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61143860008383610ca7565b6035546114459082611173565b6035556001600160a01b03821660009081526033602052604090205461146b9082611173565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3b151590565b600054610100900460ff16806114e257506114e26111d4565b806114f0575060005460ff16155b61152b5760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff16158015611556576000805460ff1961ff0019909116610100171660011790555b82516115699060369060208601906115a1565b50815161157d9060379060208501906115a1565b506038805460ff191660121790558015610ca7576000805461ff0019169055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115e257805160ff191683800117855561160f565b8280016001018555821561160f579182015b8281111561160f5782518255916020019190600101906115f4565b5061161b92915061161f565b5090565b5b8082111561161b576000815560010161162056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122093dc7e5666515305420ac8fbda38ff82f8ec78ffd1e899515fad71ec5396af7964736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636dd5b69d116100f9578063a9059cbb11610097578063d54f08be11610071578063d54f08be14610679578063dd62ed3e146106b1578063ddf2be3f146106df578063df69e01614610708576101a9565b8063a9059cbb146105f5578063b21544f314610621578063b6aa515b14610653576101a9565b80638ec872e3116100d35780638ec872e31461057857806395d89b411461059b578063a457c2d7146105a3578063a8a50f60146105cf576101a9565b80636dd5b69d1461052d57806370a082311461054a57806381c0c26314610570576101a9565b8063313ce5671161016657806355d204841161014057806355d204841461037a578063570ca735146103c25780635a446215146103ca5780636b5e27ef146104f7576101a9565b8063313ce56714610304578063395093511461032257806352665f471461034e576101a9565b806306fdde03146101ae578063095ea7b31461022b5780630c340a241461026b57806315fe96dc1461028f57806318160ddd146102b457806323b872dd146102ce575b600080fd5b6101b661072e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356107c4565b604080519115158252519081900360200190f35b6102736107e1565b604080516001600160a01b039092168252519081900360200190f35b6102b2600480360360408110156102a557600080fd5b50803590602001356107f0565b005b6102bc610815565b60408051918252519081900360200190f35b610257600480360360608110156102e457600080fd5b506001600160a01b0381358116916020810135909116906040013561081b565b61030c6108a2565b6040805160ff9092168252519081900360200190f35b6102576004803603604081101561033857600080fd5b506001600160a01b0381351690602001356108ab565b6102bc6004803603604081101561036457600080fd5b50803590602001356001600160a01b03166108f9565b6102b2600480360360a081101561039057600080fd5b506001600160a01b03813581169160208101358216916040820135811691606081013582169160809091013516610915565b610273610a27565b6102b2600480360360408110156103e057600080fd5b8101906020810181356401000000008111156103fb57600080fd5b82018360208201111561040d57600080fd5b8035906020019184600183028401116401000000008311171561042f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561048257600080fd5b82018360208201111561049457600080fd5b803590602001918460018302840111640100000000831117156104b657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a36945050505050565b6102576004803603606081101561050d57600080fd5b506001600160a01b03813581169160208101359091169060400135610a57565b6102bc6004803603602081101561054357600080fd5b5035610ac4565b6102bc6004803603602081101561056057600080fd5b50356001600160a01b0316610ad6565b6102b2610af1565b6102bc6004803603604081101561058e57600080fd5b5080359060200135610b52565b6101b6610b65565b610257600480360360408110156105b957600080fd5b506001600160a01b038135169060200135610bc6565b6102b2600480360360208110156105e557600080fd5b50356001600160a01b0316610c2e565b6102576004803603604081101561060b57600080fd5b506001600160a01b038135169060200135610c67565b6102b26004803603606081101561063757600080fd5b508035906001600160a01b036020820135169060400135610c7b565b6102b26004803603602081101561066957600080fd5b50356001600160a01b0316610cac565b6102b26004803603606081101561068f57600080fd5b506001600160a01b038135811691602081013582169160409091013516610ccf565b6102bc600480360360408110156106c757600080fd5b506001600160a01b0381358116916020013516610d29565b6102b2600480360360608110156106f557600080fd5b5080359060208101359060400135610d54565b6102b26004803603602081101561071e57600080fd5b50356001600160a01b0316610d77565b60368054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b60006107d86107d1610e68565b8484610e6c565b50600192915050565b6065546001600160a01b031681565b6065546001600160a01b0316331461080757600080fd5b6108118282610f58565b5050565b60355490565b6000610828848484610f7f565b61089884610834610e68565b610893856040518060600160405280602881526020016116ce602891396001600160a01b038a16600090815260346020526040812090610872610e68565b6001600160a01b0316815260208101919091526040016000205491906110dc565b610e6c565b5060019392505050565b60385460ff1690565b60006107d86108b8610e68565b8461089385603460006108c9610e68565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611173565b6001600160a01b03161860009081526066602052604090205490565b600054610100900460ff168061092e575061092e6111d4565b8061093c575060005460ff16155b6109775760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff161580156109a2576000805460ff1961ff0019909116610100171660011790555b6109aa6111e5565b6109f0604051806040016040528060098152602001684f6e6520536861726560b81b815250604051806040016040528060038152602001624f4e5360e81b815250611286565b6109f986610d77565b610a0285610c2e565b610a0d848484610ccf565b8015610a1f576000805461ff00191690555b505050505050565b6067546001600160a01b031681565b6065546001600160a01b03163314610a4d57600080fd5b610811828261133b565b6067546000906001600160a01b03163314610ab9576040805162461bcd60e51b815260206004820152601760248201527f63616c6c6564206f6e6c79206279206f70657261746f72000000000000000000604482015290519081900360640190fd5b610898848484610f7f565b60009081526066602052604090205490565b6001600160a01b031660009081526033602052604090205490565b6065546001600160a01b03163314610b0857600080fd5b6065546040516000916001600160a01b0316907fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a908390a3606580546001600160a01b0319169055565b1860009081526066602052604090205490565b60378054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ba5780601f1061078f576101008083540402835291602001916107ba565b60006107d8610bd3610e68565b846108938560405180606001604052806025815260200161173f6025913960346000610bfd610e68565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110dc565b6065546001600160a01b03163314610c4557600080fd5b606780546001600160a01b0319166001600160a01b0392909216919091179055565b60006107d8610c74610e68565b8484610f7f565b6065546001600160a01b03163314610c9257600080fd5b610ca76001600160a01b038316841882610f58565b505050565b6065546001600160a01b03163314610cc357600080fd5b610ccc81611362565b50565b6065546001600160a01b03163314610ce657600080fd5b610d0283610cf26108a2565b60ff16600a0a62015f90026113d1565b610d1d82610d0e6108a2565b60ff16600a0a611388026113d1565b610ca781610d0e6108a2565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b6065546001600160a01b03163314610d6b57600080fd5b610ca783831882610f58565b600054610100900460ff1680610d905750610d906111d4565b80610d9e575060005460ff16155b610dd95760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff16158015610e04576000805460ff1961ff0019909116610100171660011790555b606580546001600160a01b0319166001600160a01b0384811691909117918290556040519116906000907fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a908290a38015610811576000805461ff00191690555050565b3390565b6001600160a01b038316610eb15760405162461bcd60e51b815260040180806020018281038252602481526020018061171b6024913960400191505060405180910390fd5b6001600160a01b038216610ef65760405162461bcd60e51b81526004018080602001828103825260228152602001806116586022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008281526066602052604090205481146108115760009182526066602052604090912055565b6001600160a01b038316610fc45760405162461bcd60e51b81526004018080602001828103825260258152602001806116f66025913960400191505060405180910390fd5b6001600160a01b0382166110095760405162461bcd60e51b81526004018080602001828103825260238152602001806116356023913960400191505060405180910390fd5b611014838383610ca7565b6110518160405180606001604052806026815260200161167a602691396001600160a01b03861660009081526033602052604090205491906110dc565b6001600160a01b0380851660009081526033602052604080822093909355908416815220546110809082611173565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561116b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611130578181015183820152602001611118565b50505050905090810190601f16801561115d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111cd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006111df306114c3565b15905090565b600054610100900460ff16806111fe57506111fe6111d4565b8061120c575060005460ff16155b6112475760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff16158015611272576000805460ff1961ff0019909116610100171660011790555b8015610ccc576000805461ff001916905550565b600054610100900460ff168061129f575061129f6111d4565b806112ad575060005460ff16155b6112e85760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff16158015611313576000805460ff1961ff0019909116610100171660011790555b61131b6111e5565b61132583836114c9565b8015610ca7576000805461ff0019169055505050565b815161134e9060369060208501906115a1565b508051610ca79060379060208401906115a1565b6001600160a01b03811661137557600080fd5b6065546040516001600160a01b038084169216907fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a90600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661142c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61143860008383610ca7565b6035546114459082611173565b6035556001600160a01b03821660009081526033602052604090205461146b9082611173565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3b151590565b600054610100900460ff16806114e257506114e26111d4565b806114f0575060005460ff16155b61152b5760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a0602e913960400191505060405180910390fd5b600054610100900460ff16158015611556576000805460ff1961ff0019909116610100171660011790555b82516115699060369060208601906115a1565b50815161157d9060379060208501906115a1565b506038805460ff191660121790558015610ca7576000805461ff0019169055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115e257805160ff191683800117855561160f565b8280016001018555821561160f579182015b8281111561160f5782518255916020019190600101906115f4565b5061161b92915061161f565b5090565b5b8082111561161b576000815560010161162056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122093dc7e5666515305420ac8fbda38ff82f8ec78ffd1e899515fad71ec5396af7964736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.