Overview
HYPE Balance
HYPE Value
$0.00Latest 25 from a total of 412 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Deposit | 25468359 | 42 hrs ago | IN | 0 HYPE | 0.00090845 | ||||
| Deposit | 25298450 | 3 days ago | IN | 0 HYPE | 0.00007867 | ||||
| Borrow | 25298424 | 3 days ago | IN | 0 HYPE | 0.00008571 | ||||
| Deposit | 25298372 | 3 days ago | IN | 0 HYPE | 0.00013687 | ||||
| Borrow | 25298321 | 3 days ago | IN | 0 HYPE | 0.00008571 | ||||
| Deposit | 25298284 | 3 days ago | IN | 0 HYPE | 0.00015611 | ||||
| Borrow | 25298081 | 3 days ago | IN | 0 HYPE | 0.00008818 | ||||
| Deposit | 25115049 | 5 days ago | IN | 0 HYPE | 0.00164396 | ||||
| Deposit | 24943469 | 7 days ago | IN | 0 HYPE | 0.00358156 | ||||
| Withdraw | 24919874 | 8 days ago | IN | 0 HYPE | 0.00108962 | ||||
| Repay | 24919813 | 8 days ago | IN | 0 HYPE | 0.00238997 | ||||
| Withdraw | 24919752 | 8 days ago | IN | 0 HYPE | 0.00151841 | ||||
| Withdraw | 24919142 | 8 days ago | IN | 0 HYPE | 0.00686454 | ||||
| Repay | 24898671 | 8 days ago | IN | 0 HYPE | 0.00008767 | ||||
| Repay | 24898627 | 8 days ago | IN | 0 HYPE | 0.00008871 | ||||
| Deposit | 24852459 | 8 days ago | IN | 0 HYPE | 0.00034916 | ||||
| Deposit | 24843333 | 8 days ago | IN | 0 HYPE | 0.00035015 | ||||
| Deposit | 24766663 | 9 days ago | IN | 0 HYPE | 0.00013004 | ||||
| Borrow | 24704784 | 10 days ago | IN | 0 HYPE | 0.0011079 | ||||
| Borrow | 24704763 | 10 days ago | IN | 0 HYPE | 0.00069368 | ||||
| Borrow | 24704712 | 10 days ago | IN | 0 HYPE | 0.00016942 | ||||
| Borrow | 24702274 | 10 days ago | IN | 0 HYPE | 0.00067284 | ||||
| Borrow | 24701818 | 10 days ago | IN | 0 HYPE | 0.00013341 | ||||
| Deposit | 24701687 | 10 days ago | IN | 0 HYPE | 0.00155485 | ||||
| Borrow | 24700457 | 10 days ago | IN | 0 HYPE | 0.0002165 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 14209255 | 129 days ago | Contract Creation | 0 HYPE |
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x8a619D8E...429c739C3 in XDC Mainnet The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
InitializableImmutableAdminUpgradeabilityProxy
Compiler Version
v0.8.27+commit.40a35a09
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.8.27;
import "./BaseImmutableAdminUpgradeabilityProxy.sol";
import "../../../dependencies/openzeppelin/upgradeability/InitializableUpgradeabilityProxy.sol";
/**
* @title InitializableAdminUpgradeabilityProxy
* @dev Extends BaseAdminUpgradeabilityProxy with an initializer function
*/
contract InitializableImmutableAdminUpgradeabilityProxy is
BaseImmutableAdminUpgradeabilityProxy,
InitializableUpgradeabilityProxy
{
constructor(address admin) BaseImmutableAdminUpgradeabilityProxy(admin) {}
/**
* @dev Only fall back when the sender is not the admin.
*/
function _willFallback() internal override(BaseImmutableAdminUpgradeabilityProxy, Proxy) {
BaseImmutableAdminUpgradeabilityProxy._willFallback();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @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 or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* 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.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @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`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.8.27;
import "./Proxy.sol";
import "@openzeppelin/contracts/utils/Address.sol";
/**
* @title BaseUpgradeabilityProxy
* @dev This contract implements a proxy that allows to change the
* implementation address to which it will delegate.
* Such a change is called an implementation upgrade.
*/
contract BaseUpgradeabilityProxy is Proxy {
/**
* @dev Emitted when the implementation is upgraded.
* @param implementation Address of the new implementation.
*/
event Upgraded(address indexed implementation);
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev Returns the current implementation.
* @return impl Address of the current implementation
*/
function _implementation() internal view override returns (address impl) {
bytes32 slot = IMPLEMENTATION_SLOT;
//solium-disable-next-line
assembly {
impl := sload(slot)
}
}
/**
* @dev Upgrades the proxy to a new implementation.
* @param newImplementation Address of the new implementation.
*/
function _upgradeTo(address newImplementation) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
/**
* @dev Sets the implementation address of the proxy.
* @param newImplementation Address of the new implementation.
*/
function _setImplementation(address newImplementation) internal {
require(newImplementation.code.length > 0, "Cannot set a proxy implementation to a non-contract address");
bytes32 slot = IMPLEMENTATION_SLOT;
//solium-disable-next-line
assembly {
sstore(slot, newImplementation)
}
}
}// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.8.27;
import "./BaseUpgradeabilityProxy.sol";
/**
* @title InitializableUpgradeabilityProxy
* @dev Extends BaseUpgradeabilityProxy with an initializer for initializing
* implementation and init data.
*/
contract InitializableUpgradeabilityProxy is BaseUpgradeabilityProxy {
/**
* @dev Contract initializer.
* @param _logic Address of the initial implementation.
* @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
* It should include the signature and the parameters of the function to be called, as described in
* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
* This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
*/
function initialize(address _logic, bytes memory _data) public payable {
require(_implementation() == address(0));
assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
_setImplementation(_logic);
if (_data.length > 0) {
(bool success, ) = _logic.delegatecall(_data);
require(success);
}
}
}// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.8.27;
/**
* @title Proxy
* @dev Implements delegation of calls to other contracts, with proper
* forwarding of return values and bubbling of failures.
* It defines a fallback function that delegates all calls to the address
* returned by the abstract _implementation() internal function.
*/
abstract contract Proxy {
/**
* @dev Fallback function.
* Implemented entirely in `_fallback`.
*/
fallback() external payable {
_fallback();
}
/**
* @return The Address of the implementation.
*/
function _implementation() internal view virtual returns (address);
/**
* @dev Delegates execution to an implementation contract.
* This is a low level function that doesn't return to its internal call site.
* It will return to the external caller whatever the implementation returns.
* @param implementation Address to delegate.
*/
function _delegate(address implementation) internal {
//solium-disable-next-line
assembly {
// Copy msg.data. We take full control of memory in this inline assembly
// block because it will not return to Solidity code. We overwrite the
// Solidity scratch pad at memory position 0.
calldatacopy(0, 0, calldatasize())
// Call the implementation.
// out and outsize are 0 because we don't know the size yet.
let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)
// Copy the returned data.
returndatacopy(0, 0, returndatasize())
switch result
// delegatecall returns 0 on error.
case 0 {
revert(0, returndatasize())
}
default {
return(0, returndatasize())
}
}
}
/**
* @dev Function that is run as the first thing in the fallback function.
* Can be redefined in derived contracts to add functionality.
* Redefinitions must call super._willFallback().
*/
function _willFallback() internal virtual {}
/**
* @dev fallback implementation.
* Extracted to enable manual triggering.
*/
function _fallback() internal {
_willFallback();
_delegate(_implementation());
}
}// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.8.27;
import "../../../dependencies/openzeppelin/upgradeability/BaseUpgradeabilityProxy.sol";
/**
* @title BaseImmutableAdminUpgradeabilityProxy
* @author Aave, inspired by the OpenZeppelin upgradeability proxy pattern
* @dev This contract combines an upgradeability proxy with an authorization
* mechanism for administrative tasks. The admin role is stored in an immutable, which
* helps saving transactions costs
* All external functions in this contract must be guarded by the
* `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity
* feature proposal that would enable this to be done automatically.
*/
contract BaseImmutableAdminUpgradeabilityProxy is BaseUpgradeabilityProxy {
address immutable ADMIN;
constructor(address _admin) {
ADMIN = _admin;
}
modifier ifAdmin() {
if (msg.sender == ADMIN) {
_;
} else {
_fallback();
}
}
/**
* @return _address The address of the proxy admin.
*/
function admin() external ifAdmin returns (address _address) {
return ADMIN;
}
/**
* @return _address The address of the implementation.
*/
function implementation() external ifAdmin returns (address _address) {
return _implementation();
}
/**
* @dev Upgrade the backing implementation of the proxy.
* Only the admin can call this function.
* @param newImplementation Address of the new implementation.
*/
function upgradeTo(address newImplementation) external ifAdmin {
_upgradeTo(newImplementation);
}
/**
* @dev Upgrade the backing implementation of the proxy and call a function
* on the new implementation.
* This is useful to initialize the proxied contract.
* @param newImplementation Address of the new implementation.
* @param data Data to send as msg.data in the low level call.
* It should include the signature and the parameters of the function to be called, as described in
* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
*/
function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {
_upgradeTo(newImplementation);
(bool success, ) = newImplementation.delegatecall(data);
require(success);
}
/**
* @dev Only fall back when the sender is not the admin.
*/
function _willFallback() internal virtual override {
require(msg.sender != ADMIN, "Cannot call fallback function from the proxy admin");
super._willFallback();
}
}{
"evmVersion": "shanghai",
"viaIR": true,
"optimizer": {
"enabled": true,
"runs": 1000,
"details": {
"yul": true
}
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"_address","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"_address","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"initialize","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
0x60a03461008557601f61063138819003918201601f19168301916001600160401b038311848410176100895780849260209460405283398101031261008557516001600160a01b038116810361008557608052604051610593908161009e823960805181818160770152818161012301528181610196015281816102f001526103c10152f35b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080604052600436106103b7575f3560e01c80633659cfe61461005b5780634f1ef286146100565780635c60da1b14610051578063d1f578941461004c5763f851a440036103b7576102de565b61026c565b610183565b6100ce565b346100b45760203660031901126100b4576100746100b8565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316036100af576100ad9061048f565b005b6103b7565b5f80fd5b600435906001600160a01b03821682036100b457565b60403660031901126100b4576100e26100b8565b60243567ffffffffffffffff81116100b457366023820112156100b45780600401359167ffffffffffffffff83116100b45736602484840101116100b457337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316036100af5760245f939284936101608461048f565b80604051938493018337810184815203915af461017b610333565b50156100b457005b346100b4575f3660031901126100b457337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316036100af5760207f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b0360405191168152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6040519190601f01601f1916820167ffffffffffffffff81118382101761024b57604052565b6101f8565b67ffffffffffffffff811161024b57601f01601f191660200190565b60403660031901126100b4576102806100b8565b6024359067ffffffffffffffff82116100b457366023830112156100b4578160040135906102b56102b083610250565b610225565b9180835236602482860101116100b4576020815f9260246100ad97018387013784010152610358565b346100b4575f3660031901126100b4577f0000000000000000000000000000000000000000000000000000000000000000336001600160a01b038216036100af576020906001600160a01b0360405191168152f35b3d15610353573d906103476102b083610250565b9182523d5f602084013e565b606090565b906001600160a01b037f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54166100b457610391826104c8565b80518061039d57505050565b5f926020849301905af46103af610333565b50156100b457565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163314610425575f807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54368280378136915af43d5f803e15610421573d5ff35b3d5ffd5b608460405162461bcd60e51b815260206004820152603260248201527f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667260448201527f6f6d207468652070726f78792061646d696e00000000000000000000000000006064820152fd5b6001600160a01b03906104a1816104c8565b167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b5f80a2565b803b156104f3577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b608460405162461bcd60e51b815260206004820152603b60248201527f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f60448201527f6e20746f2061206e6f6e2d636f6e7472616374206164647265737300000000006064820152fdfea26469706673582212203269e5b35c052ae9fa3553486482a602f3dc3d352e5d28cd4e7e75f5b1f46d3a64736f6c634300081b003300000000000000000000000007093ca1e6c8c03ff77dea07532f738d88de1d75
Deployed Bytecode
0x6080604052600436106103b7575f3560e01c80633659cfe61461005b5780634f1ef286146100565780635c60da1b14610051578063d1f578941461004c5763f851a440036103b7576102de565b61026c565b610183565b6100ce565b346100b45760203660031901126100b4576100746100b8565b337f00000000000000000000000007093ca1e6c8c03ff77dea07532f738d88de1d756001600160a01b0316036100af576100ad9061048f565b005b6103b7565b5f80fd5b600435906001600160a01b03821682036100b457565b60403660031901126100b4576100e26100b8565b60243567ffffffffffffffff81116100b457366023820112156100b45780600401359167ffffffffffffffff83116100b45736602484840101116100b457337f00000000000000000000000007093ca1e6c8c03ff77dea07532f738d88de1d756001600160a01b0316036100af5760245f939284936101608461048f565b80604051938493018337810184815203915af461017b610333565b50156100b457005b346100b4575f3660031901126100b457337f00000000000000000000000007093ca1e6c8c03ff77dea07532f738d88de1d756001600160a01b0316036100af5760207f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b0360405191168152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6040519190601f01601f1916820167ffffffffffffffff81118382101761024b57604052565b6101f8565b67ffffffffffffffff811161024b57601f01601f191660200190565b60403660031901126100b4576102806100b8565b6024359067ffffffffffffffff82116100b457366023830112156100b4578160040135906102b56102b083610250565b610225565b9180835236602482860101116100b4576020815f9260246100ad97018387013784010152610358565b346100b4575f3660031901126100b4577f00000000000000000000000007093ca1e6c8c03ff77dea07532f738d88de1d75336001600160a01b038216036100af576020906001600160a01b0360405191168152f35b3d15610353573d906103476102b083610250565b9182523d5f602084013e565b606090565b906001600160a01b037f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54166100b457610391826104c8565b80518061039d57505050565b5f926020849301905af46103af610333565b50156100b457565b6001600160a01b037f00000000000000000000000007093ca1e6c8c03ff77dea07532f738d88de1d75163314610425575f807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54368280378136915af43d5f803e15610421573d5ff35b3d5ffd5b608460405162461bcd60e51b815260206004820152603260248201527f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667260448201527f6f6d207468652070726f78792061646d696e00000000000000000000000000006064820152fd5b6001600160a01b03906104a1816104c8565b167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b5f80a2565b803b156104f3577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b608460405162461bcd60e51b815260206004820152603b60248201527f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f60448201527f6e20746f2061206e6f6e2d636f6e7472616374206164647265737300000000006064820152fdfea26469706673582212203269e5b35c052ae9fa3553486482a602f3dc3d352e5d28cd4e7e75f5b1f46d3a64736f6c634300081b0033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in HYPE
Multichain Portfolio | 35 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.