Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 40 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Increase Allowan... | 20594507 | 592 days ago | IN | 0 ETH | 0.00000039 | ||||
Withdraw To | 20594305 | 592 days ago | IN | 0 ETH | 0.00000039 | ||||
Approve | 20594206 | 592 days ago | IN | 0 ETH | 0.00000056 | ||||
Approve | 8217648 | 715 days ago | IN | 0 ETH | 0.00000096 | ||||
Approve | 3981066 | 754 days ago | IN | 0 ETH | 0.00000067 | ||||
Approve | 3981044 | 754 days ago | IN | 0 ETH | 0.00000067 | ||||
Approve | 3926326 | 755 days ago | IN | 0 ETH | 0.00000064 | ||||
Approve | 3926295 | 755 days ago | IN | 0 ETH | 0.00000064 | ||||
Approve | 3926063 | 755 days ago | IN | 0 ETH | 0.00000044 | ||||
Approve | 3926036 | 755 days ago | IN | 0 ETH | 0.00000044 | ||||
Approve | 3925845 | 755 days ago | IN | 0 ETH | 0.00000064 | ||||
Approve | 3915728 | 755 days ago | IN | 0 ETH | 0.00000059 | ||||
Approve | 3915503 | 755 days ago | IN | 0 ETH | 0.00000059 | ||||
Approve | 3915420 | 755 days ago | IN | 0 ETH | 0.00000059 | ||||
Approve | 3915416 | 755 days ago | IN | 0 ETH | 0.00000059 | ||||
Approve | 3915348 | 755 days ago | IN | 0 ETH | 0.00000059 | ||||
Approve | 3915325 | 755 days ago | IN | 0 ETH | 0.00000059 | ||||
Approve | 3903514 | 755 days ago | IN | 0 ETH | 0.00000067 | ||||
Approve | 3892059 | 755 days ago | IN | 0 ETH | 0.00000049 | ||||
Approve | 3891792 | 755 days ago | IN | 0 ETH | 0.00000049 | ||||
Approve | 3891485 | 755 days ago | IN | 0 ETH | 0.00000049 | ||||
Approve | 3890762 | 755 days ago | IN | 0 ETH | 0.00000049 | ||||
Approve | 3890053 | 755 days ago | IN | 0 ETH | 0.00000069 | ||||
Transfer | 1600403 | 849 days ago | IN | 0 ETH | 0.00000281 | ||||
Transfer | 1600396 | 849 days ago | IN | 0 ETH | 0.00000281 |
Loading...
Loading
Contract Name:
aeWETH
Compiler Version
v0.6.11+commit.5ef660b1
Optimization Enabled:
Yes with 100 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ pragma solidity ^0.6.11; import "./L2GatewayToken.sol"; import "./IWETH9.sol"; /// @title Arbitrum extended WETH contract aeWETH is L2GatewayToken, IWETH9 { function initialize( string memory name_, string memory symbol_, uint8 decimals_, address l2Gateway_, address l1Address_ ) external { L2GatewayToken._initialize(name_, symbol_, decimals_, l2Gateway_, l1Address_); } function bridgeMint( address, /* account */ uint256 /* amount */ ) external virtual override { // we want weth to always be fully collaterized revert("NO_BRIDGE_MINT"); } function bridgeBurn(address account, uint256 amount) external virtual override onlyGateway { _burn(account, amount); (bool success, ) = msg.sender.call{ value: amount }(""); require(success, "FAIL_TRANSFER"); } function deposit() external payable override { depositTo(msg.sender); } function withdraw(uint256 amount) external override { withdrawTo(msg.sender, amount); } function depositTo(address account) public payable { _mint(account, msg.value); } function withdrawTo(address account, uint256 amount) public { _burn(msg.sender, amount); (bool success, ) = account.call{ value: amount }(""); require(success, "FAIL_TRANSFER"); } receive() external payable { depositTo(msg.sender); } }
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ pragma solidity ^0.6.11; import "./aeERC20.sol"; import "./BytesParser.sol"; import "../arbitrum/IArbToken.sol"; /** * @title Standard (i.e., non-custom) contract used as a base for different L2 Gateways */ abstract contract L2GatewayToken is aeERC20, IArbToken { address public l2Gateway; address public override l1Address; modifier onlyGateway() { require(msg.sender == l2Gateway, "ONLY_GATEWAY"); _; } /** * @notice initialize the token * @dev the L2 bridge assumes this does not fail or revert * @param name_ ERC20 token name * @param symbol_ ERC20 token symbol * @param decimals_ ERC20 decimals * @param l2Gateway_ L2 gateway this token communicates with * @param l1Counterpart_ L1 address of ERC20 */ function _initialize( string memory name_, string memory symbol_, uint8 decimals_, address l2Gateway_, address l1Counterpart_ ) internal virtual { require(l2Gateway_ != address(0), "INVALID_GATEWAY"); require(l2Gateway == address(0), "ALREADY_INIT"); l2Gateway = l2Gateway_; l1Address = l1Counterpart_; aeERC20._initialize(name_, symbol_, decimals_); } /** * @notice Mint tokens on L2. Callable path is L1Gateway depositToken (which handles L1 escrow), which triggers L2Gateway, which calls this * @param account recipient of tokens * @param amount amount of tokens minted */ function bridgeMint(address account, uint256 amount) external virtual override onlyGateway { _mint(account, amount); } /** * @notice Burn tokens on L2. * @dev only the token bridge can call this * @param account owner of tokens * @param amount amount of tokens burnt */ function bridgeBurn(address account, uint256 amount) external virtual override onlyGateway { _burn(account, amount); } }
// SPDX-License-Identifier: Apache-2.0 // solhint-disable-next-line compiler-version pragma solidity >=0.6.9 <0.9.0; interface IWETH9 { function deposit() external payable; function withdraw(uint256 _amount) external; }
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ pragma solidity ^0.6.11; import "@openzeppelin/contracts-upgradeable/drafts/ERC20PermitUpgradeable.sol"; import "./TransferAndCallToken.sol"; /// @title Arbitrum extended ERC20 /// @notice The recommended ERC20 implementation for Layer 2 tokens /// @dev This implements the ERC20 standard with transferAndCall extenstion/affordances contract aeERC20 is ERC20PermitUpgradeable, TransferAndCallToken { using AddressUpgradeable for address; constructor() public initializer { // this is expected to be used as the logic contract behind a proxy // override the constructor if you don't wish to use the initialize method } function _initialize( string memory name_, string memory symbol_, uint8 decimals_ ) internal initializer { __ERC20Permit_init(name_); __ERC20_init(name_, symbol_); _setupDecimals(decimals_); } }
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ pragma solidity ^0.6.11; import "arb-bridge-eth/contracts/libraries/BytesLib.sol"; library BytesParser { using BytesLib for bytes; function toUint8(bytes memory input) internal pure returns (bool success, uint8 res) { if (input.length != 32) { return (false, 0); } // TODO: try catch to handle error uint256 inputNum = abi.decode(input, (uint256)); if (inputNum > type(uint8).max) { return (false, 0); } res = uint8(inputNum); success = true; } function toString(bytes memory input) internal pure returns (bool success, string memory res) { if (input.length == 0) { success = false; // return default value of string } else if (input.length == 32) { // TODO: can validate anything other than length and being null terminated? if (input[31] != bytes1(0x00)) return (false, res); else success = true; // here we assume its a null terminated Bytes32 string // https://github.com/ethereum/solidity/blob/5852972ec148bc041909400affc778dee66d384d/test/libsolidity/semanticTests/externalContracts/_stringutils/stringutils.sol#L89 // https://github.com/Arachnid/solidity-stringutils uint256 len = 32; while (len > 0 && input[len - 1] == bytes1(0x00)) { len--; } bytes memory inputTruncated = new bytes(len); for (uint8 i = 0; i < len; i++) { inputTruncated[i] = input[i]; } // we can't just do `res := input` because of the null values in the end // TODO: can we instead use a bitwise AND? build it dynamically with the length assembly { res := inputTruncated } } else { // TODO: try catch to handle error success = true; res = abi.decode(input, (string)); } } }
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @title Minimum expected interface for L2 token that interacts with the L2 token bridge (this is the interface necessary * for a custom token that interacts with the bridge, see TestArbCustomToken.sol for an example implementation). */ // solhint-disable-next-line compiler-version pragma solidity >=0.6.9 <0.9.0; interface IArbToken { /** * @notice should increase token supply by amount, and should (probably) only be callable by the L1 bridge. */ function bridgeMint(address account, uint256 amount) external; /** * @notice should decrease token supply by amount, and should (probably) only be callable by the L1 bridge. */ function bridgeBurn(address account, uint256 amount) external; /** * @return address of layer 1 token */ function l1Address() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.5 <0.8.0; import "../token/ERC20/ERC20Upgradeable.sol"; import "./IERC20PermitUpgradeable.sol"; import "../cryptography/ECDSAUpgradeable.sol"; import "../utils/CountersUpgradeable.sol"; import "./EIP712Upgradeable.sol"; import "../proxy/Initializable.sol"; /** * @dev Implementation 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. * * _Available since v3.4._ */ abstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20PermitUpgradeable, EIP712Upgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; mapping (address => CountersUpgradeable.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH; /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ function __ERC20Permit_init(string memory name) internal initializer { __Context_init_unchained(); __EIP712_init_unchained(name, "1"); __ERC20Permit_init_unchained(name); } function __ERC20Permit_init_unchained(string memory name) internal initializer { _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); } /** * @dev See {IERC20Permit-permit}. */ function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override { // solhint-disable-next-line not-rely-on-time require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256( abi.encode( _PERMIT_TYPEHASH, owner, spender, value, _nonces[owner].current(), deadline ) ); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSAUpgradeable.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _nonces[owner].increment(); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity >0.6.0 <0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import "./ITransferAndCall.sol"; // Implementation from https://github.com/smartcontractkit/LinkToken/blob/master/contracts/v0.6/TransferAndCallToken.sol /** * @notice based on Implementation from https://github.com/smartcontractkit/LinkToken/blob/master/contracts/v0.6/ERC677Token.sol * The implementation doesn't return a bool on onTokenTransfer. This is similar to the proposed 677 standard, but still incompatible - thus we don't refer to it as such. */ abstract contract TransferAndCallToken is ERC20Upgradeable, ITransferAndCall { /** * @dev transfer token to a contract address with additional data if the recipient is a contact. * @param _to The address to transfer to. * @param _value The amount to be transferred. * @param _data The extra data to be passed to the receiving contract. */ function transferAndCall( address _to, uint256 _value, bytes memory _data ) public virtual override returns (bool success) { super.transfer(_to, _value); emit Transfer(msg.sender, _to, _value, _data); if (isContract(_to)) { contractFallback(_to, _value, _data); } return true; } // PRIVATE function contractFallback( address _to, uint256 _value, bytes memory _data ) private { ITransferAndCallReceiver receiver = ITransferAndCallReceiver(_to); receiver.onTokenTransfer(msg.sender, _value, _data); } function isContract(address _addr) private view returns (bool hasCode) { uint256 length; assembly { length := extcodesize(_addr) } return length > 0; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../utils/ContextUpgradeable.sol"; import "./IERC20Upgradeable.sol"; import "../../math/SafeMathUpgradeable.sol"; import "../../proxy/Initializable.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable { using SafeMathUpgradeable for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } uint256[44] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 IERC20PermitUpgradeable { /** * @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 pragma solidity >=0.6.0 <0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSAUpgradeable { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length if (signature.length != 65) { revert("ECDSA: invalid signature length"); } // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value"); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * replicates the behavior of the * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`] * JSON-RPC method. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../math/SafeMathUpgradeable.sol"; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library CountersUpgradeable { using SafeMathUpgradeable for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../proxy/Initializable.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712Upgradeable is Initializable { /* solhint-disable var-name-mixedcase */ bytes32 private _HASHED_NAME; bytes32 private _HASHED_VERSION; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ function __EIP712_init(string memory name, string memory version) internal initializer { __EIP712_init_unchained(name, version); } function __EIP712_init_unchained(string memory name, string memory version) internal initializer { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash()); } function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) { return keccak256( abi.encode( typeHash, name, version, _getChainId(), address(this) ) ); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", _domainSeparatorV4(), structHash)); } function _getChainId() private view returns (uint256 chainId) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 // solhint-disable-next-line no-inline-assembly assembly { chainId := chainid() } } /** * @dev The hash of the name parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712NameHash() internal virtual view returns (bytes32) { return _HASHED_NAME; } /** * @dev The hash of the version parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712VersionHash() internal virtual view returns (bytes32) { return _HASHED_VERSION; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity >=0.4.24 <0.8.0; import "../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../proxy/Initializable.sol"; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMathUpgradeable { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity >0.6.0 <0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; interface ITransferAndCall is IERC20Upgradeable { function transferAndCall( address to, uint256 value, bytes memory data ) external returns (bool success); event Transfer(address indexed from, address indexed to, uint256 value, bytes data); } /** * @notice note that implementation of ITransferAndCallReceiver is not expected to return a success bool */ interface ITransferAndCallReceiver { function onTokenTransfer( address _sender, uint256 _value, bytes memory _data ) external; }
// SPDX-License-Identifier: MIT /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity ^0.6.11; /* solhint-disable no-inline-assembly */ library BytesLib { function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= (_start + 20), "Read out of bounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= (_start + 1), "Read out of bounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= (_start + 32), "Read out of bounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= (_start + 32), "Read out of bounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } } /* solhint-enable no-inline-assembly */
{ "optimizer": { "enabled": true, "runs": 100 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"bridgeMint","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":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"depositTo","outputs":[],"stateMutability":"payable","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":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"l2Gateway_","type":"address"},{"internalType":"address","name":"l1Address_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"l1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2Gateway","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50600054610100900460ff1680620000375750620000376001600160e01b03620000c916565b8062000046575060005460ff16155b620000835760405162461bcd60e51b815260040180806020018281038252602e81526020018062002289602e913960400191505060405180910390fd5b600054610100900460ff16158015620000af576000805460ff1961ff0019909116610100171660011790555b8015620000c2576000805461ff00191690555b50620000ed565b6000620000e130620000e760201b62000f4a1760201c565b15905090565b3b151590565b61218c80620000fd6000396000f3fe60806040526004361061014f5760003560e01c80637ecebe00116100b6578063b760faf91161006f578063b760faf9146105d7578063c2eeeebd146105fd578063c820f14614610612578063d0e30db014610762578063d505accf1461076a578063dd62ed3e146107c85761015f565b80637ecebe00146104b35780638c2a993e146104e65780638fa74a0e1461051f57806395d89b4114610550578063a457c2d714610565578063a9059cbb1461059e5761015f565b8063313ce56711610108578063313ce567146103085780633644e5151461033357806339509351146103485780634000aea01461038157806370a082311461044757806374f4f5471461047a5761015f565b806306fdde0314610164578063095ea7b3146101ee57806318160ddd1461023b578063205c28781461026257806323b872dd1461029b5780632e1a7d4d146102de5761015f565b3661015f5761015d33610803565b005b600080fd5b34801561017057600080fd5b50610179610810565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b357818101518382015260200161019b565b50505050905090810190601f1680156101e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101fa57600080fd5b506102276004803603604081101561021157600080fd5b506001600160a01b0381351690602001356108a7565b604080519115158252519081900360200190f35b34801561024757600080fd5b506102506108c4565b60408051918252519081900360200190f35b34801561026e57600080fd5b5061015d6004803603604081101561028557600080fd5b506001600160a01b0381351690602001356108ca565b3480156102a757600080fd5b50610227600480360360608110156102be57600080fd5b506001600160a01b0381358116916020810135909116906040013561096f565b3480156102ea57600080fd5b5061015d6004803603602081101561030157600080fd5b50356109fc565b34801561031457600080fd5b5061031d610a06565b6040805160ff9092168252519081900360200190f35b34801561033f57600080fd5b50610250610a0f565b34801561035457600080fd5b506102276004803603604081101561036b57600080fd5b506001600160a01b038135169060200135610a1e565b34801561038d57600080fd5b50610227600480360360608110156103a457600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156103d357600080fd5b8201836020820111156103e557600080fd5b803590602001918460018302840111600160201b8311171561040657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a72945050505050565b34801561045357600080fd5b506102506004803603602081101561046a57600080fd5b50356001600160a01b0316610b4d565b34801561048657600080fd5b5061015d6004803603604081101561049d57600080fd5b506001600160a01b038135169060200135610b68565b3480156104bf57600080fd5b50610250600480360360208110156104d657600080fd5b50356001600160a01b0316610c02565b3480156104f257600080fd5b5061015d6004803603604081101561050957600080fd5b506001600160a01b038135169060200135610c29565b34801561052b57600080fd5b50610534610c67565b604080516001600160a01b039092168252519081900360200190f35b34801561055c57600080fd5b50610179610c76565b34801561057157600080fd5b506102276004803603604081101561058857600080fd5b506001600160a01b038135169060200135610cd7565b3480156105aa57600080fd5b50610227600480360360408110156105c157600080fd5b506001600160a01b038135169060200135610d45565b61015d600480360360208110156105ed57600080fd5b50356001600160a01b0316610803565b34801561060957600080fd5b50610534610d59565b34801561061e57600080fd5b5061015d600480360360a081101561063557600080fd5b810190602081018135600160201b81111561064f57600080fd5b82018360208201111561066157600080fd5b803590602001918460018302840111600160201b8311171561068257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156106d457600080fd5b8201836020820111156106e657600080fd5b803590602001918460018302840111600160201b8311171561070757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff8335169350506001600160a01b03602083013581169260400135169050610d68565b61015d610d7c565b34801561077657600080fd5b5061015d600480360360e081101561078d57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610d87565b3480156107d457600080fd5b50610250600480360360408110156107eb57600080fd5b506001600160a01b0381358116916020013516610f1f565b61080d8134610f50565b50565b60368054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b505050505090505b90565b60006108bb6108b461103c565b8484611040565b50600192915050565b60355490565b6108d4338261112c565b6040516000906001600160a01b0384169083908381818185875af1925050503d806000811461091f576040519150601f19603f3d011682016040523d82523d6000602084013e610924565b606091505b505090508061096a576040805162461bcd60e51b815260206004820152600d60248201526c2320a4a62faa2920a729a322a960991b604482015290519081900360640190fd5b505050565b600061097c848484611222565b6109f28461098861103c565b6109ed85604051806060016040528060288152602001612080602891396001600160a01b038a166000908152603460205260408120906109c661103c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61137916565b611040565b5060019392505050565b61080d33826108ca565b60385460ff1690565b6000610a19611410565b905090565b60006108bb610a2b61103c565b846109ed8560346000610a3c61103c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61144316565b6000610a7e8484610d45565b50836001600160a01b0316336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610af9578181015183820152602001610ae1565b50505050905090810190601f168015610b265780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3610b3d84610f4a565b156109f2576109f28484846114a4565b6001600160a01b031660009081526033602052604090205490565b60cc546001600160a01b03163314610bb6576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b610bc0828261112c565b604051600090339083908381818185875af1925050503d806000811461091f576040519150601f19603f3d011682016040523d82523d6000602084013e610924565b6001600160a01b0381166000908152609960205260408120610c239061157e565b92915050565b6040805162461bcd60e51b815260206004820152600e60248201526d1393d7d094925111d157d352539560921b604482015290519081900360640190fd5b60cc546001600160a01b031681565b60378054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089c5780601f106108715761010080835404028352916020019161089c565b60006108bb610ce461103c565b846109ed856040518060600160405280602581526020016121326025913960346000610d0e61103c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61137916565b60006108bb610d5261103c565b8484611222565b60cd546001600160a01b031681565b610d758585858585611582565b5050505050565b610d8533610803565b565b83421115610ddc576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6000609a54888888610e11609960008e6001600160a01b03166001600160a01b0316815260200190815260200160002061157e565b604080516020808201979097526001600160a01b0395861681830152939094166060840152608083019190915260a082015260c08082018990528251808303909101815260e0909101909152805191012090506000610e6f82611657565b90506000610e7f828787876116a3565b9050896001600160a01b0316816001600160a01b031614610ee7576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a166000908152609960205260409020610f089061180e565b610f138a8a8a611040565b50505050505050505050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b3b151590565b6001600160a01b038216610fab576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610fb76000838361096a565b603554610fca908263ffffffff61144316565b6035556001600160a01b038216600090815260336020526040902054610ff6908263ffffffff61144316565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391926000805160206120a88339815191529281900390910190a35050565b3390565b6001600160a01b0383166110855760405162461bcd60e51b815260040180806020018281038252602481526020018061210e6024913960400191505060405180910390fd5b6001600160a01b0382166110ca5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f226022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166111715760405162461bcd60e51b81526004018080602001828103825260218152602001806120c86021913960400191505060405180910390fd5b61117d8260008361096a565b6111c081604051806060016040528060228152602001611f00602291396001600160a01b038516600090815260336020526040902054919063ffffffff61137916565b6001600160a01b0383166000908152603360205260409020556035546111ec908263ffffffff61181716565b6035556040805182815290516000916001600160a01b038516916000805160206120a88339815191529181900360200190a35050565b6001600160a01b0383166112675760405162461bcd60e51b81526004018080602001828103825260258152602001806120e96025913960400191505060405180910390fd5b6001600160a01b0382166112ac5760405162461bcd60e51b8152600401808060200182810382526023815260200180611edd6023913960400191505060405180910390fd5b6112b783838361096a565b6112fa81604051806060016040528060268152602001611f44602691396001600160a01b038616600090815260336020526040902054919063ffffffff61137916565b6001600160a01b03808516600090815260336020526040808220939093559084168152205461132f908263ffffffff61144316565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716926000805160206120a883398151915292918290030190a3505050565b600081848411156114085760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113cd5781810151838201526020016113b5565b50505050905090810190601f1680156113fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610a19604051808061202e6052913960520190506040518091039020611436611874565b61143e61187a565b611880565b60008282018381101561149d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b604051635260769b60e11b815233600482018181526024830185905260606044840190815284516064850152845187946001600160a01b0386169463a4c0ed369490938993899360840190602085019080838360005b838110156115125781810151838201526020016114fa565b50505050905090810190601f16801561153f5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b15801561156057600080fd5b505af1158015611574573d6000803e3d6000fd5b5050505050505050565b5490565b6001600160a01b0382166115cf576040805162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4741544557415960881b604482015290519081900360640190fd5b60cc546001600160a01b03161561161c576040805162461bcd60e51b815260206004820152600c60248201526b1053149150511657d253925560a21b604482015290519081900360640190fd5b60cc80546001600160a01b038085166001600160a01b03199283161790925560cd805492841692909116919091179055610d758585856118d6565b6000611661611410565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60006fa2a8918ca85bafe22016d0b997e4df60600160ff1b038211156116fa5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f6a6022913960400191505060405180910390fd5b8360ff16601b148061170f57508360ff16601c145b61174a5760405162461bcd60e51b815260040180806020018281038252602281526020018061200c6022913960400191505060405180910390fd5b604080516000808252602080830180855289905260ff88168385015260608301879052608083018690529251909260019260a080820193601f1981019281900390910190855afa1580156117a2573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611805576040805162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b604482015290519081900360640190fd5b95945050505050565b80546001019055565b60008282111561186e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60655490565b60665490565b600083838361188d611997565b6040805160208082019690965280820194909452606084019290925260808301523060a0808401919091528151808403909101815260c090920190528051910120949350505050565b600054610100900460ff16806118ef57506118ef61199b565b806118fd575060005460ff16155b6119385760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611963576000805460ff1961ff0019909116610100171660011790555b61196c846119ac565b6119768484611a83565b61197f82611b38565b8015611991576000805461ff00191690555b50505050565b4690565b60006119a630610f4a565b15905090565b600054610100900460ff16806119c557506119c561199b565b806119d3575060005460ff16155b611a0e5760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611a39576000805460ff1961ff0019909116610100171660011790555b611a41611b4e565b611a6482604051806040016040528060018152602001603160f81b815250611bef565b611a6d82611caf565b8015611a7f576000805461ff00191690555b5050565b600054610100900460ff1680611a9c5750611a9c61199b565b80611aaa575060005460ff16155b611ae55760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611b10576000805460ff1961ff0019909116610100171660011790555b611b18611b4e565b611b228383611d6c565b801561096a576000805461ff0019169055505050565b6038805460ff191660ff92909216919091179055565b600054610100900460ff1680611b675750611b6761199b565b80611b75575060005460ff16155b611bb05760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611bdb576000805460ff1961ff0019909116610100171660011790555b801561080d576000805461ff001916905550565b600054610100900460ff1680611c085750611c0861199b565b80611c16575060005460ff16155b611c515760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611c7c576000805460ff1961ff0019909116610100171660011790555b8251602080850191909120835191840191909120606591909155606655801561096a576000805461ff0019169055505050565b600054610100900460ff1680611cc85750611cc861199b565b80611cd6575060005460ff16155b611d115760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611d3c576000805460ff1961ff0019909116610100171660011790555b604051806052611f8c8239604051908190036052019020609a55508015611a7f576000805461ff00191690555050565b600054610100900460ff1680611d855750611d8561199b565b80611d93575060005460ff16155b611dce5760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611df9576000805460ff1961ff0019909116610100171660011790555b8251611e0c906036906020860190611e44565b508151611e20906037906020850190611e44565b506038805460ff19166012179055801561096a576000805461ff0019169055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611e8557805160ff1916838001178555611eb2565b82800160010185558215611eb2579182015b82811115611eb2578251825591602001919060010190611e97565b50611ebe929150611ec2565b5090565b6108a491905b80821115611ebe5760008155600101611ec856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c75655065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656445434453413a20696e76616c6964207369676e6174757265202776272076616c7565454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dcd7bccf4c98213e71b4cc518c51f08f05f2013c6b824e33d5b20715695882ee64736f6c634300060b0033496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564
Deployed Bytecode
0x60806040526004361061014f5760003560e01c80637ecebe00116100b6578063b760faf91161006f578063b760faf9146105d7578063c2eeeebd146105fd578063c820f14614610612578063d0e30db014610762578063d505accf1461076a578063dd62ed3e146107c85761015f565b80637ecebe00146104b35780638c2a993e146104e65780638fa74a0e1461051f57806395d89b4114610550578063a457c2d714610565578063a9059cbb1461059e5761015f565b8063313ce56711610108578063313ce567146103085780633644e5151461033357806339509351146103485780634000aea01461038157806370a082311461044757806374f4f5471461047a5761015f565b806306fdde0314610164578063095ea7b3146101ee57806318160ddd1461023b578063205c28781461026257806323b872dd1461029b5780632e1a7d4d146102de5761015f565b3661015f5761015d33610803565b005b600080fd5b34801561017057600080fd5b50610179610810565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b357818101518382015260200161019b565b50505050905090810190601f1680156101e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101fa57600080fd5b506102276004803603604081101561021157600080fd5b506001600160a01b0381351690602001356108a7565b604080519115158252519081900360200190f35b34801561024757600080fd5b506102506108c4565b60408051918252519081900360200190f35b34801561026e57600080fd5b5061015d6004803603604081101561028557600080fd5b506001600160a01b0381351690602001356108ca565b3480156102a757600080fd5b50610227600480360360608110156102be57600080fd5b506001600160a01b0381358116916020810135909116906040013561096f565b3480156102ea57600080fd5b5061015d6004803603602081101561030157600080fd5b50356109fc565b34801561031457600080fd5b5061031d610a06565b6040805160ff9092168252519081900360200190f35b34801561033f57600080fd5b50610250610a0f565b34801561035457600080fd5b506102276004803603604081101561036b57600080fd5b506001600160a01b038135169060200135610a1e565b34801561038d57600080fd5b50610227600480360360608110156103a457600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156103d357600080fd5b8201836020820111156103e557600080fd5b803590602001918460018302840111600160201b8311171561040657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a72945050505050565b34801561045357600080fd5b506102506004803603602081101561046a57600080fd5b50356001600160a01b0316610b4d565b34801561048657600080fd5b5061015d6004803603604081101561049d57600080fd5b506001600160a01b038135169060200135610b68565b3480156104bf57600080fd5b50610250600480360360208110156104d657600080fd5b50356001600160a01b0316610c02565b3480156104f257600080fd5b5061015d6004803603604081101561050957600080fd5b506001600160a01b038135169060200135610c29565b34801561052b57600080fd5b50610534610c67565b604080516001600160a01b039092168252519081900360200190f35b34801561055c57600080fd5b50610179610c76565b34801561057157600080fd5b506102276004803603604081101561058857600080fd5b506001600160a01b038135169060200135610cd7565b3480156105aa57600080fd5b50610227600480360360408110156105c157600080fd5b506001600160a01b038135169060200135610d45565b61015d600480360360208110156105ed57600080fd5b50356001600160a01b0316610803565b34801561060957600080fd5b50610534610d59565b34801561061e57600080fd5b5061015d600480360360a081101561063557600080fd5b810190602081018135600160201b81111561064f57600080fd5b82018360208201111561066157600080fd5b803590602001918460018302840111600160201b8311171561068257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156106d457600080fd5b8201836020820111156106e657600080fd5b803590602001918460018302840111600160201b8311171561070757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff8335169350506001600160a01b03602083013581169260400135169050610d68565b61015d610d7c565b34801561077657600080fd5b5061015d600480360360e081101561078d57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610d87565b3480156107d457600080fd5b50610250600480360360408110156107eb57600080fd5b506001600160a01b0381358116916020013516610f1f565b61080d8134610f50565b50565b60368054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b505050505090505b90565b60006108bb6108b461103c565b8484611040565b50600192915050565b60355490565b6108d4338261112c565b6040516000906001600160a01b0384169083908381818185875af1925050503d806000811461091f576040519150601f19603f3d011682016040523d82523d6000602084013e610924565b606091505b505090508061096a576040805162461bcd60e51b815260206004820152600d60248201526c2320a4a62faa2920a729a322a960991b604482015290519081900360640190fd5b505050565b600061097c848484611222565b6109f28461098861103c565b6109ed85604051806060016040528060288152602001612080602891396001600160a01b038a166000908152603460205260408120906109c661103c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61137916565b611040565b5060019392505050565b61080d33826108ca565b60385460ff1690565b6000610a19611410565b905090565b60006108bb610a2b61103c565b846109ed8560346000610a3c61103c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61144316565b6000610a7e8484610d45565b50836001600160a01b0316336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610af9578181015183820152602001610ae1565b50505050905090810190601f168015610b265780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3610b3d84610f4a565b156109f2576109f28484846114a4565b6001600160a01b031660009081526033602052604090205490565b60cc546001600160a01b03163314610bb6576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b610bc0828261112c565b604051600090339083908381818185875af1925050503d806000811461091f576040519150601f19603f3d011682016040523d82523d6000602084013e610924565b6001600160a01b0381166000908152609960205260408120610c239061157e565b92915050565b6040805162461bcd60e51b815260206004820152600e60248201526d1393d7d094925111d157d352539560921b604482015290519081900360640190fd5b60cc546001600160a01b031681565b60378054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089c5780601f106108715761010080835404028352916020019161089c565b60006108bb610ce461103c565b846109ed856040518060600160405280602581526020016121326025913960346000610d0e61103c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61137916565b60006108bb610d5261103c565b8484611222565b60cd546001600160a01b031681565b610d758585858585611582565b5050505050565b610d8533610803565b565b83421115610ddc576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6000609a54888888610e11609960008e6001600160a01b03166001600160a01b0316815260200190815260200160002061157e565b604080516020808201979097526001600160a01b0395861681830152939094166060840152608083019190915260a082015260c08082018990528251808303909101815260e0909101909152805191012090506000610e6f82611657565b90506000610e7f828787876116a3565b9050896001600160a01b0316816001600160a01b031614610ee7576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a166000908152609960205260409020610f089061180e565b610f138a8a8a611040565b50505050505050505050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b3b151590565b6001600160a01b038216610fab576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610fb76000838361096a565b603554610fca908263ffffffff61144316565b6035556001600160a01b038216600090815260336020526040902054610ff6908263ffffffff61144316565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391926000805160206120a88339815191529281900390910190a35050565b3390565b6001600160a01b0383166110855760405162461bcd60e51b815260040180806020018281038252602481526020018061210e6024913960400191505060405180910390fd5b6001600160a01b0382166110ca5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f226022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166111715760405162461bcd60e51b81526004018080602001828103825260218152602001806120c86021913960400191505060405180910390fd5b61117d8260008361096a565b6111c081604051806060016040528060228152602001611f00602291396001600160a01b038516600090815260336020526040902054919063ffffffff61137916565b6001600160a01b0383166000908152603360205260409020556035546111ec908263ffffffff61181716565b6035556040805182815290516000916001600160a01b038516916000805160206120a88339815191529181900360200190a35050565b6001600160a01b0383166112675760405162461bcd60e51b81526004018080602001828103825260258152602001806120e96025913960400191505060405180910390fd5b6001600160a01b0382166112ac5760405162461bcd60e51b8152600401808060200182810382526023815260200180611edd6023913960400191505060405180910390fd5b6112b783838361096a565b6112fa81604051806060016040528060268152602001611f44602691396001600160a01b038616600090815260336020526040902054919063ffffffff61137916565b6001600160a01b03808516600090815260336020526040808220939093559084168152205461132f908263ffffffff61144316565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716926000805160206120a883398151915292918290030190a3505050565b600081848411156114085760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113cd5781810151838201526020016113b5565b50505050905090810190601f1680156113fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610a19604051808061202e6052913960520190506040518091039020611436611874565b61143e61187a565b611880565b60008282018381101561149d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b604051635260769b60e11b815233600482018181526024830185905260606044840190815284516064850152845187946001600160a01b0386169463a4c0ed369490938993899360840190602085019080838360005b838110156115125781810151838201526020016114fa565b50505050905090810190601f16801561153f5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b15801561156057600080fd5b505af1158015611574573d6000803e3d6000fd5b5050505050505050565b5490565b6001600160a01b0382166115cf576040805162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4741544557415960881b604482015290519081900360640190fd5b60cc546001600160a01b03161561161c576040805162461bcd60e51b815260206004820152600c60248201526b1053149150511657d253925560a21b604482015290519081900360640190fd5b60cc80546001600160a01b038085166001600160a01b03199283161790925560cd805492841692909116919091179055610d758585856118d6565b6000611661611410565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60006fa2a8918ca85bafe22016d0b997e4df60600160ff1b038211156116fa5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f6a6022913960400191505060405180910390fd5b8360ff16601b148061170f57508360ff16601c145b61174a5760405162461bcd60e51b815260040180806020018281038252602281526020018061200c6022913960400191505060405180910390fd5b604080516000808252602080830180855289905260ff88168385015260608301879052608083018690529251909260019260a080820193601f1981019281900390910190855afa1580156117a2573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611805576040805162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b604482015290519081900360640190fd5b95945050505050565b80546001019055565b60008282111561186e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60655490565b60665490565b600083838361188d611997565b6040805160208082019690965280820194909452606084019290925260808301523060a0808401919091528151808403909101815260c090920190528051910120949350505050565b600054610100900460ff16806118ef57506118ef61199b565b806118fd575060005460ff16155b6119385760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611963576000805460ff1961ff0019909116610100171660011790555b61196c846119ac565b6119768484611a83565b61197f82611b38565b8015611991576000805461ff00191690555b50505050565b4690565b60006119a630610f4a565b15905090565b600054610100900460ff16806119c557506119c561199b565b806119d3575060005460ff16155b611a0e5760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611a39576000805460ff1961ff0019909116610100171660011790555b611a41611b4e565b611a6482604051806040016040528060018152602001603160f81b815250611bef565b611a6d82611caf565b8015611a7f576000805461ff00191690555b5050565b600054610100900460ff1680611a9c5750611a9c61199b565b80611aaa575060005460ff16155b611ae55760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611b10576000805460ff1961ff0019909116610100171660011790555b611b18611b4e565b611b228383611d6c565b801561096a576000805461ff0019169055505050565b6038805460ff191660ff92909216919091179055565b600054610100900460ff1680611b675750611b6761199b565b80611b75575060005460ff16155b611bb05760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611bdb576000805460ff1961ff0019909116610100171660011790555b801561080d576000805461ff001916905550565b600054610100900460ff1680611c085750611c0861199b565b80611c16575060005460ff16155b611c515760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611c7c576000805460ff1961ff0019909116610100171660011790555b8251602080850191909120835191840191909120606591909155606655801561096a576000805461ff0019169055505050565b600054610100900460ff1680611cc85750611cc861199b565b80611cd6575060005460ff16155b611d115760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611d3c576000805460ff1961ff0019909116610100171660011790555b604051806052611f8c8239604051908190036052019020609a55508015611a7f576000805461ff00191690555050565b600054610100900460ff1680611d855750611d8561199b565b80611d93575060005460ff16155b611dce5760405162461bcd60e51b815260040180806020018281038252602e815260200180611fde602e913960400191505060405180910390fd5b600054610100900460ff16158015611df9576000805460ff1961ff0019909116610100171660011790555b8251611e0c906036906020860190611e44565b508151611e20906037906020850190611e44565b506038805460ff19166012179055801561096a576000805461ff0019169055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611e8557805160ff1916838001178555611eb2565b82800160010185558215611eb2579182015b82811115611eb2578251825591602001919060010190611e97565b50611ebe929150611ec2565b5090565b6108a491905b80821115611ebe5760008155600101611ec856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c75655065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656445434453413a20696e76616c6964207369676e6174757265202776272076616c7565454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dcd7bccf4c98213e71b4cc518c51f08f05f2013c6b824e33d5b20715695882ee64736f6c634300060b0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.