Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
To
|
||||
|---|---|---|---|---|---|---|---|---|
| Deposit | 11627119 | 1772 days ago | 0 ETH | |||||
| Withdraw | 11624659 | 1772 days ago | 0 ETH | |||||
| Deposit | 11619866 | 1773 days ago | 0 ETH | |||||
| Deposit ETH | 11616973 | 1774 days ago | 0.1 ETH | |||||
| Deposit | 11616508 | 1774 days ago | 0 ETH | |||||
| Deposit ETH | 11616115 | 1774 days ago | 0.01 ETH | |||||
| Deposit ETH | 11616024 | 1774 days ago | 0.012 ETH | |||||
| Deposit ETH | 11615862 | 1774 days ago | 0.001 ETH | |||||
| Deposit ETH | 11615759 | 1774 days ago | 0.001 ETH | |||||
| Deposit ETH | 11615746 | 1774 days ago | 0.05 ETH | |||||
| Deposit | 11589885 | 1778 days ago | 0 ETH | |||||
| Deposit ETH | 11575848 | 1780 days ago | 0.1 ETH | |||||
| Deposit | 11573946 | 1780 days ago | 0 ETH | |||||
| Withdraw | 11572167 | 1780 days ago | 0 ETH | |||||
| Deposit | 11572023 | 1780 days ago | 5.6 ETH | |||||
| Deposit | 11569512 | 1781 days ago | 0 ETH | |||||
| Deposit ETH | 11568979 | 1781 days ago | 0.02270582 ETH | |||||
| Deposit ETH | 11567468 | 1781 days ago | 0 ETH | |||||
| Withdraw | 11567001 | 1781 days ago | 0 ETH | |||||
| Withdraw | 11567001 | 1781 days ago | 0 ETH | |||||
| Deposit ETH | 11562177 | 1782 days ago | 0.03 ETH | |||||
| Deposit | 11561425 | 1782 days ago | 0 ETH | |||||
| Withdraw | 11560648 | 1782 days ago | 0 ETH | |||||
| Deposit | 11558129 | 1783 days ago | 0 ETH | |||||
| Deposit ETH | 11557677 | 1783 days ago | 0.01940414 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
HYVault
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-11-24
*/
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
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);
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.5.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, 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) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @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) {
// 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 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts 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) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message 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.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts 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) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message 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.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.5.5;
/**
* @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) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @dev Converts an `address` into `address payable`. Note that this is
* simply a type cast: the actual underlying value is not changed.
*
* _Available since v2.4.0._
*/
function toPayable(address account) internal pure returns (address payable) {
return address(uint160(account));
}
/**
* @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].
*
* _Available since v2.4.0._
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-call-value
(bool success, ) = recipient.call.value(amount)("");
require(success, "Address: unable to send value, recipient may have reverted");
}
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
pragma solidity ^0.5.0;
/**
* @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 ERC20;` 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));
}
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.
// A Solidity high level call has three parts:
// 1. The target address is checked to verify it contains contract code
// 2. The call itself is made, and success asserted
// 3. The return value is decoded, which in turn checks the size of the returned data.
// solhint-disable-next-line max-line-length
require(address(token).isContract(), "SafeERC20: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = address(token).call(data);
require(success, "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");
}
}
}
// File: contracts/lib/LibCache.sol
pragma solidity ^0.5.0;
library LibCache {
function setAddress(bytes32[] storage _cache, address _input) internal {
_cache.push(bytes32(uint256(uint160(_input))));
}
function set(bytes32[] storage _cache, bytes32 _input) internal {
_cache.push(_input);
}
function setHandlerType(bytes32[] storage _cache, uint256 _input) internal {
require(_input < uint96(-1), "Invalid Handler Type");
_cache.push(bytes12(uint96(_input)));
}
function setSender(bytes32[] storage _cache, address _input) internal {
require(_cache.length == 0, "cache not empty");
setAddress(_cache, _input);
}
function getAddress(bytes32[] storage _cache)
internal
returns (address ret)
{
ret = address(uint160(uint256(peek(_cache))));
_cache.pop();
}
function getSig(bytes32[] storage _cache) internal returns (bytes4 ret) {
ret = bytes4(peek(_cache));
_cache.pop();
}
function get(bytes32[] storage _cache) internal returns (bytes32 ret) {
ret = peek(_cache);
_cache.pop();
}
function peek(bytes32[] storage _cache)
internal
view
returns (bytes32 ret)
{
require(_cache.length > 0, "cache empty");
ret = _cache[_cache.length - 1];
}
function getSender(bytes32[] storage _cache)
internal
returns (address ret)
{
require(_cache.length > 0, "cache empty");
ret = address(uint160(uint256(_cache[0])));
}
}
// File: contracts/Cache.sol
pragma solidity ^0.5.0;
/// @notice A cache structure composed by a bytes32 array
contract Cache {
using LibCache for bytes32[];
bytes32[] cache;
modifier isCacheEmpty() {
require(cache.length == 0, "Cache not empty");
_;
}
}
// File: contracts/Config.sol
pragma solidity ^0.5.0;
contract Config {
// function signature of "postProcess()"
bytes4 constant POSTPROCESS_SIG = 0xc2722916;
// Handler post-process type. Others should not happen now.
enum HandlerType {Token, Custom, Others}
}
// File: contracts/handlers/HandlerBase.sol
pragma solidity ^0.5.0;
contract HandlerBase is Cache, Config {
function postProcess() external payable {
revert("Invalid post process");
/* Implementation template
bytes4 sig = cache.getSig();
if (sig == bytes4(keccak256(bytes("handlerFunction_1()")))) {
// Do something
} else if (sig == bytes4(keccak256(bytes("handlerFunction_2()")))) {
bytes32 temp = cache.get();
// Do something
} else revert("Invalid post process");
*/
}
function _updateToken(address token) internal {
cache.setAddress(token);
// Ignore token type to fit old handlers
// cache.setHandlerType(uint256(HandlerType.Token));
}
function _updatePostProcess(bytes32[] memory params) internal {
for (uint256 i = params.length; i > 0; i--) {
cache.set(params[i - 1]);
}
cache.set(msg.sig);
cache.setHandlerType(uint256(HandlerType.Custom));
}
}
// File: contracts/handlers/yearn/IYVault.sol
pragma solidity ^0.5.0;
interface IYVault {
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount)
external
returns (bool);
function token() external view returns (address);
function getPricePerFullShare() external view returns (uint256);
function deposit(uint256 _amount) external;
function depositETH() external payable;
function withdraw(uint256 _shares) external;
function withdrawETH(uint256 _shares) external;
}
// File: contracts/handlers/yearn/HYVault.sol
pragma solidity ^0.5.0;
contract HYVault is HandlerBase {
using SafeERC20 for IERC20;
function deposit(address vault, uint256 _amount) external payable {
IYVault yVault = IYVault(vault);
address token = yVault.token();
IERC20(token).safeApprove(address(yVault), _amount);
yVault.deposit(_amount);
IERC20(token).safeApprove(address(yVault), 0);
_updateToken(address(yVault));
}
function depositETH(uint256 value, address vault) external payable {
IYVault yVault = IYVault(vault);
yVault.depositETH.value(value)();
_updateToken(address(yVault));
}
function withdraw(address vault, uint256 _shares) external payable {
IYVault yVault = IYVault(vault);
yVault.withdraw(_shares);
_updateToken(yVault.token());
}
function withdrawETH(address vault, uint256 _shares) external payable {
IYVault yVault = IYVault(vault);
yVault.withdrawETH(_shares);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"internalType":"address","name":"vault","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"vault","type":"address"}],"name":"depositETH","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"postProcess","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"vault","type":"address"},{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"vault","type":"address"},{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"withdrawETH","outputs":[],"payable":true,"stateMutability":"payable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b506107c9806100206000396000f3fe60806040526004361061004a5760003560e01c80634782f7791461004f57806347e7ef241461007d57806356150edf146100a9578063c2722916146100d5578063f3fef3a3146100dd575b600080fd5b61007b6004803603604081101561006557600080fd5b506001600160a01b038135169060200135610109565b005b61007b6004803603604081101561009357600080fd5b506001600160a01b038135169060200135610171565b61007b600480360360408110156100bf57600080fd5b50803590602001356001600160a01b031661027c565b61007b6102e3565b61007b600480360360408110156100f357600080fd5b506001600160a01b038135169060200135610327565b6000829050806001600160a01b031663f14210a6836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561015457600080fd5b505af1158015610168573d6000803e3d6000fd5b50505050505050565b60008290506000816001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156101b157600080fd5b505afa1580156101c5573d6000803e3d6000fd5b505050506040513d60208110156101db57600080fd5b505190506101f96001600160a01b038216838563ffffffff6103f716565b816001600160a01b031663b6b55f25846040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561023f57600080fd5b505af1158015610253573d6000803e3d6000fd5b5061026d925050506001600160a01b0382168360006103f7565b6102768261050a565b50505050565b6000819050806001600160a01b031663f6326fb3846040518263ffffffff1660e01b81526004016000604051808303818588803b1580156102bc57600080fd5b505af11580156102d0573d6000803e3d6000fd5b50505050506102de8161050a565b505050565b6040805162461bcd60e51b8152602060048201526014602482015273496e76616c696420706f73742070726f6365737360601b604482015290519081900360640190fd5b6000829050806001600160a01b0316632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561037257600080fd5b505af1158015610386573d6000803e3d6000fd5b505050506102de816001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103c657600080fd5b505afa1580156103da573d6000803e3d6000fd5b505050506040513d60208110156103f057600080fd5b505161050a565b80158061047d575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561044f57600080fd5b505afa158015610463573d6000803e3d6000fd5b505050506040513d602081101561047957600080fd5b5051155b6104b85760405162461bcd60e51b815260040180806020018281038252603681526020018061075f6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526102de90849061051e565b61051b60008263ffffffff6106d616565b50565b610530826001600160a01b03166106f8565b610581576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106105bf5780518252601f1990920191602091820191016105a0565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610621576040519150601f19603f3d011682016040523d82523d6000602084013e610626565b606091505b50915091508161067d576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156102765780806020019051602081101561069957600080fd5b50516102765760405162461bcd60e51b815260040180806020018281038252602a815260200180610735602a913960400191505060405180910390fd5b8154600181018355600092835260209092206001600160a01b03909116910155565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061072c57508115155b94935050505056fe5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820d1a97f0b9a5a2a31025fca8520372e29678343cfc5d7a85b345abecd0499d12a64736f6c63430005100032
Deployed Bytecode
0x60806040526004361061004a5760003560e01c80634782f7791461004f57806347e7ef241461007d57806356150edf146100a9578063c2722916146100d5578063f3fef3a3146100dd575b600080fd5b61007b6004803603604081101561006557600080fd5b506001600160a01b038135169060200135610109565b005b61007b6004803603604081101561009357600080fd5b506001600160a01b038135169060200135610171565b61007b600480360360408110156100bf57600080fd5b50803590602001356001600160a01b031661027c565b61007b6102e3565b61007b600480360360408110156100f357600080fd5b506001600160a01b038135169060200135610327565b6000829050806001600160a01b031663f14210a6836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561015457600080fd5b505af1158015610168573d6000803e3d6000fd5b50505050505050565b60008290506000816001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156101b157600080fd5b505afa1580156101c5573d6000803e3d6000fd5b505050506040513d60208110156101db57600080fd5b505190506101f96001600160a01b038216838563ffffffff6103f716565b816001600160a01b031663b6b55f25846040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561023f57600080fd5b505af1158015610253573d6000803e3d6000fd5b5061026d925050506001600160a01b0382168360006103f7565b6102768261050a565b50505050565b6000819050806001600160a01b031663f6326fb3846040518263ffffffff1660e01b81526004016000604051808303818588803b1580156102bc57600080fd5b505af11580156102d0573d6000803e3d6000fd5b50505050506102de8161050a565b505050565b6040805162461bcd60e51b8152602060048201526014602482015273496e76616c696420706f73742070726f6365737360601b604482015290519081900360640190fd5b6000829050806001600160a01b0316632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561037257600080fd5b505af1158015610386573d6000803e3d6000fd5b505050506102de816001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103c657600080fd5b505afa1580156103da573d6000803e3d6000fd5b505050506040513d60208110156103f057600080fd5b505161050a565b80158061047d575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561044f57600080fd5b505afa158015610463573d6000803e3d6000fd5b505050506040513d602081101561047957600080fd5b5051155b6104b85760405162461bcd60e51b815260040180806020018281038252603681526020018061075f6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526102de90849061051e565b61051b60008263ffffffff6106d616565b50565b610530826001600160a01b03166106f8565b610581576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106105bf5780518252601f1990920191602091820191016105a0565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610621576040519150601f19603f3d011682016040523d82523d6000602084013e610626565b606091505b50915091508161067d576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156102765780806020019051602081101561069957600080fd5b50516102765760405162461bcd60e51b815260040180806020018281038252602a815260200180610735602a913960400191505060405180910390fd5b8154600181018355600092835260209092206001600160a01b03909116910155565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061072c57508115155b94935050505056fe5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820d1a97f0b9a5a2a31025fca8520372e29678343cfc5d7a85b345abecd0499d12a64736f6c63430005100032
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.