Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 14,537 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit ETH And ... | 20395697 | 163 days ago | IN | 0.00567 ETH | 0.00007311 | ||||
Deposit ETH And ... | 15960856 | 785 days ago | IN | 0.025 ETH | 0.00123435 | ||||
Deposit | 14256761 | 1049 days ago | IN | 0 ETH | 0.00835337 | ||||
Deposit | 14250867 | 1050 days ago | IN | 0 ETH | 0.01000164 | ||||
Deposit | 14242561 | 1051 days ago | IN | 0 ETH | 0.00498453 | ||||
Deposit | 14234325 | 1052 days ago | IN | 0 ETH | 0.00498147 | ||||
Deposit | 14229715 | 1053 days ago | IN | 0 ETH | 0.00691742 | ||||
Deposit | 14220679 | 1054 days ago | IN | 0 ETH | 0.00637723 | ||||
Deposit | 14214600 | 1055 days ago | IN | 0 ETH | 0.00578682 | ||||
Deposit | 14212620 | 1055 days ago | IN | 0 ETH | 0.00801627 | ||||
Deposit | 14208194 | 1056 days ago | IN | 0 ETH | 0.00518363 | ||||
Deposit | 14204668 | 1057 days ago | IN | 0 ETH | 0.00450094 | ||||
Deposit | 14191114 | 1059 days ago | IN | 0 ETH | 0.00319803 | ||||
Deposit | 14191106 | 1059 days ago | IN | 0 ETH | 0.00348498 | ||||
Deposit | 14190509 | 1059 days ago | IN | 0 ETH | 0.00336102 | ||||
Deposit | 14189641 | 1059 days ago | IN | 0 ETH | 0.00415836 | ||||
Deposit | 14189632 | 1059 days ago | IN | 0 ETH | 0.00333068 | ||||
Deposit | 14189609 | 1059 days ago | IN | 0 ETH | 0.00330875 | ||||
Deposit | 14188277 | 1059 days ago | IN | 0 ETH | 0.00553396 | ||||
Deposit | 14188243 | 1059 days ago | IN | 0 ETH | 0.00416445 | ||||
Deposit | 14185838 | 1060 days ago | IN | 0 ETH | 0.00908228 | ||||
Deposit | 14184824 | 1060 days ago | IN | 0 ETH | 0.00310248 | ||||
Deposit | 14183650 | 1060 days ago | IN | 0 ETH | 0.00347996 | ||||
Deposit | 14180963 | 1060 days ago | IN | 0 ETH | 0.01006626 | ||||
Deposit | 14176714 | 1061 days ago | IN | 0 ETH | 0.00536627 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20395697 | 163 days ago | 0.00567 ETH | ||||
15960856 | 785 days ago | 0.025 ETH | ||||
14107049 | 1072 days ago | 0.025 ETH | ||||
13902877 | 1103 days ago | 0.019 ETH | ||||
13902877 | 1103 days ago | 0.022 ETH | ||||
13741312 | 1129 days ago | 0.025 ETH | ||||
13741312 | 1129 days ago | 0.025 ETH | ||||
13724307 | 1131 days ago | 0.105 ETH | ||||
13710595 | 1133 days ago | 56 ETH | ||||
13709967 | 1134 days ago | 10 ETH | ||||
13705120 | 1134 days ago | 80 ETH | ||||
13703923 | 1135 days ago | 0.05 ETH | ||||
13703258 | 1135 days ago | 4 ETH | ||||
13702882 | 1135 days ago | 0.03 ETH | ||||
13702864 | 1135 days ago | 2.5 ETH | ||||
13702829 | 1135 days ago | 0.9 ETH | ||||
13702808 | 1135 days ago | 0.6 ETH | ||||
13702742 | 1135 days ago | 0.1 ETH | ||||
13702682 | 1135 days ago | 1 ETH | ||||
13702576 | 1135 days ago | 0.15831983 ETH | ||||
13702413 | 1135 days ago | 0.64821601 ETH | ||||
13702394 | 1135 days ago | 0.1 ETH | ||||
13702379 | 1135 days ago | 14.5 ETH | ||||
13702356 | 1135 days ago | 0.02 ETH | ||||
13702325 | 1135 days ago | 0.0105 ETH |
Loading...
Loading
Contract Name:
NerveBridgeZap
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/SafeERC20.sol'; import '../interfaces/ISwap.sol'; import '../interfaces/ISynapseBridge.sol'; import "../interfaces/IWETH9.sol"; /** * @title NerveBridgeZap * @notice This contract is responsible for handling user Zaps into the SynapseBridge contract, through the Synapse Swap contracts. It does so * It does so by combining the action of addLiquidity() to the base swap pool, and then calling either deposit() or depositAndSwap() on the bridge. * This is done in hopes of automating portions of the bridge user experience to users, while keeping the SynapseBridge contract logic small. * * @dev This contract should be deployed with a base Swap.sol address and a SynapseBridge.sol address, otherwise, it will not function. */ contract NerveBridgeZap { using SafeERC20 for IERC20; uint256 constant MAX_UINT256 = 2**256 - 1; ISwap baseSwap; ISynapseBridge synapseBridge; IERC20[] public baseTokens; address payable public immutable WETH_ADDRESS; /** * @notice Constructs the contract, approves each token inside of baseSwap to be used by baseSwap (needed for addLiquidity()) */ constructor(address payable _wethAddress, ISwap _baseSwap, ISynapseBridge _synapseBridge) public { WETH_ADDRESS = _wethAddress; baseSwap = _baseSwap; synapseBridge = _synapseBridge; IERC20(_wethAddress).safeIncreaseAllowance(address(_synapseBridge), MAX_UINT256); { uint8 i; for (; i < 32; i++) { try _baseSwap.getToken(i) returns (IERC20 token) { baseTokens.push(token); token.safeIncreaseAllowance(address(_baseSwap), MAX_UINT256); } catch { break; } } require(i > 1, 'baseSwap must have at least 2 tokens'); } } /** * @notice Wraps SynapseBridge deposit() function to make it compatible w/ ETH -> WETH conversions * @param to address on other chain to bridge assets to * @param chainId which chain to bridge assets onto * @param amount Amount in native token decimals to transfer cross-chain pre-fees **/ function depositETH( address to, uint256 chainId, uint256 amount ) external payable { require(msg.value > 0 && msg.value == amount, 'INCORRECT MSG VALUE'); IWETH9(WETH_ADDRESS).deposit{value: msg.value}(); synapseBridge.deposit(to, chainId, IERC20(WETH_ADDRESS), amount); } /** * @notice Wraps SynapseBridge depositAndSwap() function to make it compatible w/ ETH -> WETH conversions * @param to address on other chain to bridge assets to * @param chainId which chain to bridge assets onto * @param amount Amount in native token decimals to transfer cross-chain pre-fees * @param tokenIndexFrom the token the user wants to swap from * @param tokenIndexTo the token the user wants to swap to * @param minDy the min amount the user would like to receive, or revert to only minting the SynERC20 token crosschain. * @param deadline latest timestamp to accept this transaction **/ function depositETHAndSwap( address to, uint256 chainId, uint256 amount, uint8 tokenIndexFrom, uint8 tokenIndexTo, uint256 minDy, uint256 deadline ) external payable { require(msg.value > 0 && msg.value == amount, 'INCORRECT MSG VALUE'); IWETH9(WETH_ADDRESS).deposit{value: msg.value}(); synapseBridge.depositAndSwap(to, chainId, IERC20(WETH_ADDRESS), amount, tokenIndexFrom, tokenIndexTo, minDy, deadline); } /** * @notice A simple method to calculate prices from deposits or * withdrawals, excluding fees but including slippage. This is * helpful as an input into the various "min" parameters on calls * to fight front-running * * @dev This shouldn't be used outside frontends for user estimates. * * @param amounts an array of token amounts to deposit or withdrawal, * corresponding to pooledTokens. The amount should be in each * pooled token's native precision. * @param deposit whether this is a deposit or a withdrawal * @return token amount the user will receive */ function calculateTokenAmount(uint256[] calldata amounts, bool deposit) external view virtual returns (uint256) { return baseSwap.calculateTokenAmount(amounts, deposit); } /** * @notice Combines adding liquidity to the given Swap, and calls deposit() on the bridge using that LP token * @param to address on other chain to bridge assets to * @param chainId which chain to bridge assets onto * @param token ERC20 compatible token to deposit into the bridge * @param liquidityAmounts the amounts of each token to add, in their native precision * @param minToMint the minimum LP tokens adding this amount of liquidity * should mint, otherwise revert. Handy for front-running mitigation * @param deadline latest timestamp to accept this transaction **/ function zapAndDeposit( address to, uint256 chainId, IERC20 token, uint256[] calldata liquidityAmounts, uint256 minToMint, uint256 deadline ) external { // add liquidity for (uint256 i = 0; i < baseTokens.length; i++) { if (liquidityAmounts[i] != 0) { baseTokens[i].safeTransferFrom( msg.sender, address(this), liquidityAmounts[i] ); } } uint256 liqAdded = baseSwap.addLiquidity( liquidityAmounts, minToMint, deadline ); // deposit into bridge, gets nUSD if (token.allowance(address(this), address(synapseBridge)) < liqAdded) { token.safeApprove(address(synapseBridge), MAX_UINT256); } synapseBridge.deposit(to, chainId, token, liqAdded); } /** * @notice Combines adding liquidity to the given Swap, and calls depositAndSwap() on the bridge using that LP token * @param to address on other chain to bridge assets to * @param chainId which chain to bridge assets onto * @param token ERC20 compatible token to deposit into the bridge * @param liquidityAmounts the amounts of each token to add, in their native precision * @param minToMint the minimum LP tokens adding this amount of liquidity * should mint, otherwise revert. Handy for front-running mitigation * @param liqDeadline latest timestamp to accept this transaction * @param tokenIndexFrom the token the user wants to swap from * @param tokenIndexTo the token the user wants to swap to * @param minDy the min amount the user would like to receive, or revert to only minting the SynERC20 token crosschain. * @param swapDeadline latest timestamp to accept this transaction **/ function zapAndDepositAndSwap( address to, uint256 chainId, IERC20 token, uint256[] calldata liquidityAmounts, uint256 minToMint, uint256 liqDeadline, uint8 tokenIndexFrom, uint8 tokenIndexTo, uint256 minDy, uint256 swapDeadline ) external { // add liquidity for (uint256 i = 0; i < baseTokens.length; i++) { if (liquidityAmounts[i] != 0) { baseTokens[i].safeTransferFrom( msg.sender, address(this), liquidityAmounts[i] ); } } uint256 liqAdded = baseSwap.addLiquidity( liquidityAmounts, minToMint, liqDeadline ); // deposit into bridge, bridge attemps to swap into desired asset if (token.allowance(address(this), address(synapseBridge)) < liqAdded) { token.safeApprove(address(synapseBridge), MAX_UINT256); } synapseBridge.depositAndSwap( to, chainId, token, liqAdded, tokenIndexFrom, tokenIndexTo, minDy, swapDeadline ); } /** * @notice Wraps SynapseBridge deposit() function * @param to address on other chain to bridge assets to * @param chainId which chain to bridge assets onto * @param token ERC20 compatible token to deposit into the bridge * @param amount Amount in native token decimals to transfer cross-chain pre-fees **/ function deposit( address to, uint256 chainId, IERC20 token, uint256 amount ) external { token.safeTransferFrom(msg.sender, address(this), amount); if (token.allowance(address(this), address(synapseBridge)) < amount) { token.safeApprove(address(synapseBridge), MAX_UINT256); } synapseBridge.deposit(to, chainId, token, amount); } /** * @notice Wraps SynapseBridge depositAndSwap() function * @param to address on other chain to bridge assets to * @param chainId which chain to bridge assets onto * @param token ERC20 compatible token to deposit into the bridge * @param amount Amount in native token decimals to transfer cross-chain pre-fees * @param tokenIndexFrom the token the user wants to swap from * @param tokenIndexTo the token the user wants to swap to * @param minDy the min amount the user would like to receive, or revert to only minting the SynERC20 token crosschain. * @param deadline latest timestamp to accept this transaction **/ function depositAndSwap( address to, uint256 chainId, IERC20 token, uint256 amount, uint8 tokenIndexFrom, uint8 tokenIndexTo, uint256 minDy, uint256 deadline ) external { token.safeTransferFrom(msg.sender, address(this), amount); if (token.allowance(address(this), address(synapseBridge)) < amount) { token.safeApprove(address(synapseBridge), MAX_UINT256); } synapseBridge.depositAndSwap(to, chainId, token, amount, tokenIndexFrom, tokenIndexTo, minDy, deadline); } /** * @notice Wraps SynapseBridge redeem() function * @param to address on other chain to bridge assets to * @param chainId which chain to bridge assets onto * @param token ERC20 compatible token to redeem into the bridge * @param amount Amount in native token decimals to transfer cross-chain pre-fees **/ function redeem( address to, uint256 chainId, IERC20 token, uint256 amount ) external { token.safeTransferFrom(msg.sender, address(this), amount); if (token.allowance(address(this), address(synapseBridge)) < amount) { token.safeApprove(address(synapseBridge), MAX_UINT256); } synapseBridge.redeem(to, chainId, token, amount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../utils/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view 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 { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../utils/Context.sol"; import "./ERC20.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; interface ISwap { // pool data view functions function getA() external view returns (uint256); function getToken(uint8 index) external view returns (IERC20); function getTokenIndex(address tokenAddress) external view returns (uint8); function getTokenBalance(uint8 index) external view returns (uint256); function getVirtualPrice() external view returns (uint256); // min return calculation functions function calculateSwap( uint8 tokenIndexFrom, uint8 tokenIndexTo, uint256 dx ) external view returns (uint256); function calculateTokenAmount(uint256[] calldata amounts, bool deposit) external view returns (uint256); function calculateRemoveLiquidity(uint256 amount) external view returns (uint256[] memory); function calculateRemoveLiquidityOneToken( uint256 tokenAmount, uint8 tokenIndex ) external view returns (uint256 availableTokenAmount); // state modifying functions function initialize( IERC20[] memory pooledTokens, uint8[] memory decimals, string memory lpTokenName, string memory lpTokenSymbol, uint256 a, uint256 fee, uint256 adminFee, address lpTokenTargetAddress ) external; function swap( uint8 tokenIndexFrom, uint8 tokenIndexTo, uint256 dx, uint256 minDy, uint256 deadline ) external returns (uint256); function addLiquidity( uint256[] calldata amounts, uint256 minToMint, uint256 deadline ) external returns (uint256); function removeLiquidity( uint256 amount, uint256[] calldata minAmounts, uint256 deadline ) external returns (uint256[] memory); function removeLiquidityOneToken( uint256 tokenAmount, uint8 tokenIndex, uint256 minAmount, uint256 deadline ) external returns (uint256); function removeLiquidityImbalance( uint256[] calldata amounts, uint256 maxBurnAmount, uint256 deadline ) external returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import '@openzeppelin/contracts/token/ERC20/SafeERC20.sol'; import '@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol'; interface ISynapseBridge { using SafeERC20 for IERC20; function deposit( address to, uint256 chainId, IERC20 token, uint256 amount ) external; function depositAndSwap( address to, uint256 chainId, IERC20 token, uint256 amount, uint8 tokenIndexFrom, uint8 tokenIndexTo, uint256 minDy, uint256 deadline ) external; function redeem( address to, uint256 chainId, IERC20 token, uint256 amount ) external; function redeemAndSwap( address to, uint256 chainId, IERC20 token, uint256 amount, uint8 tokenIndexFrom, uint8 tokenIndexTo, uint256 minDy, uint256 deadline ) external; function redeemAndRemove( address to, uint256 chainId, IERC20 token, uint256 amount, uint8 liqTokenIndex, uint256 liqMinAmount, uint256 liqDeadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.4.0; interface IWETH9 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function balanceOf(address) external view returns (uint256); function allowance(address, address) external view returns (uint256); receive() external payable; function deposit() external payable; function withdraw(uint256 wad) external; function totalSupply() external view returns (uint256); function approve(address guy, uint256 wad) external returns (bool); function transfer(address dst, uint256 wad) external returns (bool); function transferFrom( address src, address dst, uint256 wad ) external returns (bool); }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 10000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"_wethAddress","type":"address"},{"internalType":"contract ISwap","name":"_baseSwap","type":"address"},{"internalType":"contract ISynapseBridge","name":"_synapseBridge","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"WETH_ADDRESS","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"baseTokens","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bool","name":"deposit","type":"bool"}],"name":"calculateTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"tokenIndexFrom","type":"uint8"},{"internalType":"uint8","name":"tokenIndexTo","type":"uint8"},{"internalType":"uint256","name":"minDy","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"depositAndSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"tokenIndexFrom","type":"uint8"},{"internalType":"uint8","name":"tokenIndexTo","type":"uint8"},{"internalType":"uint256","name":"minDy","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"depositETHAndSwap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256[]","name":"liquidityAmounts","type":"uint256[]"},{"internalType":"uint256","name":"minToMint","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"zapAndDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256[]","name":"liquidityAmounts","type":"uint256[]"},{"internalType":"uint256","name":"minToMint","type":"uint256"},{"internalType":"uint256","name":"liqDeadline","type":"uint256"},{"internalType":"uint8","name":"tokenIndexFrom","type":"uint8"},{"internalType":"uint8","name":"tokenIndexTo","type":"uint8"},{"internalType":"uint256","name":"minDy","type":"uint256"},{"internalType":"uint256","name":"swapDeadline","type":"uint256"}],"name":"zapAndDepositAndSwap","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620023f4380380620023f4833981810160405260608110156200003757600080fd5b5080516020808301516040909301516001600160601b0319606084901b16608052600080546001600160a01b038087166001600160a01b0319928316179092556001805483851692169190911790559293929091620000a891851690839060001990620014e5620001f3821b17901c565b60005b60208160ff161015620001a557826001600160a01b03166382b86600826040518263ffffffff1660e01b8152600401808260ff16815260200191505060206040518083038186803b1580156200010057600080fd5b505afa9250505080156200012757506040513d60208110156200012257600080fd5b505160015b6200013257620001a5565b600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0383169081179091556200019b9085600019620001f3602090811b620014e517901c565b50600101620000ab565b60018160ff1611620001e95760405162461bcd60e51b8152600401808060200182810382526024815260200180620023a66024913960400191505060405180910390fd5b5050505062000650565b60006200029a82856001600160a01b031663dd62ed3e30876040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b1580156200025957600080fd5b505afa1580156200026e573d6000803e3d6000fd5b505050506040513d60208110156200028557600080fd5b505190620002fc602090811b6200163817901c565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152919250620002f6918691906200035e16565b50505050565b60008282018381101562000357576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6060620003ba826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200041f60201b620016ac179092919060201c565b8051909150156200041a57808060200190516020811015620003db57600080fd5b50516200041a5760405162461bcd60e51b815260040180806020018281038252602a815260200180620023ca602a913960400191505060405180910390fd5b505050565b606062000430848460008562000438565b949350505050565b6060824710156200047b5760405162461bcd60e51b8152600401808060200182810382526026815260200180620023806026913960400191505060405180910390fd5b6200048685620005a0565b620004d8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310620005195780518252601f199092019160209182019101620004f8565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146200057d576040519150601f19603f3d011682016040523d82523d6000602084013e62000582565b606091505b50909250905062000595828286620005a6565b979650505050505050565b3b151590565b60608315620005b757508162000357565b825115620005c85782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000614578181015183820152602001620005fa565b50505050905090810190601f168015620006425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b60805160601c611cfe62000682600039806104ea5280610f225280610fee528061110652806111d25250611cfe6000f3fe6080604052600436106100b15760003560e01c8063a2a2af0b11610069578063ce0b63ce1161004e578063ce0b63ce146103c4578063e6ab280614610403578063f3f094a114610494576100b1565b8063a2a2af0b146102f2578063a9fd8c5714610366576100b1565b8063394023d91161009a578063394023d91461011e5780638054ae3b146101cf57806390d250741461029e576100b1565b8063040141e5146100b6578063328123a2146100f4575b600080fd5b3480156100c257600080fd5b506100cb6104e8565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561010057600080fd5b506100cb6004803603602081101561011757600080fd5b503561050c565b34801561012a57600080fd5b506101cd600480360360c081101561014157600080fd5b73ffffffffffffffffffffffffffffffffffffffff823581169260208101359260408201359092169181019060808101606082013564010000000081111561018857600080fd5b82018360208201111561019a57600080fd5b803590602001918460208302840111640100000000831117156101bc57600080fd5b919350915080359060200135610540565b005b3480156101db57600080fd5b506101cd60048036036101408110156101f357600080fd5b73ffffffffffffffffffffffffffffffffffffffff823581169260208101359260408201359092169181019060808101606082013564010000000081111561023a57600080fd5b82018360208201111561024c57600080fd5b8035906020019184602083028401116401000000008311171561026e57600080fd5b919350915080359060208101359060ff604082013581169160608101359091169060808101359060a00135610843565b3480156102aa57600080fd5b506101cd600480360360808110156102c157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135169060600135610b2c565b3480156102fe57600080fd5b506101cd600480360361010081101561031657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135169060608101359060ff608082013581169160a08101359091169060c08101359060e00135610ce8565b6101cd600480360360e081101561037c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060208101359060408101359060ff606082013581169160808101359091169060a08101359060c00135610ea6565b6101cd600480360360608110156103da57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020810135906040013561108a565b34801561040f57600080fd5b506104826004803603604081101561042657600080fd5b81019060208101813564010000000081111561044157600080fd5b82018360208201111561045357600080fd5b8035906020019184602083028401116401000000008311171561047557600080fd5b919350915035151561124a565b60408051918252519081900360200190f35b3480156104a057600080fd5b506101cd600480360360808110156104b757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135169060600135611347565b7f000000000000000000000000000000000000000000000000000000000000000081565b6002818154811061051957fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60005b6002548110156105be5784848281811061055957fe5b905060200201356000146105b6576105b6333087878581811061057857fe5b905060200201356002858154811061058c57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169291906116c3565b600101610543565b50600080546040517f4d49e87d00000000000000000000000000000000000000000000000000000000815260248101859052604481018490526060600482019081526064820187905273ffffffffffffffffffffffffffffffffffffffff90921691634d49e87d9188918891889188918190608401866020870280828437600081840152601f19601f82011690508083019250505095505050505050602060405180830381600087803b15801561067457600080fd5b505af1158015610688573d6000803e3d6000fd5b505050506040513d602081101561069e57600080fd5b5051600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9283166024820152905192935083929189169163dd62ed3e91604480820192602092909190829003018186803b15801561071e57600080fd5b505afa158015610732573d6000803e3d6000fd5b505050506040513d602081101561074857600080fd5b50511015610797576001546107979073ffffffffffffffffffffffffffffffffffffffff88811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517f90d2507400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b81166004830152602482018b9052898116604483015260648201859052915191909216916390d2507491608480830192600092919082900301818387803b15801561082157600080fd5b505af1158015610835573d6000803e3d6000fd5b505050505050505050505050565b60005b6002548110156108835788888281811061085c57fe5b9050602002013560001461087b5761087b33308b8b8581811061057857fe5b600101610846565b50600080546040517f4d49e87d0000000000000000000000000000000000000000000000000000000081526024810189905260448101889052606060048201908152606482018b905273ffffffffffffffffffffffffffffffffffffffff90921691634d49e87d918c918c918c918c918190608401866020870280828437600081840152601f19601f82011690508083019250505095505050505050602060405180830381600087803b15801561093957600080fd5b505af115801561094d573d6000803e3d6000fd5b505050506040513d602081101561096357600080fd5b5051600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff928316602482015290519293508392918d169163dd62ed3e91604480820192602092909190829003018186803b1580156109e357600080fd5b505afa1580156109f7573d6000803e3d6000fd5b505050506040513d6020811015610a0d57600080fd5b50511015610a5c57600154610a5c9073ffffffffffffffffffffffffffffffffffffffff8c811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517fa2a2af0b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8f81166004830152602482018f90528d811660448301526064820185905260ff808a166084840152881660a483015260c4820187905260e482018690529151919092169163a2a2af0b9161010480830192600092919082900301818387803b158015610b0657600080fd5b505af1158015610b1a573d6000803e3d6000fd5b50505050505050505050505050505050565b610b4e73ffffffffffffffffffffffffffffffffffffffff83163330846116c3565b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff92831660248201529051839285169163dd62ed3e916044808301926020929190829003018186803b158015610bc757600080fd5b505afa158015610bdb573d6000803e3d6000fd5b505050506040513d6020811015610bf157600080fd5b50511015610c4057600154610c409073ffffffffffffffffffffffffffffffffffffffff84811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517f90d2507400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015260248201879052858116604483015260648201859052915191909216916390d2507491608480830192600092919082900301818387803b158015610cca57600080fd5b505af1158015610cde573d6000803e3d6000fd5b5050505050505050565b610d0a73ffffffffffffffffffffffffffffffffffffffff87163330886116c3565b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff92831660248201529051879289169163dd62ed3e916044808301926020929190829003018186803b158015610d8357600080fd5b505afa158015610d97573d6000803e3d6000fd5b505050506040513d6020811015610dad57600080fd5b50511015610dfc57600154610dfc9073ffffffffffffffffffffffffffffffffffffffff88811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517fa2a2af0b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b81166004830152602482018b905289811660448301526064820189905260ff8089166084840152871660a483015260c4820186905260e482018590529151919092169163a2a2af0b9161010480830192600092919082900301818387803b15801561082157600080fd5b600034118015610eb557508434145b610f2057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f494e434f5252454354204d53472056414c554500000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610f8857600080fd5b505af1158015610f9c573d6000803e3d6000fd5b5050600154604080517fa2a2af0b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8d81166004830152602482018d90527f000000000000000000000000000000000000000000000000000000000000000081166044830152606482018c905260ff808c1660848401528a1660a483015260c4820189905260e48201889052915191909216945063a2a2af0b9350610104808301935060009282900301818387803b15801561106957600080fd5b505af115801561107d573d6000803e3d6000fd5b5050505050505050505050565b60003411801561109957508034145b61110457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f494e434f5252454354204d53472056414c554500000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561116c57600080fd5b505af1158015611180573d6000803e3d6000fd5b5050600154604080517f90d2507400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8981166004830152602482018990527f0000000000000000000000000000000000000000000000000000000000000000811660448301526064820188905291519190921694506390d2507493506084808301935060009282900301818387803b15801561122d57600080fd5b505af1158015611241573d6000803e3d6000fd5b50505050505050565b60008054604080517fe6ab28060000000000000000000000000000000000000000000000000000000081528415156024820152600481019182526044810186905273ffffffffffffffffffffffffffffffffffffffff9092169163e6ab2806918791879187918190606401856020860280828437600083820152604051601f9091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016909201965060209550909350505081840390508186803b15801561131157600080fd5b505afa158015611325573d6000803e3d6000fd5b505050506040513d602081101561133b57600080fd5b505190505b9392505050565b61136973ffffffffffffffffffffffffffffffffffffffff83163330846116c3565b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff92831660248201529051839285169163dd62ed3e916044808301926020929190829003018186803b1580156113e257600080fd5b505afa1580156113f6573d6000803e3d6000fd5b505050506040513d602081101561140c57600080fd5b5051101561145b5760015461145b9073ffffffffffffffffffffffffffffffffffffffff84811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517ff3f094a100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8781166004830152602482018790528581166044830152606482018590529151919092169163f3f094a191608480830192600092919082900301818387803b158015610cca57600080fd5b60006115a2828573ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30876040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561157057600080fd5b505afa158015611584573d6000803e3d6000fd5b505050506040513d602081101561159a57600080fd5b505190611638565b6040805173ffffffffffffffffffffffffffffffffffffffff8616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790529091506116329085906118eb565b50505050565b60008282018381101561134057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60606116bb84846000856119c3565b949350505050565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526116329085906118eb565b8015806118045750604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156117d657600080fd5b505afa1580156117ea573d6000803e3d6000fd5b505050506040513d602081101561180057600080fd5b5051155b611859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180611c936036913960400191505060405180910390fd5b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790526118e69084906118eb565b505050565b606061194d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166116ac9092919063ffffffff16565b8051909150156118e65780806020019051602081101561196c57600080fd5b50516118e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180611c69602a913960400191505060405180910390fd5b606082471015611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611c436026913960400191505060405180910390fd5b611a2785611b7e565b611a9257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611afc57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611abf565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b5e576040519150601f19603f3d011682016040523d82523d6000602084013e611b63565b606091505b5091509150611b73828286611b84565b979650505050505050565b3b151590565b60608315611b93575081611340565b825115611ba35782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c07578181015183820152602001611bef565b50505050905090810190601f168015611c345780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122003d1c5afe1e7557bc7eda9bf55e3d5a4279a73cb9e54bc8263d67d1f5300663a64736f6c634300060c0033416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c6261736553776170206d7573742068617665206174206c65617374203220746f6b656e735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000001116898dda4015ed8ddefb84b6e8bc24528af2d80000000000000000000000002796317b0ff8538f253012862c06787adfb8ceb6
Deployed Bytecode
0x6080604052600436106100b15760003560e01c8063a2a2af0b11610069578063ce0b63ce1161004e578063ce0b63ce146103c4578063e6ab280614610403578063f3f094a114610494576100b1565b8063a2a2af0b146102f2578063a9fd8c5714610366576100b1565b8063394023d91161009a578063394023d91461011e5780638054ae3b146101cf57806390d250741461029e576100b1565b8063040141e5146100b6578063328123a2146100f4575b600080fd5b3480156100c257600080fd5b506100cb6104e8565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561010057600080fd5b506100cb6004803603602081101561011757600080fd5b503561050c565b34801561012a57600080fd5b506101cd600480360360c081101561014157600080fd5b73ffffffffffffffffffffffffffffffffffffffff823581169260208101359260408201359092169181019060808101606082013564010000000081111561018857600080fd5b82018360208201111561019a57600080fd5b803590602001918460208302840111640100000000831117156101bc57600080fd5b919350915080359060200135610540565b005b3480156101db57600080fd5b506101cd60048036036101408110156101f357600080fd5b73ffffffffffffffffffffffffffffffffffffffff823581169260208101359260408201359092169181019060808101606082013564010000000081111561023a57600080fd5b82018360208201111561024c57600080fd5b8035906020019184602083028401116401000000008311171561026e57600080fd5b919350915080359060208101359060ff604082013581169160608101359091169060808101359060a00135610843565b3480156102aa57600080fd5b506101cd600480360360808110156102c157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135169060600135610b2c565b3480156102fe57600080fd5b506101cd600480360361010081101561031657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135169060608101359060ff608082013581169160a08101359091169060c08101359060e00135610ce8565b6101cd600480360360e081101561037c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060208101359060408101359060ff606082013581169160808101359091169060a08101359060c00135610ea6565b6101cd600480360360608110156103da57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020810135906040013561108a565b34801561040f57600080fd5b506104826004803603604081101561042657600080fd5b81019060208101813564010000000081111561044157600080fd5b82018360208201111561045357600080fd5b8035906020019184602083028401116401000000008311171561047557600080fd5b919350915035151561124a565b60408051918252519081900360200190f35b3480156104a057600080fd5b506101cd600480360360808110156104b757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135169060600135611347565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6002818154811061051957fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60005b6002548110156105be5784848281811061055957fe5b905060200201356000146105b6576105b6333087878581811061057857fe5b905060200201356002858154811061058c57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169291906116c3565b600101610543565b50600080546040517f4d49e87d00000000000000000000000000000000000000000000000000000000815260248101859052604481018490526060600482019081526064820187905273ffffffffffffffffffffffffffffffffffffffff90921691634d49e87d9188918891889188918190608401866020870280828437600081840152601f19601f82011690508083019250505095505050505050602060405180830381600087803b15801561067457600080fd5b505af1158015610688573d6000803e3d6000fd5b505050506040513d602081101561069e57600080fd5b5051600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9283166024820152905192935083929189169163dd62ed3e91604480820192602092909190829003018186803b15801561071e57600080fd5b505afa158015610732573d6000803e3d6000fd5b505050506040513d602081101561074857600080fd5b50511015610797576001546107979073ffffffffffffffffffffffffffffffffffffffff88811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517f90d2507400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b81166004830152602482018b9052898116604483015260648201859052915191909216916390d2507491608480830192600092919082900301818387803b15801561082157600080fd5b505af1158015610835573d6000803e3d6000fd5b505050505050505050505050565b60005b6002548110156108835788888281811061085c57fe5b9050602002013560001461087b5761087b33308b8b8581811061057857fe5b600101610846565b50600080546040517f4d49e87d0000000000000000000000000000000000000000000000000000000081526024810189905260448101889052606060048201908152606482018b905273ffffffffffffffffffffffffffffffffffffffff90921691634d49e87d918c918c918c918c918190608401866020870280828437600081840152601f19601f82011690508083019250505095505050505050602060405180830381600087803b15801561093957600080fd5b505af115801561094d573d6000803e3d6000fd5b505050506040513d602081101561096357600080fd5b5051600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff928316602482015290519293508392918d169163dd62ed3e91604480820192602092909190829003018186803b1580156109e357600080fd5b505afa1580156109f7573d6000803e3d6000fd5b505050506040513d6020811015610a0d57600080fd5b50511015610a5c57600154610a5c9073ffffffffffffffffffffffffffffffffffffffff8c811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517fa2a2af0b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8f81166004830152602482018f90528d811660448301526064820185905260ff808a166084840152881660a483015260c4820187905260e482018690529151919092169163a2a2af0b9161010480830192600092919082900301818387803b158015610b0657600080fd5b505af1158015610b1a573d6000803e3d6000fd5b50505050505050505050505050505050565b610b4e73ffffffffffffffffffffffffffffffffffffffff83163330846116c3565b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff92831660248201529051839285169163dd62ed3e916044808301926020929190829003018186803b158015610bc757600080fd5b505afa158015610bdb573d6000803e3d6000fd5b505050506040513d6020811015610bf157600080fd5b50511015610c4057600154610c409073ffffffffffffffffffffffffffffffffffffffff84811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517f90d2507400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015260248201879052858116604483015260648201859052915191909216916390d2507491608480830192600092919082900301818387803b158015610cca57600080fd5b505af1158015610cde573d6000803e3d6000fd5b5050505050505050565b610d0a73ffffffffffffffffffffffffffffffffffffffff87163330886116c3565b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff92831660248201529051879289169163dd62ed3e916044808301926020929190829003018186803b158015610d8357600080fd5b505afa158015610d97573d6000803e3d6000fd5b505050506040513d6020811015610dad57600080fd5b50511015610dfc57600154610dfc9073ffffffffffffffffffffffffffffffffffffffff88811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517fa2a2af0b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b81166004830152602482018b905289811660448301526064820189905260ff8089166084840152871660a483015260c4820186905260e482018590529151919092169163a2a2af0b9161010480830192600092919082900301818387803b15801561082157600080fd5b600034118015610eb557508434145b610f2057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f494e434f5252454354204d53472056414c554500000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610f8857600080fd5b505af1158015610f9c573d6000803e3d6000fd5b5050600154604080517fa2a2af0b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8d81166004830152602482018d90527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281166044830152606482018c905260ff808c1660848401528a1660a483015260c4820189905260e48201889052915191909216945063a2a2af0b9350610104808301935060009282900301818387803b15801561106957600080fd5b505af115801561107d573d6000803e3d6000fd5b5050505050505050505050565b60003411801561109957508034145b61110457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f494e434f5252454354204d53472056414c554500000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561116c57600080fd5b505af1158015611180573d6000803e3d6000fd5b5050600154604080517f90d2507400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8981166004830152602482018990527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2811660448301526064820188905291519190921694506390d2507493506084808301935060009282900301818387803b15801561122d57600080fd5b505af1158015611241573d6000803e3d6000fd5b50505050505050565b60008054604080517fe6ab28060000000000000000000000000000000000000000000000000000000081528415156024820152600481019182526044810186905273ffffffffffffffffffffffffffffffffffffffff9092169163e6ab2806918791879187918190606401856020860280828437600083820152604051601f9091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016909201965060209550909350505081840390508186803b15801561131157600080fd5b505afa158015611325573d6000803e3d6000fd5b505050506040513d602081101561133b57600080fd5b505190505b9392505050565b61136973ffffffffffffffffffffffffffffffffffffffff83163330846116c3565b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff92831660248201529051839285169163dd62ed3e916044808301926020929190829003018186803b1580156113e257600080fd5b505afa1580156113f6573d6000803e3d6000fd5b505050506040513d602081101561140c57600080fd5b5051101561145b5760015461145b9073ffffffffffffffffffffffffffffffffffffffff84811691167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611758565b600154604080517ff3f094a100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8781166004830152602482018790528581166044830152606482018590529151919092169163f3f094a191608480830192600092919082900301818387803b158015610cca57600080fd5b60006115a2828573ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30876040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561157057600080fd5b505afa158015611584573d6000803e3d6000fd5b505050506040513d602081101561159a57600080fd5b505190611638565b6040805173ffffffffffffffffffffffffffffffffffffffff8616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790529091506116329085906118eb565b50505050565b60008282018381101561134057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60606116bb84846000856119c3565b949350505050565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526116329085906118eb565b8015806118045750604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156117d657600080fd5b505afa1580156117ea573d6000803e3d6000fd5b505050506040513d602081101561180057600080fd5b5051155b611859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180611c936036913960400191505060405180910390fd5b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790526118e69084906118eb565b505050565b606061194d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166116ac9092919063ffffffff16565b8051909150156118e65780806020019051602081101561196c57600080fd5b50516118e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180611c69602a913960400191505060405180910390fd5b606082471015611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611c436026913960400191505060405180910390fd5b611a2785611b7e565b611a9257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611afc57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611abf565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b5e576040519150601f19603f3d011682016040523d82523d6000602084013e611b63565b606091505b5091509150611b73828286611b84565b979650505050505050565b3b151590565b60608315611b93575081611340565b825115611ba35782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c07578181015183820152602001611bef565b50505050905090810190601f168015611c345780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122003d1c5afe1e7557bc7eda9bf55e3d5a4279a73cb9e54bc8263d67d1f5300663a64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000001116898dda4015ed8ddefb84b6e8bc24528af2d80000000000000000000000002796317b0ff8538f253012862c06787adfb8ceb6
-----Decoded View---------------
Arg [0] : _wethAddress (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : _baseSwap (address): 0x1116898DdA4015eD8dDefb84b6e8Bc24528Af2d8
Arg [2] : _synapseBridge (address): 0x2796317b0fF8538F253012862c06787Adfb8cEb6
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 0000000000000000000000001116898dda4015ed8ddefb84b6e8bc24528af2d8
Arg [2] : 0000000000000000000000002796317b0ff8538f253012862c06787adfb8ceb6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
AVAX | 100.00% | $44.29 | 1.901 | $84.2 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.