Feature Tip: Add private address tag to any address under My Name Tag !
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 13620333 | 1585 days ago | 11.47334056 ETH | ||||
| - | 13620333 | 1585 days ago | 11.47334056 ETH | ||||
| - | 13613982 | 1586 days ago | 11.25465677 ETH | ||||
| - | 13613982 | 1586 days ago | 11.25465677 ETH | ||||
| - | 13607676 | 1587 days ago | 11.32614148 ETH | ||||
| - | 13607676 | 1587 days ago | 11.32614148 ETH | ||||
| - | 13601353 | 1588 days ago | 11.40913477 ETH | ||||
| - | 13601353 | 1588 days ago | 11.40913477 ETH | ||||
| - | 13595318 | 1589 days ago | 11.40975886 ETH | ||||
| - | 13595318 | 1589 days ago | 11.40975886 ETH | ||||
| - | 13588734 | 1590 days ago | 11.2337316 ETH | ||||
| - | 13588734 | 1590 days ago | 11.2337316 ETH | ||||
| - | 13582177 | 1591 days ago | 11.23147631 ETH | ||||
| - | 13582177 | 1591 days ago | 11.23147631 ETH | ||||
| - | 13575768 | 1592 days ago | 11.28744793 ETH | ||||
| - | 13575768 | 1592 days ago | 11.28744793 ETH | ||||
| - | 13569358 | 1593 days ago | 11.26262141 ETH | ||||
| - | 13569358 | 1593 days ago | 11.26262141 ETH | ||||
| - | 13563107 | 1594 days ago | 11.16320414 ETH | ||||
| - | 13563107 | 1594 days ago | 11.16320414 ETH | ||||
| - | 13556614 | 1595 days ago | 11.24250734 ETH | ||||
| - | 13556614 | 1595 days ago | 11.24250734 ETH | ||||
| - | 13550211 | 1596 days ago | 11.08370554 ETH | ||||
| - | 13550211 | 1596 days ago | 11.08370554 ETH | ||||
| - | 13543921 | 1597 days ago | 11.2268019 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
# @author skozin <info@lido.fi>
# @licence MIT
from vyper.interfaces import ERC20
interface ERC20Decimals:
def decimals() -> uint256: view
interface LidoStethOracle:
def stethPrice() -> uint256: view
interface ChainlinkAggregatorV3Interface:
def decimals() -> uint256: view
# (roundId: uint80, answer: int256, startedAt: uint256, updatedAt: uint256, answeredInRound: uint80)
def latestRoundData() -> (uint256, int256, uint256, uint256, uint256): view
interface CurveStableSwap:
def get_dy(i: int128, j: int128, dx: uint256) -> uint256: view
def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: payable
event SoldStethToUST:
steth_amount: uint256
eth_amount: uint256
ust_amount: uint256
steth_anchor_price: uint256
ust_anchor_price: uint256
event AdminChanged:
new_admin: address
event PriceDifferenceChanged:
max_steth_price_difference_percent: uint256
max_eth_price_difference_percent: uint256
UST_TOKEN: constant(address) = 0xa47c8bf37f92aBed4A126BDA807A7b7498661acD
STETH_TOKEN: constant(address) = 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84
WETH_TOKEN: constant(address) = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
LIDO_STETH_ETH_ORACLE: constant(address) = 0x3A6Bd15abf19581e411621D669B6a2bbe741ffD6
CHAINLINK_ETH_USD_FEED: constant(address) = 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
CURVE_STETH_POOL: constant(address) = 0xDC24316b9AE028F1497c275EB9192a3Ea0f67022
SUSHISWAP_ROUTER_V2: constant(address) = 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F
CURVE_ETH_INDEX: constant(uint256) = 0
CURVE_STETH_INDEX: constant(uint256) = 1
SUSHISWAP_EXCH_PATH: constant(address[2]) = [WETH_TOKEN, UST_TOKEN]
# An address that is allowed to configure the liquidator settings.
admin: public(address)
# An address that is allowed to sell.
vault: public(address)
# Maximum difference (in percents multiplied by 10**18) between the resulting
# ETH/UST price and the ETH/USD anchor price obtained from the oracle.
max_eth_price_difference_percent: public(uint256)
# Maximum difference (in percents multiplied by 10**18) between the resulting
# stETH/ETH price and the stETH/ETH anchor price obtained from the oracle.
max_steth_price_difference_percent: public(uint256)
@external
def __init__(
vault: address,
admin: address,
max_steth_price_difference_percent: uint256,
max_eth_price_difference_percent: uint256
):
assert ERC20Decimals(UST_TOKEN).decimals() == 18
assert ERC20Decimals(STETH_TOKEN).decimals() == 18
assert max_steth_price_difference_percent <= 10**18, "invalid percentage"
assert max_eth_price_difference_percent <= 10**18, "invalid percentage"
self.vault = vault
self.admin = admin
self.max_steth_price_difference_percent = max_steth_price_difference_percent
self.max_eth_price_difference_percent = max_eth_price_difference_percent
log AdminChanged(self.admin)
log PriceDifferenceChanged(
self.max_steth_price_difference_percent,
self.max_eth_price_difference_percent
)
@external
@payable
def __default__():
pass
@external
def change_admin(new_admin: address):
assert msg.sender == self.admin
self.admin = new_admin
log AdminChanged(self.admin)
@external
def configure(
max_steth_price_difference_percent: uint256,
max_eth_price_difference_percent: uint256
):
assert msg.sender == self.admin
assert max_steth_price_difference_percent <= 10**18, "invalid percentage"
assert max_eth_price_difference_percent <= 10**18, "invalid percentage"
self.max_steth_price_difference_percent = max_steth_price_difference_percent
self.max_eth_price_difference_percent = max_eth_price_difference_percent
log PriceDifferenceChanged(
self.max_steth_price_difference_percent,
self.max_eth_price_difference_percent
)
@internal
@view
def _get_steth_anchor_price() -> uint256:
return LidoStethOracle(LIDO_STETH_ETH_ORACLE).stethPrice()
@internal
@view
def _get_eth_anchor_price() -> uint256:
eth_price_decimals: uint256 = ChainlinkAggregatorV3Interface(CHAINLINK_ETH_USD_FEED).decimals()
assert 0 < eth_price_decimals and eth_price_decimals <= 18
round_id: uint256 = 0
answer: int256 = 0
started_at: uint256 = 0
updated_at: uint256 = 0
answered_in_round: uint256 = 0
(round_id, answer, started_at, updated_at, answered_in_round) = \
ChainlinkAggregatorV3Interface(CHAINLINK_ETH_USD_FEED).latestRoundData()
assert updated_at != 0
return convert(answer, uint256) * (10 ** (18 - eth_price_decimals))
@internal
def _sushi_sell_eth_to_ust(
eth_amount_in: uint256,
ust_amount_out_min: uint256,
ust_recipient: address
) -> uint256:
result: Bytes[128] = raw_call(
SUSHISWAP_ROUTER_V2,
concat(
# uint256 amountOutMin, address[] calldata path, address to, uint256 deadline
method_id("swapExactETHForTokens(uint256,address[],address,uint256)"),
convert(ust_amount_out_min, bytes32),
convert(128, bytes32),
convert(ust_recipient, bytes32),
convert(MAX_UINT256, bytes32),
convert(2, bytes32),
convert(WETH_TOKEN, bytes32),
convert(UST_TOKEN, bytes32)
),
value=eth_amount_in,
max_outsize=128
)
# The return type is uint256[] and the actual length of the array is 2, so the
# layout of the data is (pad32(64) . pad32(2) . pad32(arr[0]) . pad32(arr[1])).
# We need the second array item, thus the byte offset is 96.
return convert(extract32(result, 96), uint256)
@internal
@pure
def _get_min_amount_out(amount_in: uint256, price: uint256, max_diff_percent: uint256) -> uint256:
amount_out: uint256 = (amount_in * price) / 10**18
min_mult: uint256 = 10**18 - max_diff_percent
return (amount_out * min_mult) / 10**18
@external
def liquidate(ust_recipient: address) -> uint256:
assert msg.sender == self.vault, "unauthorized"
steth_amount: uint256 = ERC20(STETH_TOKEN).balanceOf(self)
assert steth_amount > 0, "zero stETH balance"
steth_anchor_price: uint256 = self._get_steth_anchor_price()
min_eth_amount: uint256 = self._get_min_amount_out(
steth_amount,
steth_anchor_price,
self.max_steth_price_difference_percent
)
ERC20(STETH_TOKEN).approve(CURVE_STETH_POOL, steth_amount)
eth_amount: uint256 = CurveStableSwap(CURVE_STETH_POOL).exchange(
CURVE_STETH_INDEX,
CURVE_ETH_INDEX,
steth_amount,
min_eth_amount
)
assert eth_amount >= min_eth_amount, "insuff. ETH return"
assert self.balance >= eth_amount
eth_anchor_price: uint256 = self._get_eth_anchor_price()
min_ust_amount: uint256 = self._get_min_amount_out(
eth_amount,
eth_anchor_price,
self.max_eth_price_difference_percent
)
ust_amount_actual: uint256 = self._sushi_sell_eth_to_ust(
eth_amount,
min_ust_amount,
ust_recipient
)
assert ust_amount_actual >= min_ust_amount, "insuff. UST return"
log SoldStethToUST(
steth_amount,
eth_amount,
ust_amount_actual,
steth_anchor_price,
eth_anchor_price
)
return ust_amount_actualContract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"name":"SoldStethToUST","inputs":[{"name":"steth_amount","type":"uint256","indexed":false},{"name":"eth_amount","type":"uint256","indexed":false},{"name":"ust_amount","type":"uint256","indexed":false},{"name":"steth_anchor_price","type":"uint256","indexed":false},{"name":"ust_anchor_price","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"AdminChanged","inputs":[{"name":"new_admin","type":"address","indexed":false}],"anonymous":false,"type":"event"},{"name":"PriceDifferenceChanged","inputs":[{"name":"max_steth_price_difference_percent","type":"uint256","indexed":false},{"name":"max_eth_price_difference_percent","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[{"name":"vault","type":"address"},{"name":"admin","type":"address"},{"name":"max_steth_price_difference_percent","type":"uint256"},{"name":"max_eth_price_difference_percent","type":"uint256"}],"outputs":[]},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"nonpayable","type":"function","name":"change_admin","inputs":[{"name":"new_admin","type":"address"}],"outputs":[],"gas":41082},{"stateMutability":"nonpayable","type":"function","name":"configure","inputs":[{"name":"max_steth_price_difference_percent","type":"uint256"},{"name":"max_eth_price_difference_percent","type":"uint256"}],"outputs":[],"gas":78954},{"stateMutability":"nonpayable","type":"function","name":"liquidate","inputs":[{"name":"ust_recipient","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":75737},{"stateMutability":"view","type":"function","name":"admin","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2568},{"stateMutability":"view","type":"function","name":"vault","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2598},{"stateMutability":"view","type":"function","name":"max_eth_price_difference_percent","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":2628},{"stateMutability":"view","type":"function","name":"max_steth_price_difference_percent","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":2658}]Contract Creation Code
6080610d91610140396020610d9160c03960c05160a01c1561002057600080fd5b60206020610d910160c03960c05160a01c1561003b57600080fd5b60126020610220600463313ce5676101c0526101dc73a47c8bf37f92abed4a126bda807a7b7498661acd5afa61007057600080fd5b601f3d1161007d57600080fd5b600050610220511461008e57600080fd5b60126020610220600463313ce5676101c0526101dc73ae7ab96520de3a18e5e111b5eaab095312d7fe845afa6100c357600080fd5b601f3d116100d057600080fd5b60005061022051146100e157600080fd5b670de0b6b3a7640000610180511115151561013b576308c379a06101c05260206101e0526012610200527f696e76616c69642070657263656e746167650000000000000000000000000000610220526102005060646101dcfd5b670de0b6b3a76400006101a05111151515610195576308c379a06101c05260206101e0526012610200527f696e76616c69642070657263656e746167650000000000000000000000000000610220526102005060646101dcfd5b6101405160015561016051600055610180516003556101a0516002556000546101c0527f7ce7ec0b50378fb6c0186ffb5f48325f6593fcb4ca4386f21861af3129188f5c60206101c0a16003546101c0526002546101e0527fff4627e332340e523f3ce742cbfd65bd07619cdcb4eeef6483342ae6c7d83adf60406101c0a1610d7956600436101561000d576106b5565b600035601c5260005163158686b581141561008157341561002d57600080fd5b60043560a01c1561003d57600080fd5b600054331461004b57600080fd5b600435600055600054610140527f7ce7ec0b50378fb6c0186ffb5f48325f6593fcb4ca4386f21861af3129188f5c6020610140a1005b633e32747a81141561019b57341561009857600080fd5b60005433146100a657600080fd5b670de0b6b3a7640000600435111515156100ff576308c379a0610140526020610160526012610180527f696e76616c69642070657263656e7461676500000000000000000000000000006101a05261018050606461015cfd5b670de0b6b3a764000060243511151515610158576308c379a0610140526020610160526012610180527f696e76616c69642070657263656e7461676500000000000000000000000000006101a05261018050606461015cfd5b60043560035560243560025560035461014052600254610160527fff4627e332340e523f3ce742cbfd65bd07619cdcb4eeef6483342ae6c7d83adf6040610140a1005b632f8655688114156106275734156101b257600080fd5b60043560a01c156101c257600080fd5b60015433141515610212576308c379a061014052602061016052600c610180527f756e617574686f72697a656400000000000000000000000000000000000000006101a05261018050606461015cfd5b60206101e060246370a0823161016052306101805261017c73ae7ab96520de3a18e5e111b5eaab095312d7fe845afa61024a57600080fd5b601f3d1161025757600080fd5b6000506101e051610140526000610140511115156102b4576308c379a06101605260206101805260126101a0527f7a65726f2073744554482062616c616e636500000000000000000000000000006101c0526101a050606461017cfd5b6101405161016051600658016106b7565b6101805261016052610140526101805161016052610140516101605161018051610140516101a052610160516101c0526003546101e0526101e0516101c0516101a05160065801610ab5565b6102405261018052610160526101405261024051610180526020610240604463095ea7b36101a05273dc24316b9ae028f1497c275eb9192a3ea0f670226101c052610140516101e0526101bc600073ae7ab96520de3a18e5e111b5eaab095312d7fe845af161037f57600080fd5b601f3d1161038c57600080fd5b6000506102405060206102a06084633df021246101c05260016101e052600061020052610140516102205261018051610240526101dc600073dc24316b9ae028f1497c275eb9192a3ea0f670225af16103e457600080fd5b601f3d116103f157600080fd5b6000506102a0516101a052610180516101a05110151515610451576308c379a06101c05260206101e0526012610200527f696e737566662e204554482072657475726e0000000000000000000000000000610220526102005060646101dcfd5b6101a05147101561046157600080fd5b6101405161016051610180516101a0516101c0516006580161070e565b6101e0526101c0526101a0526101805261016052610140526101e0516101c0526101405161016051610180516101a0516101c0516101e0516101a051610200526101c051610220526002546102405261024051610220516102005160065801610ab5565b6102a0526101e0526101c0526101a0526101805261016052610140526102a0516101e0526101405161016051610180516101a0516101c0516101e051610200516101a051610220526101e0516102405260043561026052610260516102405161022051600658016108d6565b6102c052610200526101e0526101c0526101a0526101805261016052610140526102c051610200526101e05161020051101515156105cb576308c379a0610220526020610240526012610260527f696e737566662e205553542072657475726e00000000000000000000000000006102805261026050606461023cfd5b61014051610220526101a05161024052610200516102605261016051610280526101c0516102a0527fca8eff496aca1723524d491d807cc02b7c0bf166ff920c2d31b21ece0433991760a0610220a16102005160005260206000f35b63f851a44081141561064a57341561063e57600080fd5b60005460005260206000f35b63fbfa77cf81141561066d57341561066157600080fd5b60015460005260206000f35b6318547f9081141561069057341561068457600080fd5b60025460005260206000f35b63b3e14b718114156106b35734156106a757600080fd5b60035460005260206000f35b505b005b6101405260206101c0600463bda093836101605261017c733a6bd15abf19581e411621d669b6a2bbe741ffd65afa6106ee57600080fd5b601f3d116106fb57600080fd5b6000506101c05160005260005161014051565b6101405260206101e0600463313ce5676101805261019c735f4ec3df9cbd43714fe2740f5e3616155c5b84195afa61074557600080fd5b601f3d1161075257600080fd5b6000506101e051610160526101605160001015610776576012610160511115610779565b60005b61078257600080fd5b60a0366101803760a0610280600463feaf968c6102205261023c735f4ec3df9cbd43714fe2740f5e3616155c5b84195afa6107bc57600080fd5b609f3d116107c957600080fd5b6102808080808051610320525050602081019050808080516103405250506020810190508080805161036052505060208101905080808051610380525050602081019050808080516103a0525050505060005061032080516101805280602001516101a05280604001516101c05280606001516101e0528060800151610200525060006101e0511861085a57600080fd5b6101a051600081121561086c57600080fd5b604e6012610160518082101561088157600080fd5b808203905090501061089257600080fd5b601261016051808210156108a557600080fd5b80820390509050600a0a80820282158284830414176108c357600080fd5b8090509050905060005260005161014051565b6101a05261014052610160526101805260006004610280527f7ff36ab5000000000000000000000000000000000000000000000000000000006102a0526102806004806020846102e001018260208501600060045af1505080518201915050610160516020826102e001015260208101905060806020826102e0010152602081019050610180516020826102e00101526020810190507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6020826102e001015260208101905060026020826102e001015260208101905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26020826102e001015260208101905073a47c8bf37f92abed4a126bda807a7b7498661acd6020826102e0010152602081019050806102e0526102e090508051602001806104208284600060045af1610a1957600080fd5b50506080610580610420516104406101405173d9e1ce17f2641f24ae83637ab66a2cca9c378b9f5af1610a4b57600080fd5b60803d80821115610a5c5780610a5e565b815b90509050610560526105608051602001806101c08284600060045af1610a8357600080fd5b50506101c0602060606020835103811315610a9d57600080fd5b0460200260200181015190506000526000516101a051565b6101a05261014052610160526101805261014051610160518082028215828483041417610ae157600080fd5b80905090509050670de0b6b3a7640000808204905090506101c052670de0b6b3a76400006101805180821015610b1657600080fd5b808203905090506101e0526101c0516101e0518082028215828483041417610b3d57600080fd5b80905090509050670de0b6b3a7640000808204905090506000526000516101a051565b610219610d7903610219600039610219610d79036000f3000000000000000000000000a2f987a546d4cd1c607ee8141276876c26b72bdf0000000000000000000000003cd9f71f80ab08ea5a7dca348b5e94bc595f26a000000000000000000000000000000000000000000000000000ba8478cab54000000000000000000000000000000000000000000000000000002386f26fc10000
Deployed Bytecode
0x600436101561000d576106b5565b600035601c5260005163158686b581141561008157341561002d57600080fd5b60043560a01c1561003d57600080fd5b600054331461004b57600080fd5b600435600055600054610140527f7ce7ec0b50378fb6c0186ffb5f48325f6593fcb4ca4386f21861af3129188f5c6020610140a1005b633e32747a81141561019b57341561009857600080fd5b60005433146100a657600080fd5b670de0b6b3a7640000600435111515156100ff576308c379a0610140526020610160526012610180527f696e76616c69642070657263656e7461676500000000000000000000000000006101a05261018050606461015cfd5b670de0b6b3a764000060243511151515610158576308c379a0610140526020610160526012610180527f696e76616c69642070657263656e7461676500000000000000000000000000006101a05261018050606461015cfd5b60043560035560243560025560035461014052600254610160527fff4627e332340e523f3ce742cbfd65bd07619cdcb4eeef6483342ae6c7d83adf6040610140a1005b632f8655688114156106275734156101b257600080fd5b60043560a01c156101c257600080fd5b60015433141515610212576308c379a061014052602061016052600c610180527f756e617574686f72697a656400000000000000000000000000000000000000006101a05261018050606461015cfd5b60206101e060246370a0823161016052306101805261017c73ae7ab96520de3a18e5e111b5eaab095312d7fe845afa61024a57600080fd5b601f3d1161025757600080fd5b6000506101e051610140526000610140511115156102b4576308c379a06101605260206101805260126101a0527f7a65726f2073744554482062616c616e636500000000000000000000000000006101c0526101a050606461017cfd5b6101405161016051600658016106b7565b6101805261016052610140526101805161016052610140516101605161018051610140516101a052610160516101c0526003546101e0526101e0516101c0516101a05160065801610ab5565b6102405261018052610160526101405261024051610180526020610240604463095ea7b36101a05273dc24316b9ae028f1497c275eb9192a3ea0f670226101c052610140516101e0526101bc600073ae7ab96520de3a18e5e111b5eaab095312d7fe845af161037f57600080fd5b601f3d1161038c57600080fd5b6000506102405060206102a06084633df021246101c05260016101e052600061020052610140516102205261018051610240526101dc600073dc24316b9ae028f1497c275eb9192a3ea0f670225af16103e457600080fd5b601f3d116103f157600080fd5b6000506102a0516101a052610180516101a05110151515610451576308c379a06101c05260206101e0526012610200527f696e737566662e204554482072657475726e0000000000000000000000000000610220526102005060646101dcfd5b6101a05147101561046157600080fd5b6101405161016051610180516101a0516101c0516006580161070e565b6101e0526101c0526101a0526101805261016052610140526101e0516101c0526101405161016051610180516101a0516101c0516101e0516101a051610200526101c051610220526002546102405261024051610220516102005160065801610ab5565b6102a0526101e0526101c0526101a0526101805261016052610140526102a0516101e0526101405161016051610180516101a0516101c0516101e051610200516101a051610220526101e0516102405260043561026052610260516102405161022051600658016108d6565b6102c052610200526101e0526101c0526101a0526101805261016052610140526102c051610200526101e05161020051101515156105cb576308c379a0610220526020610240526012610260527f696e737566662e205553542072657475726e00000000000000000000000000006102805261026050606461023cfd5b61014051610220526101a05161024052610200516102605261016051610280526101c0516102a0527fca8eff496aca1723524d491d807cc02b7c0bf166ff920c2d31b21ece0433991760a0610220a16102005160005260206000f35b63f851a44081141561064a57341561063e57600080fd5b60005460005260206000f35b63fbfa77cf81141561066d57341561066157600080fd5b60015460005260206000f35b6318547f9081141561069057341561068457600080fd5b60025460005260206000f35b63b3e14b718114156106b35734156106a757600080fd5b60035460005260206000f35b505b005b6101405260206101c0600463bda093836101605261017c733a6bd15abf19581e411621d669b6a2bbe741ffd65afa6106ee57600080fd5b601f3d116106fb57600080fd5b6000506101c05160005260005161014051565b6101405260206101e0600463313ce5676101805261019c735f4ec3df9cbd43714fe2740f5e3616155c5b84195afa61074557600080fd5b601f3d1161075257600080fd5b6000506101e051610160526101605160001015610776576012610160511115610779565b60005b61078257600080fd5b60a0366101803760a0610280600463feaf968c6102205261023c735f4ec3df9cbd43714fe2740f5e3616155c5b84195afa6107bc57600080fd5b609f3d116107c957600080fd5b6102808080808051610320525050602081019050808080516103405250506020810190508080805161036052505060208101905080808051610380525050602081019050808080516103a0525050505060005061032080516101805280602001516101a05280604001516101c05280606001516101e0528060800151610200525060006101e0511861085a57600080fd5b6101a051600081121561086c57600080fd5b604e6012610160518082101561088157600080fd5b808203905090501061089257600080fd5b601261016051808210156108a557600080fd5b80820390509050600a0a80820282158284830414176108c357600080fd5b8090509050905060005260005161014051565b6101a05261014052610160526101805260006004610280527f7ff36ab5000000000000000000000000000000000000000000000000000000006102a0526102806004806020846102e001018260208501600060045af1505080518201915050610160516020826102e001015260208101905060806020826102e0010152602081019050610180516020826102e00101526020810190507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6020826102e001015260208101905060026020826102e001015260208101905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26020826102e001015260208101905073a47c8bf37f92abed4a126bda807a7b7498661acd6020826102e0010152602081019050806102e0526102e090508051602001806104208284600060045af1610a1957600080fd5b50506080610580610420516104406101405173d9e1ce17f2641f24ae83637ab66a2cca9c378b9f5af1610a4b57600080fd5b60803d80821115610a5c5780610a5e565b815b90509050610560526105608051602001806101c08284600060045af1610a8357600080fd5b50506101c0602060606020835103811315610a9d57600080fd5b0460200260200181015190506000526000516101a051565b6101a05261014052610160526101805261014051610160518082028215828483041417610ae157600080fd5b80905090509050670de0b6b3a7640000808204905090506101c052670de0b6b3a76400006101805180821015610b1657600080fd5b808203905090506101e0526101c0516101e0518082028215828483041417610b3d57600080fd5b80905090509050670de0b6b3a7640000808204905090506000526000516101a05156
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a2f987a546d4cd1c607ee8141276876c26b72bdf0000000000000000000000003cd9f71f80ab08ea5a7dca348b5e94bc595f26a000000000000000000000000000000000000000000000000000ba8478cab54000000000000000000000000000000000000000000000000000002386f26fc10000
-----Decoded View---------------
Arg [0] : vault (address): 0xA2F987A546D4CD1c607Ee8141276876C26b72Bdf
Arg [1] : admin (address): 0x3cd9F71F80AB08ea5a7Dca348B5e94BC595f26A0
Arg [2] : max_steth_price_difference_percent (uint256): 52500000000000000
Arg [3] : max_eth_price_difference_percent (uint256): 10000000000000000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000a2f987a546d4cd1c607ee8141276876c26b72bdf
Arg [1] : 0000000000000000000000003cd9f71f80ab08ea5a7dca348b5e94bc595f26a0
Arg [2] : 00000000000000000000000000000000000000000000000000ba8478cab54000
Arg [3] : 000000000000000000000000000000000000000000000000002386f26fc10000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.