Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ChildUSDzV2
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import "@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/shared/token/ERC677/OpStackBurnMintERC677.sol";
/**
* @title Child version USDz for Anzen protocol - V2. (for bridging)
* @dev TODO: ERC20Permit
*/
contract ChildUSDzV2 is OpStackBurnMintERC677 {
using SafeERC20 for IERC20;
constructor(
address l1Token,
address l2Bridge
) OpStackBurnMintERC677("USDz", "USDz", 18, 0, l1Token, l2Bridge) {}
/**
* @notice Rescue ERC20 tokens locked up in this contract.
* @param token ERC20 token contract address.
* @param to recipient address.
* @param amount amount to withdraw.
*/
function rescueERC20(IERC20 token, address to, uint256 amount) external onlyOwner {
token.safeTransfer(to, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {IOptimismMintableERC20Minimal, IOptimismMintableERC20} from "../ERC20/IOptimismMintableERC20.sol";
import {BurnMintERC677} from "./BurnMintERC677.sol";
import {IERC165} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/utils/introspection/IERC165.sol";
/// @notice A basic ERC677 compatible token contract with burn and minting roles that supports
/// the native L2 bridging requirements of the Optimism Stack.
/// @dev Note: the L2 bridge contract needs to be given burn and mint privileges manually,
/// since this contract does not automatically grant them. This allows the owner to revoke
/// the bridge's privileges if necessary.
contract OpStackBurnMintERC677 is BurnMintERC677, IOptimismMintableERC20Minimal {
/// @dev The address of the L1 token.
address internal immutable i_l1Token;
/// @dev The address of the L2 bridge.
address internal immutable i_l2Bridge;
constructor(
string memory name,
string memory symbol,
uint8 decimals_,
uint256 maxSupply_,
address l1Token,
address l2Bridge
) BurnMintERC677(name, symbol, decimals_, maxSupply_) {
i_l1Token = l1Token;
i_l2Bridge = l2Bridge;
}
function supportsInterface(bytes4 interfaceId) public pure virtual override(IERC165, BurnMintERC677) returns (bool) {
return
interfaceId == type(IOptimismMintableERC20).interfaceId ||
interfaceId == type(IOptimismMintableERC20Minimal).interfaceId ||
super.supportsInterface(interfaceId);
}
/// @notice Returns the address of the L1 token.
function remoteToken() public view override returns (address) {
return i_l1Token;
}
/// @notice Returns the address of the L2 bridge.
function bridge() public view override returns (address) {
return i_l2Bridge;
}
}// 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/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
// solhint-disable one-contract-per-file
pragma solidity ^0.8.0;
import {IERC165} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/utils/introspection/IERC165.sol";
/// @title IOptimismMintableERC20Minimal
/// @dev This interface is a subset of the Optimism ERC20 interface that is defined
/// below. This is done to now have to overwrite the burn and mint functions again in
/// the implementation, as that leads to more complicated, error prone code.
interface IOptimismMintableERC20Minimal is IERC165 {
/// @notice Returns the address of the token on L1.
function remoteToken() external view returns (address);
/// @notice Returns the address of the bridge on L2.
function bridge() external returns (address);
}
/// @title IOptimismMintableERC20
/// @notice This is the complete interface for the Optimism mintable ERC20 token as defined in
/// https://github.com/ethereum-optimism/optimism/blob/develop/packages/contracts-bedrock/contracts/universal/IOptimismMintableERC20.sol
interface IOptimismMintableERC20 is IERC165, IOptimismMintableERC20Minimal {
function mint(address _to, uint256 _amount) external;
function burn(address _from, uint256 _amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {IBurnMintERC20} from "../ERC20/IBurnMintERC20.sol";
import {IERC677} from "./IERC677.sol";
import {ERC677} from "./ERC677.sol";
import {OwnerIsCreator} from "../../access/OwnerIsCreator.sol";
import {ERC20Burnable} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import {EnumerableSet} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/utils/structs/EnumerableSet.sol";
import {IERC165} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/utils/introspection/IERC165.sol";
import {IERC20} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
/// @notice A basic ERC677 compatible token contract with burn and minting roles.
/// @dev The total supply can be limited during deployment.
contract BurnMintERC677 is IBurnMintERC20, ERC677, IERC165, ERC20Burnable, OwnerIsCreator {
using EnumerableSet for EnumerableSet.AddressSet;
error SenderNotMinter(address sender);
error SenderNotBurner(address sender);
error MaxSupplyExceeded(uint256 supplyAfterMint);
event MintAccessGranted(address indexed minter);
event BurnAccessGranted(address indexed burner);
event MintAccessRevoked(address indexed minter);
event BurnAccessRevoked(address indexed burner);
// @dev the allowed minter addresses
EnumerableSet.AddressSet internal s_minters;
// @dev the allowed burner addresses
EnumerableSet.AddressSet internal s_burners;
/// @dev The number of decimals for the token
uint8 internal immutable i_decimals;
/// @dev The maximum supply of the token, 0 if unlimited
uint256 internal immutable i_maxSupply;
constructor(string memory name, string memory symbol, uint8 decimals_, uint256 maxSupply_) ERC677(name, symbol) {
i_decimals = decimals_;
i_maxSupply = maxSupply_;
}
function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool) {
return
interfaceId == type(IERC20).interfaceId ||
interfaceId == type(IERC677).interfaceId ||
interfaceId == type(IBurnMintERC20).interfaceId ||
interfaceId == type(IERC165).interfaceId;
}
// ================================================================
// | ERC20 |
// ================================================================
/// @dev Returns the number of decimals used in its user representation.
function decimals() public view virtual override returns (uint8) {
return i_decimals;
}
/// @dev Returns the max supply of the token, 0 if unlimited.
function maxSupply() public view virtual returns (uint256) {
return i_maxSupply;
}
/// @dev Uses OZ ERC20 _transfer to disallow sending to address(0).
/// @dev Disallows sending to address(this)
function _transfer(address from, address to, uint256 amount) internal virtual override validAddress(to) {
super._transfer(from, to, amount);
}
/// @dev Uses OZ ERC20 _approve to disallow approving for address(0).
/// @dev Disallows approving for address(this)
function _approve(address owner, address spender, uint256 amount) internal virtual override validAddress(spender) {
super._approve(owner, spender, amount);
}
/// @dev Exists to be backwards compatible with the older naming convention.
function decreaseApproval(address spender, uint256 subtractedValue) external returns (bool success) {
return decreaseAllowance(spender, subtractedValue);
}
/// @dev Exists to be backwards compatible with the older naming convention.
function increaseApproval(address spender, uint256 addedValue) external {
increaseAllowance(spender, addedValue);
}
/// @notice Check if recipient is valid (not this contract address).
/// @param recipient the account we transfer/approve to.
/// @dev Reverts with an empty revert to be compatible with the existing link token when
/// the recipient is this contract address.
modifier validAddress(address recipient) virtual {
// solhint-disable-next-line reason-string, gas-custom-errors
if (recipient == address(this)) revert();
_;
}
// ================================================================
// | Burning & minting |
// ================================================================
/// @inheritdoc ERC20Burnable
/// @dev Uses OZ ERC20 _burn to disallow burning from address(0).
/// @dev Decreases the total supply.
function burn(uint256 amount) public override(IBurnMintERC20, ERC20Burnable) onlyBurner {
super.burn(amount);
}
/// @inheritdoc IBurnMintERC20
/// @dev Alias for BurnFrom for compatibility with the older naming convention.
/// @dev Uses burnFrom for all validation & logic.
function burn(address account, uint256 amount) public virtual override {
burnFrom(account, amount);
}
/// @inheritdoc ERC20Burnable
/// @dev Uses OZ ERC20 _burn to disallow burning from address(0).
/// @dev Decreases the total supply.
function burnFrom(address account, uint256 amount) public override(IBurnMintERC20, ERC20Burnable) onlyBurner {
super.burnFrom(account, amount);
}
/// @inheritdoc IBurnMintERC20
/// @dev Uses OZ ERC20 _mint to disallow minting to address(0).
/// @dev Disallows minting to address(this)
/// @dev Increases the total supply.
function mint(address account, uint256 amount) external override onlyMinter validAddress(account) {
if (i_maxSupply != 0 && totalSupply() + amount > i_maxSupply) revert MaxSupplyExceeded(totalSupply() + amount);
_mint(account, amount);
}
// ================================================================
// | Roles |
// ================================================================
/// @notice grants both mint and burn roles to `burnAndMinter`.
/// @dev calls public functions so this function does not require
/// access controls. This is handled in the inner functions.
function grantMintAndBurnRoles(address burnAndMinter) external {
grantMintRole(burnAndMinter);
grantBurnRole(burnAndMinter);
}
/// @notice Grants mint role to the given address.
/// @dev only the owner can call this function.
function grantMintRole(address minter) public onlyOwner {
if (s_minters.add(minter)) {
emit MintAccessGranted(minter);
}
}
/// @notice Grants burn role to the given address.
/// @dev only the owner can call this function.
function grantBurnRole(address burner) public onlyOwner {
if (s_burners.add(burner)) {
emit BurnAccessGranted(burner);
}
}
/// @notice Revokes mint role for the given address.
/// @dev only the owner can call this function.
function revokeMintRole(address minter) public onlyOwner {
if (s_minters.remove(minter)) {
emit MintAccessRevoked(minter);
}
}
/// @notice Revokes burn role from the given address.
/// @dev only the owner can call this function
function revokeBurnRole(address burner) public onlyOwner {
if (s_burners.remove(burner)) {
emit BurnAccessRevoked(burner);
}
}
/// @notice Returns all permissioned minters
function getMinters() public view returns (address[] memory) {
return s_minters.values();
}
/// @notice Returns all permissioned burners
function getBurners() public view returns (address[] memory) {
return s_burners.values();
}
// ================================================================
// | Access |
// ================================================================
/// @notice Checks whether a given address is a minter for this token.
/// @return true if the address is allowed to mint.
function isMinter(address minter) public view returns (bool) {
return s_minters.contains(minter);
}
/// @notice Checks whether a given address is a burner for this token.
/// @return true if the address is allowed to burn.
function isBurner(address burner) public view returns (bool) {
return s_burners.contains(burner);
}
/// @notice Checks whether the msg.sender is a permissioned minter for this token
/// @dev Reverts with a SenderNotMinter if the check fails
modifier onlyMinter() {
if (!isMinter(msg.sender)) revert SenderNotMinter(msg.sender);
_;
}
/// @notice Checks whether the msg.sender is a permissioned burner for this token
/// @dev Reverts with a SenderNotBurner if the check fails
modifier onlyBurner() {
if (!isBurner(msg.sender)) revert SenderNotBurner(msg.sender);
_;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {IERC20} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
interface IBurnMintERC20 is IERC20 {
/// @notice Mints new tokens for a given address.
/// @param account The address to mint the new tokens to.
/// @param amount The number of tokens to be minted.
/// @dev this function increases the total supply.
function mint(address account, uint256 amount) external;
/// @notice Burns tokens from the sender.
/// @param amount The number of tokens to be burned.
/// @dev this function decreases the total supply.
function burn(uint256 amount) external;
/// @notice Burns tokens from a given address..
/// @param account The address to burn tokens from.
/// @param amount The number of tokens to be burned.
/// @dev this function decreases the total supply.
function burn(address account, uint256 amount) external;
/// @notice Burns tokens from a given address..
/// @param account The address to burn tokens from.
/// @param amount The number of tokens to be burned.
/// @dev this function decreases the total supply.
function burnFrom(address account, uint256 amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC677 {
event Transfer(address indexed from, address indexed to, uint256 value, bytes data);
/// @notice Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver
/// @param to The address which you want to transfer to
/// @param amount The amount of tokens to be transferred
/// @param data bytes Additional data with no specified format, sent in call to `to`
/// @return true unless throwing
function transferAndCall(address to, uint256 amount, bytes memory data) external returns (bool);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import {IERC677} from "./IERC677.sol";
import {IERC677Receiver} from "../../interfaces/IERC677Receiver.sol";
import {ERC20} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/ERC20.sol";
contract ERC677 is IERC677, ERC20 {
constructor(string memory name, string memory symbol) ERC20(name, symbol) {}
/// @inheritdoc IERC677
function transferAndCall(address to, uint256 amount, bytes memory data) public returns (bool success) {
super.transfer(to, amount);
emit Transfer(msg.sender, to, amount, data);
if (to.code.length > 0) {
IERC677Receiver(to).onTokenTransfer(msg.sender, amount, data);
}
return true;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {ConfirmedOwner} from "./ConfirmedOwner.sol";
/// @title The OwnerIsCreator contract
/// @notice A contract with helpers for basic contract ownership.
contract OwnerIsCreator is ConfirmedOwner {
constructor() ConfirmedOwner(msg.sender) {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.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 {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastValue;
// Update the index for the moved value
set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
interface IERC677Receiver {
function onTokenTransfer(address sender, uint256 amount, bytes calldata data) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {ConfirmedOwnerWithProposal} from "./ConfirmedOwnerWithProposal.sol";
/// @title The ConfirmedOwner contract
/// @notice A contract with helpers for basic contract ownership.
contract ConfirmedOwner is ConfirmedOwnerWithProposal {
constructor(address newOwner) ConfirmedOwnerWithProposal(newOwner, address(0)) {}
}// 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 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.0;
import {IOwnable} from "../interfaces/IOwnable.sol";
/// @title The ConfirmedOwner contract
/// @notice A contract with helpers for basic contract ownership.
contract ConfirmedOwnerWithProposal is IOwnable {
address private s_owner;
address private s_pendingOwner;
event OwnershipTransferRequested(address indexed from, address indexed to);
event OwnershipTransferred(address indexed from, address indexed to);
constructor(address newOwner, address pendingOwner) {
// solhint-disable-next-line gas-custom-errors
require(newOwner != address(0), "Cannot set owner to zero");
s_owner = newOwner;
if (pendingOwner != address(0)) {
_transferOwnership(pendingOwner);
}
}
/// @notice Allows an owner to begin transferring ownership to a new address.
function transferOwnership(address to) public override onlyOwner {
_transferOwnership(to);
}
/// @notice Allows an ownership transfer to be completed by the recipient.
function acceptOwnership() external override {
// solhint-disable-next-line gas-custom-errors
require(msg.sender == s_pendingOwner, "Must be proposed owner");
address oldOwner = s_owner;
s_owner = msg.sender;
s_pendingOwner = address(0);
emit OwnershipTransferred(oldOwner, msg.sender);
}
/// @notice Get the current owner
function owner() public view override returns (address) {
return s_owner;
}
/// @notice validate, transfer ownership, and emit relevant events
function _transferOwnership(address to) private {
// solhint-disable-next-line gas-custom-errors
require(to != msg.sender, "Cannot transfer to self");
s_pendingOwner = to;
emit OwnershipTransferRequested(s_owner, to);
}
/// @notice validate access
function _validateOwnership() internal view {
// solhint-disable-next-line gas-custom-errors
require(msg.sender == s_owner, "Only callable by owner");
}
/// @notice Reverts if called by anyone other than the contract owner.
modifier onlyOwner() {
_validateOwnership();
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IOwnable {
function owner() external returns (address);
function transferOwnership(address recipient) external;
function acceptOwnership() external;
}{
"remappings": [
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"@chainlink/contracts/=lib/chainlink/contracts/",
"forge-std/=lib/forge-std/src/",
"@layerzerolabs/lz-evm-protocol-v2/=lib/LayerZero-v2/packages/layerzero-v2/evm/protocol/",
"@layerzerolabs/lz-evm-oapp-v2/=lib/LayerZero-v2/packages/layerzero-v2/evm/oapp/",
"@createx/=lib/createx/src/",
"@wormhole/ntt/=lib/example-native-token-transfers/evm/src/",
"@axelar-network/axelar-gmp-sdk-solidity/contracts/=lib/axelar-gmp-sdk-solidity/contracts/",
"LayerZero-v2/=lib/LayerZero-v2/",
"chainlink/=lib/chainlink/contracts/",
"createx/=lib/createx/src/",
"ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin/=lib/createx/lib/openzeppelin-contracts/contracts/",
"solady/=lib/createx/lib/solady/src/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "cancun",
"viaIR": true,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"l1Token","type":"address"},{"internalType":"address","name":"l2Bridge","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"supplyAfterMint","type":"uint256"}],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderNotBurner","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderNotMinter","type":"error"},{"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":"burner","type":"address"}],"name":"BurnAccessGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"burner","type":"address"}],"name":"BurnAccessRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"MintAccessGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"MintAccessRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipTransferRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","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"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBurners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinters","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"}],"name":"grantBurnRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burnAndMinter","type":"address"}],"name":"grantMintAndBurnRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"grantMintRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"}],"name":"isBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remoteToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"}],"name":"revokeBurnRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"revokeMintRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","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":"to","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
61010034620003a0576001600160401b0390601f1990601f90620021d43881900383810185168301919086831184841017620002af578084926040948552833981010312620003a0576200005381620003a4565b92620000636020809301620003a4565b946200006e620003b9565b9362000079620003b9565b94805191838311620002af5760039283546001938482811c9216801562000395575b89831014620003815781848493116200032e575b508890848311600114620002cf575f92620002c3575b50505f1982861b1c191690831b1783555b8651938411620002af5760049687548381811c91168015620002a4575b88821014620002915782811162000249575b5086918511600114620001e457849550908492915f95620001d8575b50501b925f19911b1c19161782555b331562000195575050600580546001600160a01b0319163317905560126080525f60a05260c05260e052604051611de99081620003eb823960805181610e48015260a0518181816103c60152610bbb015260c05181610380015260e051816102ce0152f35b60405162461bcd60e51b815291820152601860248201527f43616e6e6f7420736574206f776e657220746f207a65726f0000000000000000604482015260649150fd5b015193505f8062000121565b929194841692875f5284875f20945f5b898983831062000231575050501062000217575b50505050811b01825562000130565b01519060f8845f19921b161c191690555f80808062000208565b868601518955909701969485019488935001620001f4565b885f52875f208380880160051c8201928a891062000287575b0160051c019084905b8281106200027b57505062000105565b5f81550184906200026b565b9250819262000262565b602289634e487b7160e01b5f525260245ffd5b90607f1690620000f3565b634e487b7160e01b5f52604160045260245ffd5b015190505f80620000c5565b908886941691875f528a5f20925f5b8c828210620003175750508411620002ff575b505050811b018355620000d6565b01515f1983881b60f8161c191690555f8080620002f1565b8385015186558997909501949384019301620002de565b909150855f52885f208480850160051c8201928b861062000377575b918791869594930160051c01915b82811062000368575050620000af565b5f815585945087910162000358565b925081926200034a565b634e487b7160e01b5f52602260045260245ffd5b91607f16916200009b565b5f80fd5b51906001600160a01b0382168203620003a057565b60408051919082016001600160401b03811183821017620002af5760405260048252632aa9a23d60e11b602083015256fe60806040818152600480361015610014575f80fd5b5f3560e01c92836301ffc9a7146111fe5750826306fdde03146110ff578263095ea7b31461101a57826318160ddd14610ffc57826323b872dd14610e6c578263313ce56714610e2f5782633950935114610e105782634000aea014610cb657826340c10f1914610b7057826342966c6814610b245782634334614a14610aea5782634f5632f814610a8b57826366188463146107045782636b32810b14610a1357826370a08231146109dd57826379ba50971461092e57826379cc67901461070957826386fe8b43146108ac5782638da5cb5b1461088457826395d89b411461076b5782639dc29fac14610709578263a457c2d714610704578263a9059cbb146106dc578263aa271e1a14610699578263b2118a8d1461051a578263c2e3273d146104bb578263c630948d14610448578263c64d0ebc146103e9578263d5abeb01146103af578263d6c0b2c41461036c578263d73dd62314610346578263dd62ed3e146102fd578263e78cea92146102ba578263f2fde38b1461020457505063f81094f3146101a1575f80fd5b34610200576020366003190112610200576101ba6112f0565b6101c26118b8565b6001600160a01b03166101d481611b50565b6101da57005b7fed998b960f6340d045f620c119730f7aa7995e7425c2401d3a5b64ff998a59e95f80a2005b5f80fd5b346102005760203660031901126102005761021d6112f0565b906102266118b8565b6001600160a01b0391821692338414610277575050600680546001600160a01b03191683179055600554167fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12785f80a3005b906020606492519162461bcd60e51b8352820152601760248201527f43616e6e6f74207472616e7366657220746f2073656c660000000000000000006044820152fd5b5034610200575f36600319011261020057517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50346102005780600319360112610200576020906103196112f0565b610321611306565b9060018060a01b038091165f5260018452825f2091165f528252805f20549051908152f35b5034610200573660031901126102005761036a6103616112f0565b6024359061152a565b005b5034610200575f36600319011261020057517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5034610200575f36600319011261020057602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610200576020366003190112610200576104026112f0565b61040a6118b8565b6001600160a01b031661041c81611c48565b61042257005b7f92308bb7573b2a3d17ddb868b39d8ebec433f3194421abc22d084f89658c9bad5f80a2005b34610200576020366003190112610200576104616112f0565b6104696118b8565b6001600160a01b031661047b81611bf5565b610491575b6104886118b8565b61041c81611c48565b807fe46fef8bbff1389d9010703cf8ebb363fb3daf5bf56edc27080b67bc8d9251ea5f80a2610480565b34610200576020366003190112610200576104d46112f0565b6104dc6118b8565b6001600160a01b03166104ee81611bf5565b6104f457005b7fe46fef8bbff1389d9010703cf8ebb363fb3daf5bf56edc27080b67bc8d9251ea5f80a2005b34610200576060366003190112610200576001600160a01b0381358181169081900361020057610548611306565b906105516118b8565b8451916020938484019163a9059cbb60e01b8352166024840152604435604484015260448352608083019267ffffffffffffffff818510818611176106865760c08201908111858210176106865787528484527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460a0820152516106049392915f91829182855af13d1561067e573d916105ea83611352565b926105f78951948561131c565b83523d5f8785013e611c96565b80518061060d57005b81839181010312610200578101518015908115036102005761062b57005b608492519162461bcd60e51b8352820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152fd5b606091611c96565b604187634e487b7160e01b5f525260245ffd5b5034610200576020366003190112610200576020906106d36001600160a01b036106c16112f0565b165f52600860205260405f2054151590565b90519015158152f35b50346102005780600319360112610200576020906106d36106fb6112f0565b60243590611610565b61136e565b346102005781600319360112610200576107216112f0565b6024359161073a335f52600a60205260405f2054151590565b156107545761036a838361074f823383611772565b61190a565b60249084519063c820b10b60e01b82523390820152fd5b9034610200575f366003190112610200578051905f9083549160018360011c906001851696871561087a575b602095868410891461086757868899858a98999a5291825f146108405750506001146107e4575b5050506107e092916107d191038561131c565b519282849384528301906112b2565b0390f35b5f90815286935091907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061082857505050820101816107d16107e06107be565b8054848a01860152889550879490930192810161080f565b60ff19168782015293151560051b860190930193508492506107d191506107e090506107be565b602282634e487b7160e01b5f525260245ffd5b91607f1691610797565b5034610200575f3660031901126102005760055490516001600160a01b039091168152602090f35b5034610200575f366003190112610200578051600980548083525f918252602080840194927f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af92915b828210610917576107e0868661090d828b038361131c565b51918291826114c5565b8354875295860195600193840193909101906108f5565b9034610200575f36600319011261020057600654916001600160a01b039182841633036109a1575050600554916bffffffffffffffffffffffff60a01b903382851617600555166006553391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b906020606492519162461bcd60e51b8352820152601660248201527526bab9ba10313290383937b837b9b2b21037bbb732b960511b6044820152fd5b5034610200576020366003190112610200576020906001600160a01b03610a026112f0565b165f525f8252805f20549051908152f35b5034610200575f366003190112610200578051600780548083525f918252602080840194927fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68892915b828210610a74576107e0868661090d828b038361131c565b835487529586019560019384019390910190610a5c565b3461020057602036600319011261020057610aa46112f0565b610aac6118b8565b6001600160a01b0316610abe81611a7b565b610ac457005b7f0a675452746933cefe3d74182e78db7afe57ba60eaa4234b5d85e9aa41b0610c5f80a2005b5034610200576020366003190112610200576020906106d36001600160a01b03610b126112f0565b165f52600a60205260405f2054151590565b3461020057602036600319011261020057610b4a335f52600a60205260405f2054151590565b15610b5a5761036a90353361190a565b602491519063c820b10b60e01b82523390820152fd5b9034610200578060031936011261020057610b896112f0565b9060243591610ba3335f52600860205260405f2054151590565b15610ca0576001600160a01b031692308414610200577f00000000000000000000000000000000000000000000000000000000000000008015159081610c8b575b50610c6a578315610c2857506020825f80516020611d7483398151915292610c0f5f95600254611509565b60025585855284835280852082815401905551908152a3005b6020606492519162461bcd60e51b8352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b90610c79602493600254611509565b905163cbbf111360e01b815291820152fd5b9050610c9984600254611509565b1185610be4565b815163e2c8c9d560e01b81523381860152602490fd5b903461020057606036600319011261020057610cd06112f0565b67ffffffffffffffff60243560443582811161020057366023820112156102005780860135610cfe81611352565b91610d0b8751938461131c565b818352366024838301011161020057815f926024602093018386013783010152610d358285611610565b5060018060a01b038416938486518481528760208201527fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16339180610d7c8b8201886112b2565b0390a33b610d8f575b6020855160018152f35b833b1561020057610dca935f92838751809781958294635260769b60e11b8452338d85015260248401526060604484015260648301906112b2565b03925af18015610e0657610de0575b8080610d85565b8111610df3576020925081528280610dd9565b604183634e487b7160e01b5f525260245ffd5b83513d5f823e3d90fd5b50346102005780600319360112610200576020906106d36103616112f0565b5034610200575f366003190112610200576020905160ff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b903461020057606036600319011261020057610e866112f0565b610e8e611306565b60443590610e9d823385611772565b6001600160a01b03908116923084146102005716908115610fab578215610f5c57815f525f602052835f2054818110610f0a5760209550815f80516020611d74833981519152928792855f525f845203865f2055845f52855f208181540190558551908152a35160018152f35b845162461bcd60e51b8152602081880152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b835162461bcd60e51b8152602081870152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b835162461bcd60e51b8152602081870152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b5034610200575f366003190112610200576020906002549051908152f35b90346102005780600319360112610200576110336112f0565b6001600160a01b03166024353082146102005733156110c35781156110885760209350335f5260018452825f20825f52845280835f205582519081525f80516020611d94833981519152843392a35160018152f35b825162461bcd60e51b8152602081860152602260248201525f80516020611d54833981519152604482015261737360f01b6064820152608490fd5b825162461bcd60e51b81526020818601526024808201525f80516020611d348339815191526044820152637265737360e01b6064820152608490fd5b9034610200575f366003190112610200578051905f906003549160018360011c90600185169485156111f4575b60209586841081146111e1578388528794939291879082156111bf575050600114611164575b50506107e092916107d191038561131c565b9085925060035f527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b915f925b8284106111a757505050820101816107d1611152565b8054848a018601528895508794909301928101611191565b60ff19168682015292151560051b850190920192508391506107d19050611152565b602289634e487b7160e01b5f525260245ffd5b91607f169161112c565b903461020057602036600319011261020057359063ffffffff60e01b82168092036102005760209163dd0390b560e01b81149081156112a1575b8115611246575b5015158152f35b6336372b0760e01b811491508115611290575b811561127f575b811561126e575b508361123f565b6301ffc9a760e01b14905083611267565b63e6599b4d60e01b81149150611260565b630200057560e51b81149150611259565b6318a62c2b60e11b81149150611238565b91908251928382525f5b8481106112dc575050825f602080949584010152601f8019910116010190565b6020818301810151848301820152016112bc565b600435906001600160a01b038216820361020057565b602435906001600160a01b038216820361020057565b90601f8019910116810190811067ffffffffffffffff82111761133e57604052565b634e487b7160e01b5f52604160045260245ffd5b67ffffffffffffffff811161133e57601f01601f191660200190565b3461020057604080600319360112610200576113886112f0565b9060243591335f5260209260018452825f209160018060a01b031691825f528452825f205481811061147357033082146102005733156114365781156113fa57335f5260018452825f20825f52845280835f205582519081525f80516020611d94833981519152843392a35160018152f35b825162461bcd60e51b815260048101859052602260248201525f80516020611d54833981519152604482015261737360f01b6064820152608490fd5b825162461bcd60e51b8152600481018590526024808201525f80516020611d348339815191526044820152637265737360e01b6064820152608490fd5b835162461bcd60e51b815260048101869052602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608490fd5b60209060206040818301928281528551809452019301915f5b8281106114ec575050505090565b83516001600160a01b0316855293810193928101926001016114de565b9190820180921161151657565b634e487b7160e01b5f52601160045260245ffd5b90335f52602060018152611555604092835f209460018060a01b031694855f528352835f2054611509565b913084146102005733156115d457831561159957905f80516020611d9483398151915291335f5260018252805f20855f52825283815f2055519283523392a3600190565b60849250519062461bcd60e51b82526004820152602260248201525f80516020611d54833981519152604482015261737360f01b6064820152fd5b60849250519062461bcd60e51b825260048201526024808201525f80516020611d348339815191526044820152637265737360e01b6064820152fd5b6001600160a01b03169030821461020057331561171f5781156116ce57335f525f60205260405f205481811061167a578190335f525f6020520360405f2055815f5260405f208181540190556040519081525f80516020611d7483398151915260203392a3600190565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b909160018060a01b0380921691825f5260209160018352604091825f20951694855f528352815f20545f1981036117ac575b505050505050565b8181106118745703903085146102005783156118385784156117fd57905f80516020611d948339815191529291845f5260018352805f20865f52835281815f205551908152a35f80808080806117a4565b5162461bcd60e51b815260048101839052602260248201525f80516020611d54833981519152604482015261737360f01b6064820152608490fd5b5162461bcd60e51b8152600481018390526024808201525f80516020611d348339815191526044820152637265737360e01b6064820152608490fd5b825162461bcd60e51b815260048101859052601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b6005546001600160a01b031633036118cc57565b60405162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b6044820152606490fd5b6001600160a01b031680156119ae57805f525f60205260405f20549180831061195e576020815f80516020611d74833981519152925f958587528684520360408620558060025403600255604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b600954811015611a325760095f527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01905f90565b634e487b7160e01b5f52603260045260245ffd5b600754811015611a325760075f527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801905f90565b5f818152600a60205260409020548015611b4a575f1990808201818111611516576009549083820191821161151657808203611b00575b5050506009548015611aec57810190611aca826119fd565b909182549160031b1b191690556009555f52600a6020525f6040812055600190565b634e487b7160e01b5f52603160045260245ffd5b611b34611b0f611b1e936119fd565b90549060031b1c9283926119fd565b819391549060031b91821b915f19901b19161790565b90555f52600a60205260405f20555f8080611ab2565b50505f90565b5f818152600860205260409020548015611b4a575f1990808201818111611516576007549083820191821161151657808203611bc1575b5050506007548015611aec57810190611b9f82611a46565b909182549160031b1b191690556007555f5260086020525f6040812055600190565b611bdf611bd0611b1e93611a46565b90549060031b1c928392611a46565b90555f52600860205260405f20555f8080611b87565b805f52600860205260405f2054155f14611c4357600754600160401b81101561133e57611c2c611b1e826001859401600755611a46565b9055600754905f52600860205260405f2055600190565b505f90565b805f52600a60205260405f2054155f14611c4357600954600160401b81101561133e57611c7f611b1e8260018594016009556119fd565b9055600954905f52600a60205260405f2055600190565b91929015611cf85750815115611caa575090565b3b15611cb35790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b825190915015611d0b5750805190602001fd5b60405162461bcd60e51b815260206004820152908190611d2f9060248301906112b2565b0390fdfe45524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20617070726f766520746f20746865207a65726f206164647265ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a2646970667358221220c92d9a6e60c154a6722f09bc6adfc76149a204293ddd8ca849efd042543b81ce64736f6c63430008180033000000000000000000000000a469b7ee9ee773642b3e93e842e5d9b5baa1006700000000000000000000000009e9222e96e7b4ae2a407b98d48e330053351eee
Deployed Bytecode
0x60806040818152600480361015610014575f80fd5b5f3560e01c92836301ffc9a7146111fe5750826306fdde03146110ff578263095ea7b31461101a57826318160ddd14610ffc57826323b872dd14610e6c578263313ce56714610e2f5782633950935114610e105782634000aea014610cb657826340c10f1914610b7057826342966c6814610b245782634334614a14610aea5782634f5632f814610a8b57826366188463146107045782636b32810b14610a1357826370a08231146109dd57826379ba50971461092e57826379cc67901461070957826386fe8b43146108ac5782638da5cb5b1461088457826395d89b411461076b5782639dc29fac14610709578263a457c2d714610704578263a9059cbb146106dc578263aa271e1a14610699578263b2118a8d1461051a578263c2e3273d146104bb578263c630948d14610448578263c64d0ebc146103e9578263d5abeb01146103af578263d6c0b2c41461036c578263d73dd62314610346578263dd62ed3e146102fd578263e78cea92146102ba578263f2fde38b1461020457505063f81094f3146101a1575f80fd5b34610200576020366003190112610200576101ba6112f0565b6101c26118b8565b6001600160a01b03166101d481611b50565b6101da57005b7fed998b960f6340d045f620c119730f7aa7995e7425c2401d3a5b64ff998a59e95f80a2005b5f80fd5b346102005760203660031901126102005761021d6112f0565b906102266118b8565b6001600160a01b0391821692338414610277575050600680546001600160a01b03191683179055600554167fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12785f80a3005b906020606492519162461bcd60e51b8352820152601760248201527f43616e6e6f74207472616e7366657220746f2073656c660000000000000000006044820152fd5b5034610200575f36600319011261020057517f00000000000000000000000009e9222e96e7b4ae2a407b98d48e330053351eee6001600160a01b03168152602090f35b50346102005780600319360112610200576020906103196112f0565b610321611306565b9060018060a01b038091165f5260018452825f2091165f528252805f20549051908152f35b5034610200573660031901126102005761036a6103616112f0565b6024359061152a565b005b5034610200575f36600319011261020057517f000000000000000000000000a469b7ee9ee773642b3e93e842e5d9b5baa100676001600160a01b03168152602090f35b5034610200575f36600319011261020057602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610200576020366003190112610200576104026112f0565b61040a6118b8565b6001600160a01b031661041c81611c48565b61042257005b7f92308bb7573b2a3d17ddb868b39d8ebec433f3194421abc22d084f89658c9bad5f80a2005b34610200576020366003190112610200576104616112f0565b6104696118b8565b6001600160a01b031661047b81611bf5565b610491575b6104886118b8565b61041c81611c48565b807fe46fef8bbff1389d9010703cf8ebb363fb3daf5bf56edc27080b67bc8d9251ea5f80a2610480565b34610200576020366003190112610200576104d46112f0565b6104dc6118b8565b6001600160a01b03166104ee81611bf5565b6104f457005b7fe46fef8bbff1389d9010703cf8ebb363fb3daf5bf56edc27080b67bc8d9251ea5f80a2005b34610200576060366003190112610200576001600160a01b0381358181169081900361020057610548611306565b906105516118b8565b8451916020938484019163a9059cbb60e01b8352166024840152604435604484015260448352608083019267ffffffffffffffff818510818611176106865760c08201908111858210176106865787528484527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460a0820152516106049392915f91829182855af13d1561067e573d916105ea83611352565b926105f78951948561131c565b83523d5f8785013e611c96565b80518061060d57005b81839181010312610200578101518015908115036102005761062b57005b608492519162461bcd60e51b8352820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152fd5b606091611c96565b604187634e487b7160e01b5f525260245ffd5b5034610200576020366003190112610200576020906106d36001600160a01b036106c16112f0565b165f52600860205260405f2054151590565b90519015158152f35b50346102005780600319360112610200576020906106d36106fb6112f0565b60243590611610565b61136e565b346102005781600319360112610200576107216112f0565b6024359161073a335f52600a60205260405f2054151590565b156107545761036a838361074f823383611772565b61190a565b60249084519063c820b10b60e01b82523390820152fd5b9034610200575f366003190112610200578051905f9083549160018360011c906001851696871561087a575b602095868410891461086757868899858a98999a5291825f146108405750506001146107e4575b5050506107e092916107d191038561131c565b519282849384528301906112b2565b0390f35b5f90815286935091907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061082857505050820101816107d16107e06107be565b8054848a01860152889550879490930192810161080f565b60ff19168782015293151560051b860190930193508492506107d191506107e090506107be565b602282634e487b7160e01b5f525260245ffd5b91607f1691610797565b5034610200575f3660031901126102005760055490516001600160a01b039091168152602090f35b5034610200575f366003190112610200578051600980548083525f918252602080840194927f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af92915b828210610917576107e0868661090d828b038361131c565b51918291826114c5565b8354875295860195600193840193909101906108f5565b9034610200575f36600319011261020057600654916001600160a01b039182841633036109a1575050600554916bffffffffffffffffffffffff60a01b903382851617600555166006553391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b906020606492519162461bcd60e51b8352820152601660248201527526bab9ba10313290383937b837b9b2b21037bbb732b960511b6044820152fd5b5034610200576020366003190112610200576020906001600160a01b03610a026112f0565b165f525f8252805f20549051908152f35b5034610200575f366003190112610200578051600780548083525f918252602080840194927fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68892915b828210610a74576107e0868661090d828b038361131c565b835487529586019560019384019390910190610a5c565b3461020057602036600319011261020057610aa46112f0565b610aac6118b8565b6001600160a01b0316610abe81611a7b565b610ac457005b7f0a675452746933cefe3d74182e78db7afe57ba60eaa4234b5d85e9aa41b0610c5f80a2005b5034610200576020366003190112610200576020906106d36001600160a01b03610b126112f0565b165f52600a60205260405f2054151590565b3461020057602036600319011261020057610b4a335f52600a60205260405f2054151590565b15610b5a5761036a90353361190a565b602491519063c820b10b60e01b82523390820152fd5b9034610200578060031936011261020057610b896112f0565b9060243591610ba3335f52600860205260405f2054151590565b15610ca0576001600160a01b031692308414610200577f00000000000000000000000000000000000000000000000000000000000000008015159081610c8b575b50610c6a578315610c2857506020825f80516020611d7483398151915292610c0f5f95600254611509565b60025585855284835280852082815401905551908152a3005b6020606492519162461bcd60e51b8352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b90610c79602493600254611509565b905163cbbf111360e01b815291820152fd5b9050610c9984600254611509565b1185610be4565b815163e2c8c9d560e01b81523381860152602490fd5b903461020057606036600319011261020057610cd06112f0565b67ffffffffffffffff60243560443582811161020057366023820112156102005780860135610cfe81611352565b91610d0b8751938461131c565b818352366024838301011161020057815f926024602093018386013783010152610d358285611610565b5060018060a01b038416938486518481528760208201527fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16339180610d7c8b8201886112b2565b0390a33b610d8f575b6020855160018152f35b833b1561020057610dca935f92838751809781958294635260769b60e11b8452338d85015260248401526060604484015260648301906112b2565b03925af18015610e0657610de0575b8080610d85565b8111610df3576020925081528280610dd9565b604183634e487b7160e01b5f525260245ffd5b83513d5f823e3d90fd5b50346102005780600319360112610200576020906106d36103616112f0565b5034610200575f366003190112610200576020905160ff7f0000000000000000000000000000000000000000000000000000000000000012168152f35b903461020057606036600319011261020057610e866112f0565b610e8e611306565b60443590610e9d823385611772565b6001600160a01b03908116923084146102005716908115610fab578215610f5c57815f525f602052835f2054818110610f0a5760209550815f80516020611d74833981519152928792855f525f845203865f2055845f52855f208181540190558551908152a35160018152f35b845162461bcd60e51b8152602081880152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b835162461bcd60e51b8152602081870152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b835162461bcd60e51b8152602081870152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b5034610200575f366003190112610200576020906002549051908152f35b90346102005780600319360112610200576110336112f0565b6001600160a01b03166024353082146102005733156110c35781156110885760209350335f5260018452825f20825f52845280835f205582519081525f80516020611d94833981519152843392a35160018152f35b825162461bcd60e51b8152602081860152602260248201525f80516020611d54833981519152604482015261737360f01b6064820152608490fd5b825162461bcd60e51b81526020818601526024808201525f80516020611d348339815191526044820152637265737360e01b6064820152608490fd5b9034610200575f366003190112610200578051905f906003549160018360011c90600185169485156111f4575b60209586841081146111e1578388528794939291879082156111bf575050600114611164575b50506107e092916107d191038561131c565b9085925060035f527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b915f925b8284106111a757505050820101816107d1611152565b8054848a018601528895508794909301928101611191565b60ff19168682015292151560051b850190920192508391506107d19050611152565b602289634e487b7160e01b5f525260245ffd5b91607f169161112c565b903461020057602036600319011261020057359063ffffffff60e01b82168092036102005760209163dd0390b560e01b81149081156112a1575b8115611246575b5015158152f35b6336372b0760e01b811491508115611290575b811561127f575b811561126e575b508361123f565b6301ffc9a760e01b14905083611267565b63e6599b4d60e01b81149150611260565b630200057560e51b81149150611259565b6318a62c2b60e11b81149150611238565b91908251928382525f5b8481106112dc575050825f602080949584010152601f8019910116010190565b6020818301810151848301820152016112bc565b600435906001600160a01b038216820361020057565b602435906001600160a01b038216820361020057565b90601f8019910116810190811067ffffffffffffffff82111761133e57604052565b634e487b7160e01b5f52604160045260245ffd5b67ffffffffffffffff811161133e57601f01601f191660200190565b3461020057604080600319360112610200576113886112f0565b9060243591335f5260209260018452825f209160018060a01b031691825f528452825f205481811061147357033082146102005733156114365781156113fa57335f5260018452825f20825f52845280835f205582519081525f80516020611d94833981519152843392a35160018152f35b825162461bcd60e51b815260048101859052602260248201525f80516020611d54833981519152604482015261737360f01b6064820152608490fd5b825162461bcd60e51b8152600481018590526024808201525f80516020611d348339815191526044820152637265737360e01b6064820152608490fd5b835162461bcd60e51b815260048101869052602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608490fd5b60209060206040818301928281528551809452019301915f5b8281106114ec575050505090565b83516001600160a01b0316855293810193928101926001016114de565b9190820180921161151657565b634e487b7160e01b5f52601160045260245ffd5b90335f52602060018152611555604092835f209460018060a01b031694855f528352835f2054611509565b913084146102005733156115d457831561159957905f80516020611d9483398151915291335f5260018252805f20855f52825283815f2055519283523392a3600190565b60849250519062461bcd60e51b82526004820152602260248201525f80516020611d54833981519152604482015261737360f01b6064820152fd5b60849250519062461bcd60e51b825260048201526024808201525f80516020611d348339815191526044820152637265737360e01b6064820152fd5b6001600160a01b03169030821461020057331561171f5781156116ce57335f525f60205260405f205481811061167a578190335f525f6020520360405f2055815f5260405f208181540190556040519081525f80516020611d7483398151915260203392a3600190565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b909160018060a01b0380921691825f5260209160018352604091825f20951694855f528352815f20545f1981036117ac575b505050505050565b8181106118745703903085146102005783156118385784156117fd57905f80516020611d948339815191529291845f5260018352805f20865f52835281815f205551908152a35f80808080806117a4565b5162461bcd60e51b815260048101839052602260248201525f80516020611d54833981519152604482015261737360f01b6064820152608490fd5b5162461bcd60e51b8152600481018390526024808201525f80516020611d348339815191526044820152637265737360e01b6064820152608490fd5b825162461bcd60e51b815260048101859052601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b6005546001600160a01b031633036118cc57565b60405162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b6044820152606490fd5b6001600160a01b031680156119ae57805f525f60205260405f20549180831061195e576020815f80516020611d74833981519152925f958587528684520360408620558060025403600255604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b600954811015611a325760095f527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01905f90565b634e487b7160e01b5f52603260045260245ffd5b600754811015611a325760075f527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801905f90565b5f818152600a60205260409020548015611b4a575f1990808201818111611516576009549083820191821161151657808203611b00575b5050506009548015611aec57810190611aca826119fd565b909182549160031b1b191690556009555f52600a6020525f6040812055600190565b634e487b7160e01b5f52603160045260245ffd5b611b34611b0f611b1e936119fd565b90549060031b1c9283926119fd565b819391549060031b91821b915f19901b19161790565b90555f52600a60205260405f20555f8080611ab2565b50505f90565b5f818152600860205260409020548015611b4a575f1990808201818111611516576007549083820191821161151657808203611bc1575b5050506007548015611aec57810190611b9f82611a46565b909182549160031b1b191690556007555f5260086020525f6040812055600190565b611bdf611bd0611b1e93611a46565b90549060031b1c928392611a46565b90555f52600860205260405f20555f8080611b87565b805f52600860205260405f2054155f14611c4357600754600160401b81101561133e57611c2c611b1e826001859401600755611a46565b9055600754905f52600860205260405f2055600190565b505f90565b805f52600a60205260405f2054155f14611c4357600954600160401b81101561133e57611c7f611b1e8260018594016009556119fd565b9055600954905f52600a60205260405f2055600190565b91929015611cf85750815115611caa575090565b3b15611cb35790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b825190915015611d0b5750805190602001fd5b60405162461bcd60e51b815260206004820152908190611d2f9060248301906112b2565b0390fdfe45524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20617070726f766520746f20746865207a65726f206164647265ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a2646970667358221220c92d9a6e60c154a6722f09bc6adfc76149a204293ddd8ca849efd042543b81ce64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a469b7ee9ee773642b3e93e842e5d9b5baa1006700000000000000000000000009e9222e96e7b4ae2a407b98d48e330053351eee
-----Decoded View---------------
Arg [0] : l1Token (address): 0xA469B7Ee9ee773642b3e93E842e5D9b5BaA10067
Arg [1] : l2Bridge (address): 0x09e9222E96E7B4AE2a407B98d48e330053351EEe
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a469b7ee9ee773642b3e93e842e5d9b5baa10067
Arg [1] : 00000000000000000000000009e9222e96e7b4ae2a407b98d48e330053351eee
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.