Source Code
Latest 5 from a total of 5 transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
APEthEarlyDeposits
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
/**
* @title APEth early depositor contract
* @author Avado AG, Zug Switzerland
* @notice Terms of Service: https://ava.do/terms-and-conditions/
* @notice The main functionalities are:
* - receives eth from depositors
* - depositors can withdraw their eth
* - contract owner (Avado) can choose early depositors to recieve APEth for their deposit
*/
/**
*
* IMPORTS
*
*/
import {IAPETH, IERC20} from "./interfaces/IAPETH.sol";
import {Ownable} from "openzeppelin-contracts/contracts/access/Ownable.sol";
/**
*
* CONTRACT
*
*/
contract APEthEarlyDeposits is Ownable{
/**
*
* STORAGE
*
*/
IAPETH public _APETH;
mapping(address depositor => uint256 amount) public deposits;
/**
*
* EVENTS
*
*/
/// @notice occurs when a user makes a deposit
event Deposit(address depositor, uint256 amount);
/// @notice occurs when a user withdrawals their funds
event Withdrawal(address withdrawor, uint256 amount);
/// @notice occurs when a users funds are used to mint APEth
event Minted(address recipient, uint256 amount);
/**
*
* FUNCTIONS
*
*/
constructor(address _owner)Ownable(_owner){
//
}
function updateAPEth(address _APEth) external onlyOwner {
_APETH = IAPETH(payable(_APEth));
}
function deposit(address _depositor) public payable {
deposits[_depositor] += msg.value;
emit Deposit(_depositor, msg.value);
}
receive()external payable {
deposit(msg.sender);
}
fallback()external payable {
deposit(msg.sender);
}
function mintAPEthBulk(address[] calldata recipients) external onlyOwner{
for(uint256 i = 0; i < recipients.length; i++) {
require(address(_APETH) != address(0), "APEth contract address not set");
_mintAPEth(recipients[i]);
}
}
function _mintAPEth(address recipient) internal {
uint256 amount = deposits[recipient];
deposits[recipient] = 0;
uint256 newCoins =_APETH.mint{value: amount}();
bool success = IERC20(address(_APETH)).transfer(recipient, newCoins);
assert(success);
emit Minted(recipient, newCoins);
}
function withdraw() external {
uint256 amount = deposits[msg.sender];
deposits[msg.sender] = 0;
(bool success, /*return data*/) = msg.sender.call{value: amount}("");
assert(success);
emit Withdrawal(msg.sender, amount);
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
/**
* @title Liquid Restaking Token by Avado
* @author Avado AG, Zug Switzerland
* @notice Terms of Service: https://ava.do/terms-and-conditions/
* @notice The main functionalities are:
* - ERC20 token functionality
* - Earns fees from staking (provided by DVT operators screened by Avado)
* - Earns Restaking Fees from Eigenlayer
* - withdrawals are not yet enabled
*/
/**
*
* IMPORTS
*
*/
import {IERC20} from "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
/**
*
* INTERFACE
*
*/
interface IAPETH{
/**
*
* EVENTS
*
*/
/// @notice occurs when a new validator is staked to the beacon chain
event Stake(bytes pubkey, address caller);
/// @notice occurs when new APEth coins are minted
event Mint(address minter, uint256 amount);
/**
*
* FUNCTIONS
*
*/
function mint() external payable returns(uint256);
function ethPerAPEth() external view returns (uint256);
function stake(bytes calldata _pubKey, bytes calldata _signature, bytes32 _deposit_data_root) external;
function callSSVNetwork(bytes memory data) external;
function callEigenPod(bytes memory data) external;
function callEigenPodManager(bytes memory data) external;
function transferToken(address tokenAddress, address to, uint256 amount) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"remappings": [
"@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"@openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
"@eigenlayer-contracts/=lib/eigenlayer-contracts/src/contracts/",
"@openzeppelin-upgrades-v4.9.0/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-upgradeable-v4.9.0/",
"@openzeppelin-upgrades/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-upgradeable/",
"@openzeppelin-v4.9.0/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-v4.9.0/",
"ds-test/=lib/eigenlayer-contracts/lib/ds-test/src/",
"eigenlayer-contracts/=lib/eigenlayer-contracts/",
"erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts-upgradeable-v4.9.0/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-upgradeable-v4.9.0/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts-v4.9.0/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-v4.9.0/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin-foundry-upgrades/=lib/openzeppelin-foundry-upgrades/src/",
"openzeppelin/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-upgradeable-v4.9.0/contracts/",
"solidity-stringutils/=lib/openzeppelin-foundry-upgrades/lib/solidity-stringutils/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"withdrawor","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawal","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_APETH","outputs":[{"internalType":"contract IAPETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_depositor","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"depositor","type":"address"}],"name":"deposits","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintAPEthBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_APEth","type":"address"}],"name":"updateAPEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561000f575f80fd5b5060405161084238038061084283398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b61074d806100f55f395ff3fe608060405260043610610089575f3560e01c8063dfbc3fc211610058578063dfbc3fc21461011e578063f17417f91461013d578063f2fde38b1461015c578063f340fa011461017b578063fc7e286d1461018e57610099565b80633ccfd60b146100a2578063636a2a12146100b6578063715018a6146100d55780638da5cb5b146100e957610099565b3661009957610097336101c7565b005b610097336101c7565b3480156100ad575f80fd5b50610097610237565b3480156100c1575f80fd5b506100976100d03660046105d8565b6102dc565b3480156100e0575f80fd5b50610097610306565b3480156100f4575f80fd5b505f546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b348015610129575f80fd5b50600154610101906001600160a01b031681565b348015610148575f80fd5b50610097610157366004610605565b610319565b348015610167575f80fd5b506100976101763660046105d8565b6103ce565b6100976101893660046105d8565b6101c7565b348015610199575f80fd5b506101b96101a83660046105d8565b60026020525f908152604090205481565b604051908152602001610115565b6001600160a01b0381165f90815260026020526040812080543492906101ee908490610688565b9091555050604080516001600160a01b03831681523460208201527fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c910160405180910390a150565b335f81815260026020526040808220805490839055905190929083908381818185875af1925050503d805f8114610289576040519150601f19603f3d011682016040523d82523d5f602084013e61028e565b606091505b505090508061029f5761029f6106a1565b60408051338152602081018490527f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65910160405180910390a15050565b6102e461040b565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61030e61040b565b6103175f610437565b565b61032161040b565b5f5b818110156103c9576001546001600160a01b03166103885760405162461bcd60e51b815260206004820152601e60248201527f415045746820636f6e74726163742061646472657373206e6f7420736574000060448201526064015b60405180910390fd5b6103b783838381811061039d5761039d6106b5565b90506020020160208101906103b291906105d8565b610486565b806103c1816106c9565b915050610323565b505050565b6103d661040b565b6001600160a01b0381166103ff57604051631e4fbdf760e01b81525f600482015260240161037f565b61040881610437565b50565b5f546001600160a01b031633146103175760405163118cdaa760e01b815233600482015260240161037f565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038082165f9081526002602090815260408083208054908490556001548251631249c58b60e01b8152925191951692631249c58b92869260048083019392829003018185885af11580156104e3573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061050891906106e1565b60015460405163a9059cbb60e01b81526001600160a01b038681166004830152602482018490529293505f929091169063a9059cbb906044016020604051808303815f875af115801561055d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061058191906106f8565b905080610590576105906106a1565b604080516001600160a01b0386168152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150505050565b5f602082840312156105e8575f80fd5b81356001600160a01b03811681146105fe575f80fd5b9392505050565b5f8060208385031215610616575f80fd5b823567ffffffffffffffff8082111561062d575f80fd5b818501915085601f830112610640575f80fd5b81358181111561064e575f80fd5b8660208260051b8501011115610662575f80fd5b60209290920196919550909350505050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561069b5761069b610674565b92915050565b634e487b7160e01b5f52600160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f600182016106da576106da610674565b5060010190565b5f602082840312156106f1575f80fd5b5051919050565b5f60208284031215610708575f80fd5b815180151581146105fe575f80fdfea264697066735822122056cbff2b544126a88d781278cd19405c42fd98c111d2402c78d3086b52cd37f064736f6c63430008140033000000000000000000000000b745c92b56269d7a9ee3011f1fb07e902db7a60d
Deployed Bytecode
0x608060405260043610610089575f3560e01c8063dfbc3fc211610058578063dfbc3fc21461011e578063f17417f91461013d578063f2fde38b1461015c578063f340fa011461017b578063fc7e286d1461018e57610099565b80633ccfd60b146100a2578063636a2a12146100b6578063715018a6146100d55780638da5cb5b146100e957610099565b3661009957610097336101c7565b005b610097336101c7565b3480156100ad575f80fd5b50610097610237565b3480156100c1575f80fd5b506100976100d03660046105d8565b6102dc565b3480156100e0575f80fd5b50610097610306565b3480156100f4575f80fd5b505f546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b348015610129575f80fd5b50600154610101906001600160a01b031681565b348015610148575f80fd5b50610097610157366004610605565b610319565b348015610167575f80fd5b506100976101763660046105d8565b6103ce565b6100976101893660046105d8565b6101c7565b348015610199575f80fd5b506101b96101a83660046105d8565b60026020525f908152604090205481565b604051908152602001610115565b6001600160a01b0381165f90815260026020526040812080543492906101ee908490610688565b9091555050604080516001600160a01b03831681523460208201527fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c910160405180910390a150565b335f81815260026020526040808220805490839055905190929083908381818185875af1925050503d805f8114610289576040519150601f19603f3d011682016040523d82523d5f602084013e61028e565b606091505b505090508061029f5761029f6106a1565b60408051338152602081018490527f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65910160405180910390a15050565b6102e461040b565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61030e61040b565b6103175f610437565b565b61032161040b565b5f5b818110156103c9576001546001600160a01b03166103885760405162461bcd60e51b815260206004820152601e60248201527f415045746820636f6e74726163742061646472657373206e6f7420736574000060448201526064015b60405180910390fd5b6103b783838381811061039d5761039d6106b5565b90506020020160208101906103b291906105d8565b610486565b806103c1816106c9565b915050610323565b505050565b6103d661040b565b6001600160a01b0381166103ff57604051631e4fbdf760e01b81525f600482015260240161037f565b61040881610437565b50565b5f546001600160a01b031633146103175760405163118cdaa760e01b815233600482015260240161037f565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038082165f9081526002602090815260408083208054908490556001548251631249c58b60e01b8152925191951692631249c58b92869260048083019392829003018185885af11580156104e3573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061050891906106e1565b60015460405163a9059cbb60e01b81526001600160a01b038681166004830152602482018490529293505f929091169063a9059cbb906044016020604051808303815f875af115801561055d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061058191906106f8565b905080610590576105906106a1565b604080516001600160a01b0386168152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150505050565b5f602082840312156105e8575f80fd5b81356001600160a01b03811681146105fe575f80fd5b9392505050565b5f8060208385031215610616575f80fd5b823567ffffffffffffffff8082111561062d575f80fd5b818501915085601f830112610640575f80fd5b81358181111561064e575f80fd5b8660208260051b8501011115610662575f80fd5b60209290920196919550909350505050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561069b5761069b610674565b92915050565b634e487b7160e01b5f52600160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f600182016106da576106da610674565b5060010190565b5f602082840312156106f1575f80fd5b5051919050565b5f60208284031215610708575f80fd5b815180151581146105fe575f80fdfea264697066735822122056cbff2b544126a88d781278cd19405c42fd98c111d2402c78d3086b52cd37f064736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b745c92b56269d7a9ee3011f1fb07e902db7a60d
-----Decoded View---------------
Arg [0] : _owner (address): 0xb745C92b56269d7a9ee3011f1fb07E902dB7a60d
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b745c92b56269d7a9ee3011f1fb07e902db7a60d
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.