Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 4,583 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Conversion In | 21275440 | 36 mins ago | IN | 0 ETH | 0.00127905 | ||||
Conversion In | 21275334 | 58 mins ago | IN | 0 ETH | 0.00081502 | ||||
Conversion Out | 21274525 | 3 hrs ago | IN | 0 ETH | 0.00086375 | ||||
Conversion In | 21273722 | 6 hrs ago | IN | 0 ETH | 0.00152611 | ||||
Conversion In | 21273408 | 7 hrs ago | IN | 0 ETH | 0.00110254 | ||||
Conversion In | 21272652 | 9 hrs ago | IN | 0 ETH | 0.00229681 | ||||
Conversion In | 21272156 | 11 hrs ago | IN | 0 ETH | 0.00301593 | ||||
Conversion In | 21272064 | 11 hrs ago | IN | 0 ETH | 0.00116957 | ||||
Conversion In | 21271969 | 12 hrs ago | IN | 0 ETH | 0.00123095 | ||||
Conversion Out | 21270893 | 15 hrs ago | IN | 0 ETH | 0.00090442 | ||||
Conversion In | 21270860 | 15 hrs ago | IN | 0 ETH | 0.00117306 | ||||
Conversion In | 21269941 | 19 hrs ago | IN | 0 ETH | 0.00068811 | ||||
Conversion In | 21269800 | 19 hrs ago | IN | 0 ETH | 0.00072272 | ||||
Conversion In | 21269800 | 19 hrs ago | IN | 0 ETH | 0.0006136 | ||||
Conversion In | 21269709 | 19 hrs ago | IN | 0 ETH | 0.00056049 | ||||
Conversion In | 21269691 | 19 hrs ago | IN | 0 ETH | 0.00057567 | ||||
Conversion In | 21269689 | 19 hrs ago | IN | 0 ETH | 0.00059565 | ||||
Conversion In | 21269603 | 20 hrs ago | IN | 0 ETH | 0.00058636 | ||||
Conversion Out | 21268973 | 22 hrs ago | IN | 0 ETH | 0.0005922 | ||||
Conversion Out | 21268434 | 24 hrs ago | IN | 0 ETH | 0.00081537 | ||||
Conversion Out | 21268428 | 24 hrs ago | IN | 0 ETH | 0.00075887 | ||||
Conversion Out | 21268424 | 24 hrs ago | IN | 0 ETH | 0.00089896 | ||||
Conversion Out | 21268413 | 24 hrs ago | IN | 0 ETH | 0.00071572 | ||||
Conversion Out | 21268407 | 24 hrs ago | IN | 0 ETH | 0.0006967 | ||||
Conversion Out | 21268407 | 24 hrs ago | IN | 0 ETH | 0.00067617 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TokenConversionManager
Compiler Version
v0.6.2+commit.bacdbe57
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.6.0; import "@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; contract TokenConversionManager is Ownable, ReentrancyGuard { using SafeMath for uint256; ERC20Burnable public token; // Address of token contract address public conversionAuthorizer; // Authorizer Address for the conversion //already used conversion signature from authorizer in order to prevent replay attack mapping (bytes32 => bool) public usedSignatures; // Conversion Configurations uint256 public perTxnMinAmount; uint256 public perTxnMaxAmount; uint256 public maxSupply; // Method Declaration bytes4 private constant MINT_SELECTOR = bytes4(keccak256("mint(address,uint256)")); // Events event NewAuthorizer(address conversionAuthorizer); event UpdateConfiguration(uint256 perTxnMinAmount, uint256 perTxnMaxAmount, uint256 maxSupply); event ConversionOut(address indexed tokenHolder, bytes32 conversionId, uint256 amount); event ConversionIn(address indexed tokenHolder, bytes32 conversionId, uint256 amount); // Modifiers modifier checkLimits(uint256 amount) { // Check for min, max per transaction limits require(amount >= perTxnMinAmount && amount <= perTxnMaxAmount, "Violates conversion limits"); _; } constructor(address _token) public { token = ERC20Burnable(_token); conversionAuthorizer = msg.sender; } /** * @dev To update the authorizer who can authorize the conversions. */ function updateAuthorizer(address newAuthorizer) external onlyOwner { require(newAuthorizer != address(0), "Invalid operator address"); conversionAuthorizer = newAuthorizer; emit NewAuthorizer(newAuthorizer); } /** * @dev To update the per transaction limits for the conversion and to provide max total supply */ function updateConfigurations(uint256 _perTxnMinAmount, uint256 _perTxnMaxAmount, uint256 _maxSupply) external onlyOwner { // Check for the valid inputs require(_perTxnMinAmount > 0 && _perTxnMaxAmount > _perTxnMinAmount && _maxSupply > 0, "Invalid inputs"); // Update the configurations perTxnMinAmount = _perTxnMinAmount; perTxnMaxAmount = _perTxnMaxAmount; maxSupply = _maxSupply; emit UpdateConfiguration(_perTxnMinAmount, _perTxnMaxAmount, _maxSupply); } /** * @dev To convert the tokens from Ethereum to non Ethereum network. * The tokens which needs to be convereted will be burned on the host network. * The conversion authorizer needs to provide the signature to call this function. */ function conversionOut(uint256 amount, bytes32 conversionId, uint8 v, bytes32 r, bytes32 s) external checkLimits(amount) nonReentrant { // Check for non zero value for the amount is not needed as the Signature will not be generated for zero amount // Check for the Balance require(token.balanceOf(msg.sender) >= amount, "Not enough balance"); //compose the message which was signed bytes32 message = prefixed(keccak256(abi.encodePacked("__conversionOut", amount, msg.sender, conversionId, this))); // check that the signature is from the authorizer address signAddress = ecrecover(message, v, r, s); require(signAddress == conversionAuthorizer, "Invalid request or signature"); //check for replay attack (message signature can be used only once) require( ! usedSignatures[message], "Signature has already been used"); usedSignatures[message] = true; // Burn the tokens on behalf of the Wallet token.burnFrom(msg.sender, amount); emit ConversionOut(msg.sender, conversionId, amount); } /** * @dev To convert the tokens from non Ethereum to Ethereum network. * The tokens which needs to be convereted will be minted on the host network. * The conversion authorizer needs to provide the signature to call this function. */ function conversionIn(address to, uint256 amount, bytes32 conversionId, uint8 v, bytes32 r, bytes32 s) external checkLimits(amount) nonReentrant { // Check for the valid destimation wallet require(to != address(0), "Invalid wallet"); // Check for non zero value for the amount is not needed as the Signature will not be generated for zero amount //compose the message which was signed bytes32 message = prefixed(keccak256(abi.encodePacked("__conversionIn", amount, msg.sender, conversionId, this))); // check that the signature is from the authorizer address signAddress = ecrecover(message, v, r, s); require(signAddress == conversionAuthorizer, "Invalid request or signature"); //check for replay attack (message signature can be used only once) require( ! usedSignatures[message], "Signature has already been used"); usedSignatures[message] = true; // Check for the supply require(token.totalSupply().add(amount) <= maxSupply, "Invalid Amount"); // Mint the tokens and transfer to the User Wallet using the Call function // token.mint(amount, msg.sender); (bool success, ) = address(token).call(abi.encodeWithSelector(MINT_SELECTOR, to, amount)); // In case if the mint call fails require(success, "ConversionIn Failed"); emit ConversionIn(msg.sender, conversionId, amount); } /// builds a prefixed hash to mimic the behavior of ethSign. function prefixed(bytes32 hash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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.0; import "../../GSN/Context.sol"; import "./ERC20.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"},{"indexed":false,"internalType":"bytes32","name":"conversionId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ConversionIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"},{"indexed":false,"internalType":"bytes32","name":"conversionId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ConversionOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"conversionAuthorizer","type":"address"}],"name":"NewAuthorizer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"perTxnMinAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"perTxnMaxAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"UpdateConfiguration","type":"event"},{"inputs":[],"name":"conversionAuthorizer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"conversionId","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"conversionIn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"conversionId","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"conversionOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perTxnMaxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perTxnMinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract ERC20Burnable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAuthorizer","type":"address"}],"name":"updateAuthorizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_perTxnMinAmount","type":"uint256"},{"internalType":"uint256","name":"_perTxnMaxAmount","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"updateConfigurations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedSignatures","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516111813803806111818339818101604052602081101561003357600080fd5b505160006100486001600160e01b036100c416565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055600280546001600160a01b039092166001600160a01b031992831617905560038054909116331790556100c8565b3390565b6110aa806100d76000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80639f23c9e21161008c578063e44bf99a11610066578063e44bf99a146101fa578063f2fde38b14610202578063f978fd6114610228578063fc0c546a14610259576100cf565b80639f23c9e214610194578063d5abeb01146101cc578063e0a66578146101d4576100cf565b8063529c0970146100d45780636a02fcc4146100ff578063715018a61461014657806380d9d9631461014e57806386de8586146101685780638da5cb5b14610170575b600080fd5b6100fd600480360360608110156100ea57600080fd5b5080359060208101359060400135610261565b005b6100fd600480360360c081101561011557600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a0013561036a565b6100fd61089b565b61015661093d565b60408051918252519081900360200190f35b610156610943565b610178610949565b604080516001600160a01b039092168252519081900360200190f35b6100fd600480360360a08110156101aa57600080fd5b5080359060208101359060ff6040820135169060608101359060800135610958565b610156610d40565b6100fd600480360360208110156101ea57600080fd5b50356001600160a01b0316610d46565b610178610e4d565b6100fd6004803603602081101561021857600080fd5b50356001600160a01b0316610e5c565b6102456004803603602081101561023e57600080fd5b5035610f54565b604080519115158252519081900360200190f35b610178610f69565b610269610f78565b6000546001600160a01b039081169116146102b9576040805162461bcd60e51b81526020600482018190526024820152600080516020611055833981519152604482015290519081900360640190fd5b6000831180156102c857508282115b80156102d45750600081115b610316576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c696420696e7075747360901b604482015290519081900360640190fd5b600583905560068290556007819055604080518481526020810184905280820183905290517fb2efb0aa6e279553a1e5567ebb495d322192aa43c5fc3073cba4601d52009ab49181900360600190a1505050565b84600554811015801561037f57506006548111155b6103d0576040805162461bcd60e51b815260206004820152601a60248201527f56696f6c6174657320636f6e76657273696f6e206c696d697473000000000000604482015290519081900360640190fd5b60026001541415610428576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001556001600160a01b038716610479576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b604482015290519081900360640190fd5b604080516d2fafb1b7b73b32b939b4b7b724b760911b602080830191909152602e820189905233606090811b604e8401526062830189905230901b608283015282516076818403018152609690920190925280519101206000906104dc90610f7c565b9050600060018287878760405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa15801561053d573d6000803e3d6000fd5b5050604051601f1901516003549092506001600160a01b0380841691161490506105ae576040805162461bcd60e51b815260206004820152601c60248201527f496e76616c69642072657175657374206f72207369676e617475726500000000604482015290519081900360640190fd5b60008281526004602052604090205460ff1615610612576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b600082815260046020818152604092839020805460ff1916600117905560075460025484516318160ddd60e01b8152945191946106b0948e946001600160a01b03909316936318160ddd9383830193909290829003018186803b15801561067857600080fd5b505afa15801561068c573d6000803e3d6000fd5b505050506040513d60208110156106a257600080fd5b50519063ffffffff610fcd16565b11156106f4576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b604482015290519081900360640190fd5b60025460408051746d696e7428616464726573732c75696e743235362960581b815281519081900360150181206001600160a01b038d8116602484015260448084018e905284518085039091018152606490930184526020830180516001600160e01b03166001600160e01b0319909316929092178252925182516000959490941693909182918083835b6020831061079e5780518252601f19909201916020918201910161077f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610800576040519150601f19603f3d011682016040523d82523d6000602084013e610805565b606091505b5050905080610851576040805162461bcd60e51b815260206004820152601360248201527210dbdb9d995c9cda5bdb925b8811985a5b1959606a1b604482015290519081900360640190fd5b60408051898152602081018b9052815133927f62a9b3e6446ab559d6b82c4f02cc923cd3b4e47444ef86446dab81a4d781c5af928290030190a25050600180555050505050505050565b6108a3610f78565b6000546001600160a01b039081169116146108f3576040805162461bcd60e51b81526020600482018190526024820152600080516020611055833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60055481565b60065481565b6000546001600160a01b031690565b84600554811015801561096d57506006548111155b6109be576040805162461bcd60e51b815260206004820152601a60248201527f56696f6c6174657320636f6e76657273696f6e206c696d697473000000000000604482015290519081900360640190fd5b60026001541415610a16576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905554604080516370a0823160e01b8152336004820152905188926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610a6557600080fd5b505afa158015610a79573d6000803e3d6000fd5b505050506040513d6020811015610a8f57600080fd5b50511015610ad9576040805162461bcd60e51b81526020600482015260126024820152714e6f7420656e6f7567682062616c616e636560701b604482015290519081900360640190fd5b604080516e17d7d8dbdb9d995c9cda5bdb93dd5d608a1b602080830191909152602f820189905233606090811b604f8401526063830189905230901b60838301528251607781840301815260979092019092528051910120600090610b3d90610f7c565b9050600060018287878760405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015610b9e573d6000803e3d6000fd5b5050604051601f1901516003549092506001600160a01b038084169116149050610c0f576040805162461bcd60e51b815260206004820152601c60248201527f496e76616c69642072657175657374206f72207369676e617475726500000000604482015290519081900360640190fd5b60008281526004602052604090205460ff1615610c73576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b6000828152600460208190526040808320805460ff19166001179055600254815163079cc67960e41b81523393810193909352602483018c905290516001600160a01b03909116926379cc6790926044808201939182900301818387803b158015610cdd57600080fd5b505af1158015610cf1573d6000803e3d6000fd5b5050604080518a8152602081018c905281513394507fb999b06746a947f1958636b9b9377ae814fe578413dfffd4d3a7a96196fe02fc93509081900390910190a2505060018055505050505050565b60075481565b610d4e610f78565b6000546001600160a01b03908116911614610d9e576040805162461bcd60e51b81526020600482018190526024820152600080516020611055833981519152604482015290519081900360640190fd5b6001600160a01b038116610df9576040805162461bcd60e51b815260206004820152601860248201527f496e76616c6964206f70657261746f7220616464726573730000000000000000604482015290519081900360640190fd5b600380546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f08f53e6a9fbc3949bc0b9266bbe1927f0b282a34d92876ccbe188c24d17c6cbb9181900360200190a150565b6003546001600160a01b031681565b610e64610f78565b6000546001600160a01b03908116911614610eb4576040805162461bcd60e51b81526020600482018190526024820152600080516020611055833981519152604482015290519081900360640190fd5b6001600160a01b038116610ef95760405162461bcd60e51b815260040180806020018281038252602681526020018061102f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60046020526000908152604090205460ff1681565b6002546001600160a01b031681565b3390565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b600082820183811015611027576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122091ecd86aa848e3437428007e5ba215ef5d565b132bdc431bc16144b960f5be0564736f6c634300060200330000000000000000000000005b7533812759b45c2b44c19e320ba2cd2681b542
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80639f23c9e21161008c578063e44bf99a11610066578063e44bf99a146101fa578063f2fde38b14610202578063f978fd6114610228578063fc0c546a14610259576100cf565b80639f23c9e214610194578063d5abeb01146101cc578063e0a66578146101d4576100cf565b8063529c0970146100d45780636a02fcc4146100ff578063715018a61461014657806380d9d9631461014e57806386de8586146101685780638da5cb5b14610170575b600080fd5b6100fd600480360360608110156100ea57600080fd5b5080359060208101359060400135610261565b005b6100fd600480360360c081101561011557600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a0013561036a565b6100fd61089b565b61015661093d565b60408051918252519081900360200190f35b610156610943565b610178610949565b604080516001600160a01b039092168252519081900360200190f35b6100fd600480360360a08110156101aa57600080fd5b5080359060208101359060ff6040820135169060608101359060800135610958565b610156610d40565b6100fd600480360360208110156101ea57600080fd5b50356001600160a01b0316610d46565b610178610e4d565b6100fd6004803603602081101561021857600080fd5b50356001600160a01b0316610e5c565b6102456004803603602081101561023e57600080fd5b5035610f54565b604080519115158252519081900360200190f35b610178610f69565b610269610f78565b6000546001600160a01b039081169116146102b9576040805162461bcd60e51b81526020600482018190526024820152600080516020611055833981519152604482015290519081900360640190fd5b6000831180156102c857508282115b80156102d45750600081115b610316576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c696420696e7075747360901b604482015290519081900360640190fd5b600583905560068290556007819055604080518481526020810184905280820183905290517fb2efb0aa6e279553a1e5567ebb495d322192aa43c5fc3073cba4601d52009ab49181900360600190a1505050565b84600554811015801561037f57506006548111155b6103d0576040805162461bcd60e51b815260206004820152601a60248201527f56696f6c6174657320636f6e76657273696f6e206c696d697473000000000000604482015290519081900360640190fd5b60026001541415610428576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001556001600160a01b038716610479576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b604482015290519081900360640190fd5b604080516d2fafb1b7b73b32b939b4b7b724b760911b602080830191909152602e820189905233606090811b604e8401526062830189905230901b608283015282516076818403018152609690920190925280519101206000906104dc90610f7c565b9050600060018287878760405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa15801561053d573d6000803e3d6000fd5b5050604051601f1901516003549092506001600160a01b0380841691161490506105ae576040805162461bcd60e51b815260206004820152601c60248201527f496e76616c69642072657175657374206f72207369676e617475726500000000604482015290519081900360640190fd5b60008281526004602052604090205460ff1615610612576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b600082815260046020818152604092839020805460ff1916600117905560075460025484516318160ddd60e01b8152945191946106b0948e946001600160a01b03909316936318160ddd9383830193909290829003018186803b15801561067857600080fd5b505afa15801561068c573d6000803e3d6000fd5b505050506040513d60208110156106a257600080fd5b50519063ffffffff610fcd16565b11156106f4576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b604482015290519081900360640190fd5b60025460408051746d696e7428616464726573732c75696e743235362960581b815281519081900360150181206001600160a01b038d8116602484015260448084018e905284518085039091018152606490930184526020830180516001600160e01b03166001600160e01b0319909316929092178252925182516000959490941693909182918083835b6020831061079e5780518252601f19909201916020918201910161077f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610800576040519150601f19603f3d011682016040523d82523d6000602084013e610805565b606091505b5050905080610851576040805162461bcd60e51b815260206004820152601360248201527210dbdb9d995c9cda5bdb925b8811985a5b1959606a1b604482015290519081900360640190fd5b60408051898152602081018b9052815133927f62a9b3e6446ab559d6b82c4f02cc923cd3b4e47444ef86446dab81a4d781c5af928290030190a25050600180555050505050505050565b6108a3610f78565b6000546001600160a01b039081169116146108f3576040805162461bcd60e51b81526020600482018190526024820152600080516020611055833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60055481565b60065481565b6000546001600160a01b031690565b84600554811015801561096d57506006548111155b6109be576040805162461bcd60e51b815260206004820152601a60248201527f56696f6c6174657320636f6e76657273696f6e206c696d697473000000000000604482015290519081900360640190fd5b60026001541415610a16576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905554604080516370a0823160e01b8152336004820152905188926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610a6557600080fd5b505afa158015610a79573d6000803e3d6000fd5b505050506040513d6020811015610a8f57600080fd5b50511015610ad9576040805162461bcd60e51b81526020600482015260126024820152714e6f7420656e6f7567682062616c616e636560701b604482015290519081900360640190fd5b604080516e17d7d8dbdb9d995c9cda5bdb93dd5d608a1b602080830191909152602f820189905233606090811b604f8401526063830189905230901b60838301528251607781840301815260979092019092528051910120600090610b3d90610f7c565b9050600060018287878760405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015610b9e573d6000803e3d6000fd5b5050604051601f1901516003549092506001600160a01b038084169116149050610c0f576040805162461bcd60e51b815260206004820152601c60248201527f496e76616c69642072657175657374206f72207369676e617475726500000000604482015290519081900360640190fd5b60008281526004602052604090205460ff1615610c73576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b6000828152600460208190526040808320805460ff19166001179055600254815163079cc67960e41b81523393810193909352602483018c905290516001600160a01b03909116926379cc6790926044808201939182900301818387803b158015610cdd57600080fd5b505af1158015610cf1573d6000803e3d6000fd5b5050604080518a8152602081018c905281513394507fb999b06746a947f1958636b9b9377ae814fe578413dfffd4d3a7a96196fe02fc93509081900390910190a2505060018055505050505050565b60075481565b610d4e610f78565b6000546001600160a01b03908116911614610d9e576040805162461bcd60e51b81526020600482018190526024820152600080516020611055833981519152604482015290519081900360640190fd5b6001600160a01b038116610df9576040805162461bcd60e51b815260206004820152601860248201527f496e76616c6964206f70657261746f7220616464726573730000000000000000604482015290519081900360640190fd5b600380546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f08f53e6a9fbc3949bc0b9266bbe1927f0b282a34d92876ccbe188c24d17c6cbb9181900360200190a150565b6003546001600160a01b031681565b610e64610f78565b6000546001600160a01b03908116911614610eb4576040805162461bcd60e51b81526020600482018190526024820152600080516020611055833981519152604482015290519081900360640190fd5b6001600160a01b038116610ef95760405162461bcd60e51b815260040180806020018281038252602681526020018061102f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60046020526000908152604090205460ff1681565b6002546001600160a01b031681565b3390565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b600082820183811015611027576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122091ecd86aa848e3437428007e5ba215ef5d565b132bdc431bc16144b960f5be0564736f6c63430006020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005b7533812759b45c2b44c19e320ba2cd2681b542
-----Decoded View---------------
Arg [0] : _token (address): 0x5B7533812759B45C2B44C19e320ba2cD2681b542
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005b7533812759b45c2b44c19e320ba2cd2681b542
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.