Feature Tip: Add private address tag to any address under My Name Tag !
Latest 25 from a total of 3,264 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Add_liquidity | 21535422 | 417 days ago | IN | 0 ETH | 0.00044733 | ||||
| Add_liquidity | 15655391 | 1240 days ago | IN | 3.52 ETH | 0.00513121 | ||||
| Add_liquidity | 15527290 | 1258 days ago | IN | 4 ETH | 0.00966702 | ||||
| Add_liquidity | 15204682 | 1310 days ago | IN | 0.66 ETH | 0.00269642 | ||||
| Add_liquidity | 14962786 | 1349 days ago | IN | 0 ETH | 0.02191889 | ||||
| Add_liquidity | 14932959 | 1355 days ago | IN | 0 ETH | 0.01521904 | ||||
| Add_liquidity | 14685297 | 1395 days ago | IN | 0.45501899 ETH | 0.0068153 | ||||
| Add_liquidity | 14656963 | 1399 days ago | IN | 2.71740563 ETH | 0.02764897 | ||||
| Add_liquidity | 14403276 | 1439 days ago | IN | 0.35 ETH | 0.00486535 | ||||
| Add_liquidity | 14391956 | 1440 days ago | IN | 3 ETH | 0.02415107 | ||||
| Add_liquidity | 14376887 | 1443 days ago | IN | 0.197 ETH | 0.00611897 | ||||
| Add_liquidity | 14376850 | 1443 days ago | IN | 0.19740253 ETH | 0.00051838 | ||||
| Add_liquidity | 14283698 | 1457 days ago | IN | 1 ETH | 0.01230866 | ||||
| Add_liquidity | 14147865 | 1478 days ago | IN | 0.33 ETH | 0.0317086 | ||||
| Add_liquidity | 14143169 | 1479 days ago | IN | 1 ETH | 0.02781408 | ||||
| Add_liquidity | 14085363 | 1488 days ago | IN | 0.10407437 ETH | 0.07400605 | ||||
| Add_liquidity | 14065928 | 1491 days ago | IN | 0 ETH | 0.04338488 | ||||
| Add_liquidity | 14054202 | 1493 days ago | IN | 20 ETH | 0.06082182 | ||||
| Add_liquidity | 14008542 | 1500 days ago | IN | 0.19065059 ETH | 0.0046135 | ||||
| Add_liquidity | 14008503 | 1500 days ago | IN | 0.20038501 ETH | 0.00502298 | ||||
| Add_liquidity | 14008488 | 1500 days ago | IN | 0.20238501 ETH | 0.00271142 | ||||
| Add_liquidity | 13908746 | 1515 days ago | IN | 13.77759895 ETH | 0.04267672 | ||||
| Add_liquidity | 13906813 | 1516 days ago | IN | 0 ETH | 0.03220589 | ||||
| Add_liquidity | 13857895 | 1523 days ago | IN | 7.5 ETH | 0.03840753 | ||||
| Add_liquidity | 13737708 | 1542 days ago | IN | 0 ETH | 0.03602161 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
To
|
|||
|---|---|---|---|---|---|---|---|
| Deposit | 15655391 | 1240 days ago | 3.52 ETH | ||||
| Deposit | 15527290 | 1258 days ago | 4 ETH | ||||
| Deposit | 15204682 | 1310 days ago | 0.66 ETH | ||||
| - | 14685297 | 1395 days ago | 0.45501899 ETH | ||||
| - | 14656963 | 1399 days ago | 2.71740563 ETH | ||||
| - | 14403276 | 1439 days ago | 0.35 ETH | ||||
| - | 14391956 | 1440 days ago | 3 ETH | ||||
| - | 14376887 | 1443 days ago | 0.197 ETH | ||||
| - | 14283698 | 1457 days ago | 1 ETH | ||||
| - | 14147865 | 1478 days ago | 0.33 ETH | ||||
| - | 14143169 | 1479 days ago | 1 ETH | ||||
| - | 14085363 | 1488 days ago | 0.10407437 ETH | ||||
| - | 14054202 | 1493 days ago | 20 ETH | ||||
| - | 14008542 | 1500 days ago | 0.19065059 ETH | ||||
| - | 14008503 | 1500 days ago | 0.20038501 ETH | ||||
| - | 13908746 | 1515 days ago | 13.77759895 ETH | ||||
| - | 13857895 | 1523 days ago | 7.5 ETH | ||||
| - | 13728617 | 1543 days ago | 1.4 ETH | ||||
| - | 13673234 | 1552 days ago | 20 ETH | ||||
| - | 13646907 | 1556 days ago | 4 ETH | ||||
| - | 13602253 | 1563 days ago | 15 ETH | ||||
| - | 13601379 | 1564 days ago | 10 ETH | ||||
| - | 13601231 | 1564 days ago | 0.06 ETH | ||||
| - | 13576119 | 1568 days ago | 10 ETH | ||||
| - | 13574626 | 1568 days ago | 47 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Vyper_contract
Compiler Version
vyper:0.2.12
Contract Source Code (Vyper language format)
# @version 0.2.12
"""
@title Curve CryptoSwap Deposit Zap
@author Curve.Fi
@license Copyright (c) Curve.Fi, 2020 - all rights reserved
@dev Wraps / unwraps Ether, and redirects deposits / withdrawals
"""
from vyper.interfaces import ERC20
interface CurveCryptoSwap:
def add_liquidity(amounts: uint256[N_COINS], min_mint_amount: uint256): nonpayable
def remove_liquidity(_amount: uint256, min_amounts: uint256[N_COINS]): nonpayable
def remove_liquidity_one_coin(token_amount: uint256, i: uint256, min_amount: uint256): nonpayable
def token() -> address: view
def coins(i: uint256) -> address: view
interface wETH:
def deposit(): payable
def withdraw(_amount: uint256): nonpayable
N_COINS: constant(uint256) = 3
WETH_IDX: constant(uint256) = N_COINS - 1
WETH: constant(address) = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
pool: public(address)
token: public(address)
coins: public(address[N_COINS])
@payable
@external
def __default__():
assert msg.sender == WETH
@external
def __init__(_pool: address):
"""
@notice Contract constructor
@param _pool `CurveCryptoSwap` deployment to target
"""
self.pool = _pool
self.token = CurveCryptoSwap(_pool).token()
for i in range(N_COINS):
coin: address = CurveCryptoSwap(_pool).coins(i)
response: Bytes[32] = raw_call(
coin,
concat(
method_id("approve(address,uint256)"),
convert(_pool, bytes32),
convert(MAX_UINT256, bytes32)
),
max_outsize=32
)
if len(response) > 0:
assert convert(response, bool) # dev: bad response
self.coins[i] = coin
assert self.coins[WETH_IDX] == WETH
@payable
@external
def add_liquidity(
_amounts: uint256[N_COINS],
_min_mint_amount: uint256,
_receiver: address = msg.sender
) -> uint256:
"""
@notice Add liquidity and wrap Ether to wETH
@param _amounts Amount of each token to deposit. `msg.value` must be
equal to the given amount of Ether.
@param _min_mint_amount Minimum amount of LP token to receive
@param _receiver Receiver of the LP tokens
@return Amount of LP tokens received
"""
assert msg.value == _amounts[WETH_IDX]
wETH(WETH).deposit(value=msg.value)
for i in range(N_COINS-1):
if _amounts[i] > 0:
response: Bytes[32] = raw_call(
self.coins[i],
concat(
method_id("transferFrom(address,address,uint256)"),
convert(msg.sender, bytes32),
convert(self, bytes32),
convert(_amounts[i], bytes32)
),
max_outsize=32
)
if len(response) > 0:
assert convert(response, bool) # dev: bad response
CurveCryptoSwap(self.pool).add_liquidity(_amounts, _min_mint_amount)
token: address = self.token
amount: uint256 = ERC20(token).balanceOf(self)
response: Bytes[32] = raw_call(
token,
concat(
method_id("transfer(address,uint256)"),
convert(_receiver, bytes32),
convert(amount, bytes32)
),
max_outsize=32
)
if len(response) > 0:
assert convert(response, bool) # dev: bad response
return amount
@external
def remove_liquidity(
_amount: uint256,
_min_amounts: uint256[N_COINS],
_receiver: address = msg.sender
) -> uint256[N_COINS]:
"""
@notice Withdraw coins from the pool, unwrapping wETH to Ether
@dev Withdrawal amounts are based on current deposit ratios
@param _amount Quantity of LP tokens to burn in the withdrawal
@param _min_amounts Minimum amounts of coins to receive
@param _receiver Receiver of the withdrawn tokens
@return Amounts of coins that were withdrawn
"""
ERC20(self.token).transferFrom(msg.sender, self, _amount)
CurveCryptoSwap(self.pool).remove_liquidity(_amount, _min_amounts)
amounts: uint256[N_COINS] = empty(uint256[N_COINS])
for i in range(N_COINS-1):
coin: address = self.coins[i]
amounts[i] = ERC20(coin).balanceOf(self)
response: Bytes[32] = raw_call(
coin,
concat(
method_id("transfer(address,uint256)"),
convert(_receiver, bytes32),
convert(amounts[i], bytes32)
),
max_outsize=32
)
if len(response) > 0:
assert convert(response, bool) # dev: bad response
amounts[WETH_IDX] = ERC20(WETH).balanceOf(self)
wETH(WETH).withdraw(amounts[WETH_IDX])
raw_call(_receiver, b"", value=self.balance)
return amounts
@external
def remove_liquidity_one_coin(
_token_amount: uint256,
i: uint256,
_min_amount: uint256,
_receiver: address = msg.sender
) -> uint256:
"""
@notice Withdraw a single coin from the pool, unwrapping wETH to Ether
@param _token_amount Amount of LP tokens to burn in the withdrawal
@param i Index value of the coin to withdraw
@param _min_amount Minimum amount of coin to receive
@param _receiver Receiver of the withdrawn token
@return Amount of underlying coin received
"""
ERC20(self.token).transferFrom(msg.sender, self, _token_amount)
CurveCryptoSwap(self.pool).remove_liquidity_one_coin(_token_amount, i, _min_amount)
coin: address = self.coins[i]
amount: uint256 = ERC20(coin).balanceOf(self)
if i == WETH_IDX:
wETH(WETH).withdraw(amount)
raw_call(_receiver, b"", value=self.balance)
else:
response: Bytes[32] = raw_call(
coin,
concat(
method_id("transfer(address,uint256)"),
convert(_receiver, bytes32),
convert(amount, bytes32)
),
max_outsize=32
)
if len(response) > 0:
assert convert(response, bool) # dev: bad response
return amountContract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"stateMutability":"payable","type":"fallback"},{"stateMutability":"nonpayable","type":"constructor","inputs":[{"name":"_pool","type":"address"}],"outputs":[]},{"stateMutability":"payable","type":"function","name":"add_liquidity","inputs":[{"name":"_amounts","type":"uint256[3]"},{"name":"_min_mint_amount","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"payable","type":"function","name":"add_liquidity","inputs":[{"name":"_amounts","type":"uint256[3]"},{"name":"_min_mint_amount","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity","inputs":[{"name":"_amount","type":"uint256"},{"name":"_min_amounts","type":"uint256[3]"}],"outputs":[{"name":"","type":"uint256[3]"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity","inputs":[{"name":"_amount","type":"uint256"},{"name":"_min_amounts","type":"uint256[3]"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256[3]"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_one_coin","inputs":[{"name":"_token_amount","type":"uint256"},{"name":"i","type":"uint256"},{"name":"_min_amount","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_one_coin","inputs":[{"name":"_token_amount","type":"uint256"},{"name":"i","type":"uint256"},{"name":"_min_amount","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"pool","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2568},{"stateMutability":"view","type":"function","name":"token","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2598},{"stateMutability":"view","type":"function","name":"coins","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}],"gas":2737}]Contract Creation Code
6020610e86610140396020610e8660c03960c05160a01c1561002057600080fd5b6101405160005560206101c0600463fc0c546a6101605261017c610140515afa61004957600080fd5b601f3d1161005657600080fd5b6000506101c05160015561016060006003818352015b6020610220602463c66106576101a052610160516101c0526101bc610140515afa61009657600080fd5b601f3d116100a357600080fd5b600050610220516101805260006004610200527f095ea7b3000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af1505080518201915050610140516020826102600101526020810190507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602082610260010152602081019050806102605261026090508051602001806103008284600060045af161016457600080fd5b505060206103c0610300516103206000610180515af161018357600080fd5b60203d808211156101945780610196565b815b905090506103a0526103a08051602001806101a08284600060045af16101bb57600080fd5b505060006101a051111561020d576101a08060200151600082518060209013156101e457600080fd5b80919012156101f257600080fd5b806020036101000a8204905090509050151561020d57600080fd5b61018051610160516003811061022257600080fd5b600260c052602060c02001555b815160010180835281141561006c575b505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26002600260c052602060c02001541461026e57600080fd5b610e6e56600436101561000d57610bd9565b600035601c52600051634515cef381141561002c57336101405261005d565b6375b96abc8114156100585760843560a01c1561004857600080fd5b602060846101403760005061005d565b61045d565b604435341461006b57600080fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b61008a57600080fd5b60006000600463d0e30db06101605261017c3473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af16100bd57600080fd5b61016060006002818352015b6000600461016051600381106100de57600080fd5b6020020135111561026557600060046101e0527f23b872dd00000000000000000000000000000000000000000000000000000000610200526101e060048060208461024001018260208501600060045af150508051820191505033602082610240010152602081019050306020826102400101526020810190506004610160516003811061016b57600080fd5b6020020135602082610240010152602081019050806102405261024090508051602001806103008284600060045af16101a357600080fd5b505060206103e061030051610320600061016051600381106101c457600080fd5b600260c052602060c02001545af16101db57600080fd5b60203d808211156101ec57806101ee565b815b905090506103c0526103c08051602001806101808284600060045af161021357600080fd5b505060006101805111156102655761018080602001516000825180602090131561023c57600080fd5b809190121561024a57600080fd5b806020036101000a8204905090509050151561026557600080fd5b81516001018083528114156100c9575b50506000543b61028457600080fd5b600060006084634515cef361016052600480356101805280602001356101a05280604001356101c052506064356101e05261017c60006000545af16102c857600080fd5b60015461016052602061022060246370a082316101a052306101c0526101bc610160515afa6102f657600080fd5b601f3d1161030357600080fd5b600050610220516101805260006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150506101405160208261026001015260208101905061018051602082610260010152602081019050806102605261026090508051602001806103008284600060045af16103a757600080fd5b505060206103c0610300516103206000610160515af16103c657600080fd5b60203d808211156103d757806103d9565b815b905090506103a0526103a08051602001806101a08284600060045af16103fe57600080fd5b505060006101a0511115610450576101a080602001516000825180602090131561042757600080fd5b809190121561043557600080fd5b806020036101000a8204905090509050151561045057600080fd5b6101805160005260206000f35b63ecb586a58114156104735733610140526104a4565b632da5dc2181141561049f5760843560a01c1561048f57600080fd5b60206084610140376000506104a4565b61082b565b34156104af57600080fd5b602061022060646323b872dd610160523361018052306101a0526004356101c05261017c60006001545af16104e357600080fd5b601f3d116104f057600080fd5b600050610220506000543b61050457600080fd5b60006000608463ecb586a56101605260043561018052602480356101a05280602001356101c05280604001356101e0525061017c60006000545af161054857600080fd5b606036610160376101c060006002818352015b6101c0516003811061056c57600080fd5b600260c052602060c02001546101e052602061028060246370a0823161020052306102205261021c6101e0515afa6105a357600080fd5b601f3d116105b057600080fd5b600050610280516101606101c051600381106105cb57600080fd5b602002015260006004610260527fa9059cbb00000000000000000000000000000000000000000000000000000000610280526102606004806020846102c001018260208501600060045af1505080518201915050610140516020826102c00101526020810190506101606101c0516003811061064657600080fd5b60200201516020826102c0010152602081019050806102c0526102c090508051602001806103608284600060045af161067e57600080fd5b505060206104206103605161038060006101e0515af161069d57600080fd5b60203d808211156106ae57806106b0565b815b90509050610400526104008051602001806102008284600060045af16106d557600080fd5b50506000610200511115610727576102008060200151600082518060209013156106fe57600080fd5b809190121561070c57600080fd5b806020036101000a8204905090509050151561072757600080fd5b815160010180835281141561055b575b5050602061024060246370a082316101c052306101e0526101dc73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25afa61077157600080fd5b601f3d1161077e57600080fd5b600050610240516101a05273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b6107a857600080fd5b600060006024632e1a7d4d6101c0526101a0516101e0526101dc600073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af16107e457600080fd5b60006101c0526101c08051602001806102008284600060045af161080757600080fd5b5050600060006102005161022047610140515af161082457600080fd5b6060610160f35b63f1dc3cc9811415610841573361014052610872565b630fbcee6e81141561086d5760643560a01c1561085d57600080fd5b6020606461014037600050610872565b610b55565b341561087d57600080fd5b602061022060646323b872dd610160523361018052306101a0526004356101c05261017c60006001545af16108b157600080fd5b601f3d116108be57600080fd5b600050610220506000543b6108d257600080fd5b60006000606463f1dc3cc961016052606060046101803761017c60006000545af16108fc57600080fd5b6024356003811061090c57600080fd5b600260c052602060c020015461016052602061022060246370a082316101a052306101c0526101bc610160515afa61094357600080fd5b601f3d1161095057600080fd5b600050610220516101805260026024351415610a065773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b61098557600080fd5b600060006024632e1a7d4d6101a052610180516101c0526101bc600073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af16109c157600080fd5b60006101a0526101a08051602001806101e08284600060045af16109e457600080fd5b5050600060006101e05161020047610140515af1610a0157600080fd5b610b48565b60006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150506101405160208261026001015260208101905061018051602082610260010152602081019050806102605261026090508051602001806103008284600060045af1610a9f57600080fd5b505060206103c0610300516103206000610160515af1610abe57600080fd5b60203d80821115610acf5780610ad1565b815b905090506103a0526103a08051602001806101a08284600060045af1610af657600080fd5b505060006101a0511115610b48576101a0806020015160008251806020901315610b1f57600080fd5b8091901215610b2d57600080fd5b806020036101000a82049050905090501515610b4857600080fd5b6101805160005260206000f35b6316f0115b811415610b78573415610b6c57600080fd5b60005460005260206000f35b63fc0c546a811415610b9b573415610b8f57600080fd5b60015460005260206000f35b63c6610657811415610bd7573415610bb257600080fd5b60043560038110610bc257600080fd5b600260c052602060c020015460005260206000f35b505b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23314610bf957600080fd5b005b610273610e6e03610273600039610273610e6e036000f300000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe5
Deployed Bytecode
0x600436101561000d57610bd9565b600035601c52600051634515cef381141561002c57336101405261005d565b6375b96abc8114156100585760843560a01c1561004857600080fd5b602060846101403760005061005d565b61045d565b604435341461006b57600080fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b61008a57600080fd5b60006000600463d0e30db06101605261017c3473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af16100bd57600080fd5b61016060006002818352015b6000600461016051600381106100de57600080fd5b6020020135111561026557600060046101e0527f23b872dd00000000000000000000000000000000000000000000000000000000610200526101e060048060208461024001018260208501600060045af150508051820191505033602082610240010152602081019050306020826102400101526020810190506004610160516003811061016b57600080fd5b6020020135602082610240010152602081019050806102405261024090508051602001806103008284600060045af16101a357600080fd5b505060206103e061030051610320600061016051600381106101c457600080fd5b600260c052602060c02001545af16101db57600080fd5b60203d808211156101ec57806101ee565b815b905090506103c0526103c08051602001806101808284600060045af161021357600080fd5b505060006101805111156102655761018080602001516000825180602090131561023c57600080fd5b809190121561024a57600080fd5b806020036101000a8204905090509050151561026557600080fd5b81516001018083528114156100c9575b50506000543b61028457600080fd5b600060006084634515cef361016052600480356101805280602001356101a05280604001356101c052506064356101e05261017c60006000545af16102c857600080fd5b60015461016052602061022060246370a082316101a052306101c0526101bc610160515afa6102f657600080fd5b601f3d1161030357600080fd5b600050610220516101805260006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150506101405160208261026001015260208101905061018051602082610260010152602081019050806102605261026090508051602001806103008284600060045af16103a757600080fd5b505060206103c0610300516103206000610160515af16103c657600080fd5b60203d808211156103d757806103d9565b815b905090506103a0526103a08051602001806101a08284600060045af16103fe57600080fd5b505060006101a0511115610450576101a080602001516000825180602090131561042757600080fd5b809190121561043557600080fd5b806020036101000a8204905090509050151561045057600080fd5b6101805160005260206000f35b63ecb586a58114156104735733610140526104a4565b632da5dc2181141561049f5760843560a01c1561048f57600080fd5b60206084610140376000506104a4565b61082b565b34156104af57600080fd5b602061022060646323b872dd610160523361018052306101a0526004356101c05261017c60006001545af16104e357600080fd5b601f3d116104f057600080fd5b600050610220506000543b61050457600080fd5b60006000608463ecb586a56101605260043561018052602480356101a05280602001356101c05280604001356101e0525061017c60006000545af161054857600080fd5b606036610160376101c060006002818352015b6101c0516003811061056c57600080fd5b600260c052602060c02001546101e052602061028060246370a0823161020052306102205261021c6101e0515afa6105a357600080fd5b601f3d116105b057600080fd5b600050610280516101606101c051600381106105cb57600080fd5b602002015260006004610260527fa9059cbb00000000000000000000000000000000000000000000000000000000610280526102606004806020846102c001018260208501600060045af1505080518201915050610140516020826102c00101526020810190506101606101c0516003811061064657600080fd5b60200201516020826102c0010152602081019050806102c0526102c090508051602001806103608284600060045af161067e57600080fd5b505060206104206103605161038060006101e0515af161069d57600080fd5b60203d808211156106ae57806106b0565b815b90509050610400526104008051602001806102008284600060045af16106d557600080fd5b50506000610200511115610727576102008060200151600082518060209013156106fe57600080fd5b809190121561070c57600080fd5b806020036101000a8204905090509050151561072757600080fd5b815160010180835281141561055b575b5050602061024060246370a082316101c052306101e0526101dc73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25afa61077157600080fd5b601f3d1161077e57600080fd5b600050610240516101a05273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b6107a857600080fd5b600060006024632e1a7d4d6101c0526101a0516101e0526101dc600073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af16107e457600080fd5b60006101c0526101c08051602001806102008284600060045af161080757600080fd5b5050600060006102005161022047610140515af161082457600080fd5b6060610160f35b63f1dc3cc9811415610841573361014052610872565b630fbcee6e81141561086d5760643560a01c1561085d57600080fd5b6020606461014037600050610872565b610b55565b341561087d57600080fd5b602061022060646323b872dd610160523361018052306101a0526004356101c05261017c60006001545af16108b157600080fd5b601f3d116108be57600080fd5b600050610220506000543b6108d257600080fd5b60006000606463f1dc3cc961016052606060046101803761017c60006000545af16108fc57600080fd5b6024356003811061090c57600080fd5b600260c052602060c020015461016052602061022060246370a082316101a052306101c0526101bc610160515afa61094357600080fd5b601f3d1161095057600080fd5b600050610220516101805260026024351415610a065773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b61098557600080fd5b600060006024632e1a7d4d6101a052610180516101c0526101bc600073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af16109c157600080fd5b60006101a0526101a08051602001806101e08284600060045af16109e457600080fd5b5050600060006101e05161020047610140515af1610a0157600080fd5b610b48565b60006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150506101405160208261026001015260208101905061018051602082610260010152602081019050806102605261026090508051602001806103008284600060045af1610a9f57600080fd5b505060206103c0610300516103206000610160515af1610abe57600080fd5b60203d80821115610acf5780610ad1565b815b905090506103a0526103a08051602001806101a08284600060045af1610af657600080fd5b505060006101a0511115610b48576101a0806020015160008251806020901315610b1f57600080fd5b8091901215610b2d57600080fd5b806020036101000a82049050905090501515610b4857600080fd5b6101805160005260206000f35b6316f0115b811415610b78573415610b6c57600080fd5b60005460005260206000f35b63fc0c546a811415610b9b573415610b8f57600080fd5b60015460005260206000f35b63c6610657811415610bd7573415610bb257600080fd5b60043560038110610bc257600080fd5b600260c052602060c020015460005260206000f35b505b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23314610bf957600080fd5b00
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe5
-----Decoded View---------------
Arg [0] : _pool (address): 0x80466c64868E1ab14a1Ddf27A676C3fcBE638Fe5
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe5
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.