Overview ERC-20
Price
$0.02 @ 0.021953 MATIC (-0.86%)
Fully Diluted Market Cap
Total Supply:
999,993,920 ZED
Holders:
16,500 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Future Future Labs has collaborated with ZED RUN to develop, integrate, and distribute the ZED Token to provide access to a wider range of game functionality.Market
Volume (24H) | : | $101,257.00 |
Market Capitalization | : | $0.00 |
Circulating Supply | : | 0.00 ZED |
Market Data Source: Coinmarketcap |
Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BridgeToken
Compiler Version
v0.8.4+commit.c7e474f2
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.8.4; import "./common/ERC20Bridge.sol"; import "./interfaces/IChildToken.sol"; import "./common/EIP712MetaTransaction.sol"; // BridgeToken is Capped contract BridgeToken is ERC20Bridge, IChildToken, EIP712MetaTransaction { uint256 private immutable _cap; address public childChainManagerProxy; constructor( string memory _erc20Name, string memory _erc20Symbol, uint8 _decimals, uint256 cap_, address[] memory _mintAddresses, uint256[] memory _mintAmounts, address _childChainManagerProxy ) ERC20Bridge(_erc20Name, _erc20Symbol, _decimals) { require(_mintAddresses.length == _mintAmounts.length, "must have same number of mint addresses and amounts"); require(address(0) != _childChainManagerProxy, "manager proxy is undefined"); require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; childChainManagerProxy = _childChainManagerProxy; for (uint i; i < _mintAddresses.length; i++) { require(_mintAddresses[i] != address(0), "cannot have a non-address as reserve"); _mint(_mintAddresses[i], _mintAmounts[i]); } require(cap_ >= totalSupply(), "total supply of tokens cannot exceed the cap"); } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } function deposit(address user, bytes calldata depositData) override external { require(_msgSender() == childChainManagerProxy, "You're not allowed to deposit"); uint256 amount = abi.decode(depositData, (uint256)); require(cap() >= this.totalSupply() + amount, "ERC20Capped: cap exceeded"); _mint(user, amount); } function withdraw(uint256 amount) external { _burn(_msgSender(), amount); } function _msgSender() internal view override returns (address sender) { return EIP712MetaTransaction.msgSender(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 ERC20Bridge is Context, ERC20 { uint8 private _decimals; constructor (string memory name_, string memory symbol_, uint8 decimals_) ERC20(name_, symbol_) { _decimals = decimals_; } function decimals() public view override returns (uint8) { return _decimals; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; interface IChildToken { function deposit(address user, bytes calldata depositData) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./EIP712Base.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /** @title Interface to enable MetaTransactions */ contract EIP712MetaTransaction is EIP712Base { using Address for address; bytes32 private constant META_TRANSACTION_TYPEHASH = // solium-disable-next-line keccak256(bytes("MetaTransaction(uint256 nonce,address from,bytes functionSignature)")); event MetaTransactionExecuted(address indexed _userAddress, address payable indexed _relayerAddress, bytes _functionSignature); mapping(address => uint256) public nonces; /** @dev Meta transaction structure. @dev No point of including value field here as if user is doing value transfer then he has the funds to pay for gas @dev He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } /** @notice Executes a MetaTransaction @param _userAddress The address of the user @param _functionSignature The signature of the function @param _sigR ECDSA signature @param _sigS ECDS signature @param _sigV Recovery ID signature */ function executeMetaTransaction( address _userAddress, bytes memory _functionSignature, bytes32 _sigR, bytes32 _sigS, uint8 _sigV ) external payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction(nonces[_userAddress], _userAddress, _functionSignature); require( verify(_userAddress, metaTx, _sigR, _sigS, _sigV), "EIP712MetaTransaction: Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[_userAddress]++; emit MetaTransactionExecuted(_userAddress, payable(msg.sender), _functionSignature); // Append userAddress and relayer address at the end to extract it from calling context bytes memory returnData = address(this).functionCall(abi.encodePacked(_functionSignature, _userAddress)); return returnData; } /** @notice Hashes a meta transaction @param _metaTx The MetaTransaction struct @return bytes Representing the hashed meta transaction */ function hashMetaTransaction(MetaTransaction memory _metaTx) internal pure returns (bytes32) { return keccak256( abi.encode(META_TRANSACTION_TYPEHASH, _metaTx.nonce, _metaTx.from, keccak256(_metaTx.functionSignature)) ); } /** @notice Returns the message sender of a transaction, not the relayer @return sender Representing the message sender */ function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; // solium-disable-next-line assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and(mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff) } } else { sender = payable(msg.sender); } return sender; } /** @notice Gets the nonce of a particular address @param _user Address of the user @return uint256 Representing the nonce of a particular address */ function getNonce(address _user) public view returns (uint256) { return nonces[_user]; } /** @notice Verifies the meta transaction being executed @param _signer Address of transaction's signer @param _metaTx The MetaTransaction struct @param _sigR ECDSA signature @param _sigS ECDS signature @param _sigV Recovery ID signature @return bool Representing whether or not the transaction is valid */ function verify( address _signer, MetaTransaction memory _metaTx, bytes32 _sigR, bytes32 _sigS, uint8 _sigV ) internal view returns (bool) { require(_signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return _signer == ecrecover(toTypedMessageHash(hashMetaTransaction(_metaTx)), _sigV, _sigR, _sigS); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (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"); (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"); (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"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; contract EIP712Base is Ownable { bytes constant EIP721_DOMAIN_BYTES = // solium-disable-next-line bytes("EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"); struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } bytes32 internal domainSeparator; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(EIP721_DOMAIN_BYTES); /** @notice Sets domain separator @param _name Name of the domain @param _version Version of the domain @param _chainId ID of the chain */ function setDomainSeparator( string memory _name, string memory _version, uint256 _chainId ) public onlyOwner { require(domainSeparator == bytes32(0), "EIP721Base: domain separator is already set"); domainSeparator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(_name)), keccak256(bytes(_version)), address(this), bytes32(_chainId) ) ); } /** @notice Gets domain separator @return bytes32 R epresenting the domain separator */ function getDomainSeparator() public view returns (bytes32) { return domainSeparator; } /** @dev Accept message hash and returns hash message in EIP712 compatible form @dev So that it can be used to recover signer from signature signed using EIP712 formatted data @dev https://eips.ethereum.org/EIPS/eip-712 @dev "\\x19" makes the encoding deterministic @dev "\\x01" is the version byte to make it compatible to EIP-191 @param _messageHash Hash of the message @return bytes32 Representing the typed hash of `_messageHash` */ function toTypedMessageHash(bytes32 _messageHash) internal view returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", getDomainSeparator(), _messageHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_erc20Name","type":"string"},{"internalType":"string","name":"_erc20Symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"cap_","type":"uint256"},{"internalType":"address[]","name":"_mintAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"},{"internalType":"address","name":"_childChainManagerProxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_userAddress","type":"address"},{"indexed":true,"internalType":"address payable","name":"_relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"_functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"childChainManagerProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"user","type":"address"},{"internalType":"bytes","name":"depositData","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"},{"internalType":"bytes","name":"_functionSignature","type":"bytes"},{"internalType":"bytes32","name":"_sigR","type":"bytes32"},{"internalType":"bytes32","name":"_sigS","type":"bytes32"},{"internalType":"uint8","name":"_sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getDomainSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_version","type":"string"},{"internalType":"uint256","name":"_chainId","type":"uint256"}],"name":"setDomainSeparator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620023a7380380620023a7833981016040819052620000349162000776565b86868682828160039080519060200190620000519291906200052c565b508051620000679060049060208401906200052c565b50506005805460ff191660ff93909316929092179091555062000097915062000091905062000372565b6200038e565b8151835114620001145760405162461bcd60e51b815260206004820152603360248201527f6d75737420686176652073616d65206e756d626572206f66206d696e7420616460448201527f6472657373657320616e6420616d6f756e74730000000000000000000000000060648201526084015b60405180910390fd5b6001600160a01b0381166200016c5760405162461bcd60e51b815260206004820152601a60248201527f6d616e616765722070726f787920697320756e646566696e656400000000000060448201526064016200010b565b60008411620001be5760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064016200010b565b6080849052600880546001600160a01b0319166001600160a01b03831617905560005b8351811015620002fb5760006001600160a01b03168482815181106200021757634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03161415620002845760405162461bcd60e51b8152602060048201526024808201527f63616e6e6f7420686176652061206e6f6e2d61646472657373206173207265736044820152636572766560e01b60648201526084016200010b565b620002e6848281518110620002a957634e487b7160e01b600052603260045260246000fd5b6020026020010151848381518110620002d257634e487b7160e01b600052603260045260246000fd5b6020026020010151620003e860201b60201c565b80620002f2816200090a565b915050620001e1565b50600254841015620003655760405162461bcd60e51b815260206004820152602c60248201527f746f74616c20737570706c79206f6620746f6b656e732063616e6e6f7420657860448201526b06365656420746865206361760a41b60648201526084016200010b565b5050505050505062000954565b600062000389620004cd60201b62000ac31760201c565b905090565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004405760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200010b565b8060026000828254620004549190620008b2565b90915550506001600160a01b0382166000908152602081905260408120805483929062000483908490620008b2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000333014156200052657600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620005299050565b50335b90565b8280546200053a90620008cd565b90600052602060002090601f0160209004810192826200055e5760008555620005a9565b82601f106200057957805160ff1916838001178555620005a9565b82800160010185558215620005a9579182015b82811115620005a95782518255916020019190600101906200058c565b50620005b7929150620005bb565b5090565b5b80821115620005b75760008155600101620005bc565b80516001600160a01b0381168114620005ea57600080fd5b919050565b600082601f83011262000600578081fd5b815160206200061962000613836200088c565b62000859565b80838252828201915082860187848660051b890101111562000639578586fd5b855b8581101562000662576200064f82620005d2565b845292840192908401906001016200063b565b5090979650505050505050565b600082601f83011262000680578081fd5b815160206200069362000613836200088c565b80838252828201915082860187848660051b8901011115620006b3578586fd5b855b858110156200066257815184529284019290840190600101620006b5565b600082601f830112620006e4578081fd5b81516001600160401b038111156200070057620007006200093e565b602062000716601f8301601f1916820162000859565b82815285828487010111156200072a578384fd5b835b83811015620007495785810183015182820184015282016200072c565b838111156200075a57848385840101525b5095945050505050565b805160ff81168114620005ea57600080fd5b600080600080600080600060e0888a03121562000791578283fd5b87516001600160401b0380821115620007a8578485fd5b620007b68b838c01620006d3565b985060208a0151915080821115620007cc578485fd5b620007da8b838c01620006d3565b9750620007ea60408b0162000764565b965060608a0151955060808a015191508082111562000807578485fd5b620008158b838c01620005ef565b945060a08a01519150808211156200082b578384fd5b506200083a8a828b016200066f565b9250506200084b60c08901620005d2565b905092959891949750929550565b604051601f8201601f191681016001600160401b03811182821017156200088457620008846200093e565b604052919050565b60006001600160401b03821115620008a857620008a86200093e565b5060051b60200190565b60008219821115620008c857620008c862000928565b500190565b600181811c90821680620008e257607f821691505b602082108114156200090457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000921576200092162000928565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b608051611a30620009776000396000818161027b01526109a50152611a306000f3fe6080604052600436106101405760003560e01c80636678268c116100b6578063a457c2d71161006f578063a457c2d7146103c7578063a9059cbb146103e7578063cf2c52cb14610407578063dd62ed3e14610427578063ed24911d14610447578063f2fde38b1461045c57600080fd5b80636678268c146102f757806370a0823114610317578063715018a61461034d5780637ecebe00146103625780638da5cb5b1461038f57806395d89b41146103b257600080fd5b80632d0335ab116101085780632d0335ab146101f25780632e1a7d4d14610228578063313ce5671461024a578063355274ea1461026c578063395093511461029f57806362f629e7146102bf57600080fd5b806306fdde0314610145578063095ea7b3146101705780630c53c51c146101a057806318160ddd146101b357806323b872dd146101d2575b600080fd5b34801561015157600080fd5b5061015a61047c565b6040516101679190611878565b60405180910390f35b34801561017c57600080fd5b5061019061018b366004611736565b61050e565b6040519015158152602001610167565b61015a6101ae3660046116aa565b610530565b3480156101bf57600080fd5b506002545b604051908152602001610167565b3480156101de57600080fd5b506101906101ed3660046115f1565b610694565b3480156101fe57600080fd5b506101c461020d3660046115a5565b6001600160a01b031660009081526007602052604090205490565b34801561023457600080fd5b506102486102433660046117c9565b6106c4565b005b34801561025657600080fd5b5060055460405160ff9091168152602001610167565b34801561027857600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006101c4565b3480156102ab57600080fd5b506101906102ba366004611736565b6106d8565b3480156102cb57600080fd5b506008546102df906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b34801561030357600080fd5b5061024861031236600461175f565b610704565b34801561032357600080fd5b506101c46103323660046115a5565b6001600160a01b031660009081526020819052604090205490565b34801561035957600080fd5b506102486107e1565b34801561036e57600080fd5b506101c461037d3660046115a5565b60076020526000908152604090205481565b34801561039b57600080fd5b5060055461010090046001600160a01b03166102df565b3480156103be57600080fd5b5061015a6107f5565b3480156103d357600080fd5b506101906103e2366004611736565b610804565b3480156103f357600080fd5b50610190610402366004611736565b610895565b34801561041357600080fd5b5061024861042236600461162c565b6108ad565b34801561043357600080fd5b506101c46104423660046115bf565b610a22565b34801561045357600080fd5b506006546101c4565b34801561046857600080fd5b506102486104773660046115a5565b610a4d565b60606003805461048b906118e6565b80601f01602080910402602001604051908101604052809291908181526020018280546104b7906118e6565b80156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b600080610519610b20565b9050610526818585610b2f565b5060019392505050565b60408051606081810183526001600160a01b0388166000818152600760209081529085902054845283015291810186905261056e8782878787610c54565b6105e55760405162461bcd60e51b815260206004820152603860248201527f4549503731324d6574615472616e73616374696f6e3a205369676e657220616e60448201527f64207369676e617475726520646f206e6f74206d61746368000000000000000060648201526084015b60405180910390fd5b6001600160a01b038716600090815260076020526040812080549161060983611921565b9190505550336001600160a01b0316876001600160a01b03167f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b886040516106519190611878565b60405180910390a360006106888789604051602001610671929190611841565b60408051601f198184030181529190523090610d44565b98975050505050505050565b60008061069f610b20565b90506106ac858285610d86565b6106b7858585610dfa565b60019150505b9392505050565b6106d56106cf610b20565b82610fc8565b50565b6000806106e3610b20565b90506105268185856106f58589610a22565b6106ff919061188b565b610b2f565b61070c61110e565b600654156107705760405162461bcd60e51b815260206004820152602b60248201527f454950373231426173653a20646f6d61696e20736570617261746f722069732060448201526a185b1c9958591e481cd95d60aa1b60648201526084016105dc565b6040518060800160405280604f81526020016119ac604f91398051602091820120845185830120845185840120604080519485019390935291830152606082015230608082015260a0810182905260c00160408051601f198184030181529190528051602090910120600655505050565b6107e961110e565b6107f3600061118d565b565b60606004805461048b906118e6565b60008061080f610b20565b9050600061081d8286610a22565b90508381101561087d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105dc565b61088a8286868403610b2f565b506001949350505050565b6000806108a0610b20565b9050610526818585610dfa565b6008546001600160a01b03166108c1610b20565b6001600160a01b0316146109175760405162461bcd60e51b815260206004820152601d60248201527f596f75277265206e6f7420616c6c6f77656420746f206465706f73697400000060448201526064016105dc565b6000610925828401846117c9565b905080306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561096157600080fd5b505afa158015610975573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099991906117e1565b6109a3919061188b565b7f00000000000000000000000000000000000000000000000000000000000000001015610a125760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105dc565b610a1c84826111e7565b50505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a5561110e565b6001600160a01b038116610aba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105dc565b6106d58161118d565b600033301415610b1a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150610b1d9050565b50335b90565b6000610b2a610ac3565b905090565b6001600160a01b038316610b915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105dc565b6001600160a01b038216610bf25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105dc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006001600160a01b038616610cba5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016105dc565b6001610ccd610cc8876112c6565b611343565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015610d1b573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60606106bd83836040518060400160405280601e81526020017f416464726573733a206c6f772d6c6576656c2063616c6c206661696c65640000815250611373565b6000610d928484610a22565b90506000198114610a1c5781811015610ded5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105dc565b610a1c8484848403610b2f565b6001600160a01b038316610e5e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105dc565b6001600160a01b038216610ec05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105dc565b6001600160a01b03831660009081526020819052604090205481811015610f385760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105dc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610f6f90849061188b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fbb91815260200190565b60405180910390a3610a1c565b6001600160a01b0382166110285760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105dc565b6001600160a01b0382166000908152602081905260409020548181101561109c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105dc565b6001600160a01b03831660009081526020819052604081208383039055600280548492906110cb9084906118a3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c47565b611116610b20565b6001600160a01b03166111376005546001600160a01b036101009091041690565b6001600160a01b0316146107f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105dc565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661123d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105dc565b806002600082825461124f919061188b565b90915550506001600160a01b0382166000908152602081905260408120805483929061127c90849061188b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006040518060800160405280604381526020016119696043913980516020918201208351848301516040808701518051908601209051611326950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061134e60065490565b60405161190160f01b6020820152602281019190915260428101839052606201611326565b6060611382848460008561138a565b949350505050565b6060824710156113eb5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016105dc565b6001600160a01b0385163b6114425760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105dc565b600080866001600160a01b0316858760405161145e9190611825565b60006040518083038185875af1925050503d806000811461149b576040519150601f19603f3d011682016040523d82523d6000602084013e6114a0565b606091505b50915091506114b08282866114bb565b979650505050505050565b606083156114ca5750816106bd565b8251156114da5782518084602001fd5b8160405162461bcd60e51b81526004016105dc9190611878565b600067ffffffffffffffff8084111561150f5761150f611952565b604051601f8501601f19908116603f0116810190828211818310171561153757611537611952565b8160405280935085815286868601111561155057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461158157600080fd5b919050565b600082601f830112611596578081fd5b6106bd838335602085016114f4565b6000602082840312156115b6578081fd5b6106bd8261156a565b600080604083850312156115d1578081fd5b6115da8361156a565b91506115e86020840161156a565b90509250929050565b600080600060608486031215611605578081fd5b61160e8461156a565b925061161c6020850161156a565b9150604084013590509250925092565b600080600060408486031215611640578283fd5b6116498461156a565b9250602084013567ffffffffffffffff80821115611665578384fd5b818601915086601f830112611678578384fd5b813581811115611686578485fd5b876020828501011115611697578485fd5b6020830194508093505050509250925092565b600080600080600060a086880312156116c1578081fd5b6116ca8661156a565b9450602086013567ffffffffffffffff8111156116e5578182fd5b8601601f810188136116f5578182fd5b611704888235602084016114f4565b9450506040860135925060608601359150608086013560ff81168114611728578182fd5b809150509295509295909350565b60008060408385031215611748578182fd5b6117518361156a565b946020939093013593505050565b600080600060608486031215611773578283fd5b833567ffffffffffffffff8082111561178a578485fd5b61179687838801611586565b945060208601359150808211156117ab578384fd5b506117b886828701611586565b925050604084013590509250925092565b6000602082840312156117da578081fd5b5035919050565b6000602082840312156117f2578081fd5b5051919050565b600081518084526118118160208601602086016118ba565b601f01601f19169290920160200192915050565b600082516118378184602087016118ba565b9190910192915050565b600083516118538184602088016118ba565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6020815260006106bd60208301846117f9565b6000821982111561189e5761189e61193c565b500190565b6000828210156118b5576118b561193c565b500390565b60005b838110156118d55781810151838201526020016118bd565b83811115610a1c5750506000910152565b600181811c908216806118fa57607f821691505b6020821081141561191b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119355761193561193c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429a2646970667358221220abc321e4d5d477fcce375a48a06ffbaf4ec824310f29a14f8f0fb5d63aeab8d164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa00000000000000000000000000000000000000000000000000000000000000075a45442052554e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a454400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020220a3792a41c88406058e193632cc8192e7d60000000000000000000000007f1b5182f37219dc95def93bdb8da93c5f3c45d8000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000301472905447742e200000000000000000000000000000000000000000000000039e7139a8c08fa06000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa00000000000000000000000000000000000000000000000000000000000000075a45442052554e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a454400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020220a3792a41c88406058e193632cc8192e7d60000000000000000000000007f1b5182f37219dc95def93bdb8da93c5f3c45d8000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000301472905447742e200000000000000000000000000000000000000000000000039e7139a8c08fa06000000
-----Decoded View---------------
Arg [0] : _erc20Name (string): ZED RUN
Arg [1] : _erc20Symbol (string): ZED
Arg [2] : _decimals (uint8): 18
Arg [3] : cap_ (uint256): 1000000000000000000000000000
Arg [4] : _mintAddresses (address[]): 0x020220a3792a41c88406058e193632cc8192e7d6,0x7f1b5182f37219dc95def93bdb8da93c5f3c45d8
Arg [5] : _mintAmounts (uint256[]): 930000000000000000000000000,70000000000000000000000000
Arg [6] : _childChainManagerProxy (address): 0xa6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 5a45442052554e00000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 5a45440000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 000000000000000000000000020220a3792a41c88406058e193632cc8192e7d6
Arg [13] : 0000000000000000000000007f1b5182f37219dc95def93bdb8da93c5f3c45d8
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [15] : 00000000000000000000000000000000000000000301472905447742e2000000
Arg [16] : 00000000000000000000000000000000000000000039e7139a8c08fa06000000