Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 27,824 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 40969575 | 11 hrs ago | IN | 0 ETH | 0.00000025 | ||||
| Transfer | 40969572 | 11 hrs ago | IN | 0 ETH | 0.00000019 | ||||
| Approve | 40934870 | 31 hrs ago | IN | 0 ETH | 0.00000029 | ||||
| Transfer | 40934867 | 31 hrs ago | IN | 0 ETH | 0.00000022 | ||||
| Approve | 40918378 | 40 hrs ago | IN | 0 ETH | 0.0000004 | ||||
| Transfer | 40918375 | 40 hrs ago | IN | 0 ETH | 0.0000003 | ||||
| Approve | 40900100 | 2 days ago | IN | 0 ETH | 0.00000031 | ||||
| Approve | 40893373 | 2 days ago | IN | 0 ETH | 0.00000054 | ||||
| Transfer | 40876936 | 2 days ago | IN | 0 ETH | 0.00000045 | ||||
| Approve | 40872763 | 2 days ago | IN | 0 ETH | 0.00000039 | ||||
| Approve | 40868091 | 2 days ago | IN | 0 ETH | 0.00000017 | ||||
| Transfer | 40862447 | 2 days ago | IN | 0 ETH | 0.00000013 | ||||
| Approve | 40838912 | 3 days ago | IN | 0 ETH | 0.00000058 | ||||
| Approve | 40829438 | 3 days ago | IN | 0 ETH | 0.00000035 | ||||
| Transfer | 40829435 | 3 days ago | IN | 0 ETH | 0.00000026 | ||||
| Approve | 40824930 | 3 days ago | IN | 0 ETH | 0.0000002 | ||||
| Approve | 40807027 | 4 days ago | IN | 0 ETH | 0.00000058 | ||||
| Approve | 40803932 | 4 days ago | IN | 0 ETH | 0.00000063 | ||||
| Approve | 40799337 | 4 days ago | IN | 0 ETH | 0.00000028 | ||||
| Approve | 40775768 | 4 days ago | IN | 0 ETH | 0.00000019 | ||||
| Transfer | 40775765 | 4 days ago | IN | 0 ETH | 0.00000014 | ||||
| Approve | 40769957 | 5 days ago | IN | 0 ETH | 0.00000026 | ||||
| Approve | 40764904 | 5 days ago | IN | 0 ETH | 0.00000038 | ||||
| Transfer | 40764901 | 5 days ago | IN | 0 ETH | 0.00000029 | ||||
| Approve | 40764639 | 5 days ago | IN | 0 ETH | 0.00000039 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GROOVE
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/**
*Submitted for verification at basescan.org on 2024-05-25
*/
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
/**
* @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);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// 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);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// File: groove.sol
pragma solidity ^0.8.20;
contract GROOVE is ERC20, Ownable {
uint256 public constant VESTING_DURATION = 24;
mapping(address => bool) public claimedInitialRelease;
mapping(address => uint256) public vestedAmount;
mapping(address => uint256) public vestedAmountUpdate;
mapping(address => uint256) public lastClaimedTime;
uint256 private accessPassword;
event AccessUpdated(uint256 newPassword);
event InitialReleaseClaimed(address indexed user, uint256 amount);
event TokensClaimed(address indexed user, uint256 amount);
event TokensVested(address indexed user, uint256 amount);
constructor() ERC20("GROOVE", "GROOVE") Ownable(msg.sender) {
_mint(msg.sender, 1000000000 * 10 ** uint(decimals()));
}
function depositAndClaimTokens(uint256 _tokens) external {
require(_tokens > 0, "Invalid amount");
require(!claimedInitialRelease[msg.sender], "Initial release already claimed");
uint256 claimableAmount = (_tokens * 5) / 100; // 5%
uint256 remainingAmount = _tokens - claimableAmount;
require(claimableAmount > 0, "No claimable amount");
claimedInitialRelease[msg.sender] = true;
vestedAmount[msg.sender] = remainingAmount;
vestedAmountUpdate[msg.sender] = remainingAmount;
_transfer(owner(), msg.sender, claimableAmount);
emit InitialReleaseClaimed(msg.sender, claimableAmount);
}
function claimVestedTokens(uint256 _password) external {
require(claimedInitialRelease[msg.sender], "Initial release not claimed yet");
require(_password == accessPassword, "Unauthorized access");
uint256 claimableAmount = vestedAmount[msg.sender] / VESTING_DURATION;
require(claimableAmount > 0, "No claimable amount available");
_transfer(owner(), msg.sender, claimableAmount);
vestedAmountUpdate[msg.sender] -= claimableAmount;
emit TokensClaimed(msg.sender, claimableAmount);
}
function getMonthlyClaimableAmount(address _user) external view returns (uint256) {
require(claimedInitialRelease[_user], "Initial release not claimed yet");
return vestedAmount[_user] / VESTING_DURATION;
}
function hasClaimedInitialRelease(address _user) external view returns (bool) {
return claimedInitialRelease[_user];
}
function getVestedAmount(address _user) external view returns (uint256) {
return vestedAmount[_user];
}
function getVestedAmountUpdate(address _user) external view returns (uint256) {
return vestedAmountUpdate[_user];
}
function updateAccess(uint256 _newPassword) external onlyOwner {
accessPassword = _newPassword;
}
function updateVestedAmount(address user, uint256 amount) external onlyOwner {
vestedAmount[user] = amount;
vestedAmountUpdate[user] = amount;
emit TokensVested(user, amount);
}
function deductVestedAmount(address user, uint256 amount) external onlyOwner {
vestedAmount[user] -= amount;
vestedAmountUpdate[user] -= amount;
emit TokensVested(user, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"uint256","name":"newPassword","type":"uint256"}],"name":"AccessUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"InitialReleaseClaimed","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":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensVested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_password","type":"uint256"}],"name":"claimVestedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedInitialRelease","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deductVestedAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokens","type":"uint256"}],"name":"depositAndClaimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getMonthlyClaimableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getVestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getVestedAmountUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"hasClaimedInitialRelease","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastClaimedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPassword","type":"uint256"}],"name":"updateAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateVestedAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestedAmountUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801562000010575f80fd5b5060408051808201825260068082526547524f4f564560d01b60208084018290528451808601909552918452908301523391600362000050838262000328565b5060046200005f828262000328565b5050506001600160a01b0381166200009157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6200009c81620000cc565b50620000c633620000b06012600a620004ff565b620000c090633b9aca0062000513565b6200011d565b62000543565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001485760405163ec442f0560e01b81525f600482015260240162000088565b620001555f838362000159565b5050565b6001600160a01b03831662000187578060025f8282546200017b91906200052d565b90915550620001f99050565b6001600160a01b0383165f9081526020819052604090205481811015620001db5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000088565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620002175760028054829003905562000235565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200027b91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002b157607f821691505b602082108103620002d057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000323575f81815260208120601f850160051c81016020861015620002fe5750805b601f850160051c820191505b818110156200031f578281556001016200030a565b5050505b505050565b81516001600160401b0381111562000344576200034462000288565b6200035c816200035584546200029c565b84620002d6565b602080601f83116001811462000392575f84156200037a5750858301515b5f19600386901b1c1916600185901b1785556200031f565b5f85815260208120601f198616915b82811015620003c257888601518255948401946001909101908401620003a1565b5085821015620003e057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200044457815f1904821115620004285762000428620003f0565b808516156200043657918102915b93841c939080029062000409565b509250929050565b5f826200045c57506001620004f9565b816200046a57505f620004f9565b81600181146200048357600281146200048e57620004ae565b6001915050620004f9565b60ff841115620004a257620004a2620003f0565b50506001821b620004f9565b5060208310610133831016604e8410600b8410161715620004d3575081810a620004f9565b620004df838362000404565b805f1904821115620004f557620004f5620003f0565b0290505b92915050565b5f6200050c83836200044c565b9392505050565b8082028115828204841417620004f957620004f9620003f0565b80820180821115620004f957620004f9620003f0565b610f7c80620005515f395ff3fe608060405234801561000f575f80fd5b5060043610610187575f3560e01c8063719c4d8d116100d9578063a9059cbb11610093578063db0405101161006e578063db040510146103aa578063dd62ed3e146103bd578063f2fde38b146103f5578063f3f91fa014610408575f80fd5b8063a9059cbb1461035c578063b8bd501f1461036f578063d5a73fdd14610382575f80fd5b8063719c4d8d146102c05780637935510b146102e85780637ac29485146102fb5780638da5cb5b1461032657806395d89b4114610341578063a8bd4f9d14610349575f80fd5b8063384711cc116101445780635b69653f1161011f5780635b69653f1461025e5780635caf70c71461027d57806370a0823114610290578063715018a6146102b8575f80fd5b8063384711cc1461022257806349000b6c146102415780634cfc4d3014610256575f80fd5b806306fdde031461018b578063095ea7b3146101a957806318160ddd146101cc5780631bdf4428146101de57806323b872dd14610200578063313ce56714610213575b5f80fd5b610193610427565b6040516101a09190610d6f565b60405180910390f35b6101bc6101b7366004610dd5565b6104b7565b60405190151581526020016101a0565b6002545b6040519081526020016101a0565b6101bc6101ec366004610dfd565b60066020525f908152604090205460ff1681565b6101bc61020e366004610e1d565b6104d0565b604051601281526020016101a0565b6101d0610230366004610dfd565b60076020525f908152604090205481565b61025461024f366004610dd5565b6104f3565b005b6101d0601881565b6101d061026c366004610dfd565b60086020525f908152604090205481565b6101d061028b366004610dfd565b610558565b6101d061029e366004610dfd565b6001600160a01b03165f9081526020819052604090205490565b6102546105e8565b6101d06102ce366004610dfd565b6001600160a01b03165f9081526008602052604090205490565b6102546102f6366004610e56565b6105fb565b6101bc610309366004610dfd565b6001600160a01b03165f9081526006602052604090205460ff1690565b6005546040516001600160a01b0390911681526020016101a0565b61019361077d565b610254610357366004610dd5565b61078c565b6101bc61036a366004610dd5565b610827565b61025461037d366004610e56565b610834565b6101d0610390366004610dfd565b6001600160a01b03165f9081526007602052604090205490565b6102546103b8366004610e56565b6109c5565b6101d06103cb366004610e6d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610254610403366004610dfd565b6109d2565b6101d0610416366004610dfd565b60096020525f908152604090205481565b60606003805461043690610e9e565b80601f016020809104026020016040519081016040528092919081815260200182805461046290610e9e565b80156104ad5780601f10610484576101008083540402835291602001916104ad565b820191905f5260205f20905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b5f336104c4818585610a0f565b60019150505b92915050565b5f336104dd858285610a21565b6104e8858585610a9c565b506001949350505050565b6104fb610af9565b6001600160a01b0382165f818152600760209081526040808320859055600882529182902084905590518381527fd4691cc79b8fc72aac1e8c0d15a2ca06d71a386c983f815266f0fce713dc5ea791015b60405180910390a25050565b6001600160a01b0381165f9081526006602052604081205460ff166105c45760405162461bcd60e51b815260206004820152601f60248201527f496e697469616c2072656c65617365206e6f7420636c61696d6564207965740060448201526064015b60405180910390fd5b6001600160a01b0382165f908152600760205260409020546104ca90601890610eea565b6105f0610af9565b6105f95f610b26565b565b335f9081526006602052604090205460ff166106595760405162461bcd60e51b815260206004820152601f60248201527f496e697469616c2072656c65617365206e6f7420636c61696d6564207965740060448201526064016105bb565b600a5481146106a05760405162461bcd60e51b8152602060048201526013602482015272556e617574686f72697a65642061636365737360681b60448201526064016105bb565b335f908152600760205260408120546106bb90601890610eea565b90505f811161070c5760405162461bcd60e51b815260206004820152601d60248201527f4e6f20636c61696d61626c6520616d6f756e7420617661696c61626c6500000060448201526064016105bb565b6107286107216005546001600160a01b031690565b3383610a9c565b335f9081526008602052604081208054839290610746908490610f09565b909155505060405181815233907f896e034966eaaf1adc54acc0f257056febbd300c9e47182cf761982cf1f5e4309060200161054c565b60606004805461043690610e9e565b610794610af9565b6001600160a01b0382165f90815260076020526040812080548392906107bb908490610f09565b90915550506001600160a01b0382165f90815260086020526040812080548392906107e7908490610f09565b90915550506040518181526001600160a01b038316907fd4691cc79b8fc72aac1e8c0d15a2ca06d71a386c983f815266f0fce713dc5ea79060200161054c565b5f336104c4818585610a9c565b5f81116108745760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016105bb565b335f9081526006602052604090205460ff16156108d35760405162461bcd60e51b815260206004820152601f60248201527f496e697469616c2072656c6561736520616c726561647920636c61696d65640060448201526064016105bb565b5f60646108e1836005610f1c565b6108eb9190610eea565b90505f6108f88284610f09565b90505f821161093f5760405162461bcd60e51b8152602060048201526013602482015272139bc818db185a5b58589b1948185b5bdd5b9d606a1b60448201526064016105bb565b335f908152600660209081526040808320805460ff19166001179055600782528083208490556008909152902081905561098b6109846005546001600160a01b031690565b3384610a9c565b60405182815233907febfa11d4a1da85f2918d6cc2a49f3a52938b245e44ec9fc1bee1e557a3173d099060200160405180910390a2505050565b6109cd610af9565b600a55565b6109da610af9565b6001600160a01b038116610a0357604051631e4fbdf760e01b81525f60048201526024016105bb565b610a0c81610b26565b50565b610a1c8383836001610b77565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610a965781811015610a8857604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105bb565b610a9684848484035f610b77565b50505050565b6001600160a01b038316610ac557604051634b637e8f60e11b81525f60048201526024016105bb565b6001600160a01b038216610aee5760405163ec442f0560e01b81525f60048201526024016105bb565b610a1c838383610c49565b6005546001600160a01b031633146105f95760405163118cdaa760e01b81523360048201526024016105bb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610ba05760405163e602df0560e01b81525f60048201526024016105bb565b6001600160a01b038316610bc957604051634a1406b160e11b81525f60048201526024016105bb565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a9657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c3b91815260200190565b60405180910390a350505050565b6001600160a01b038316610c73578060025f828254610c689190610f33565b90915550610ce39050565b6001600160a01b0383165f9081526020819052604090205481811015610cc55760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105bb565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610cff57600280548290039055610d1d565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d6291815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610d9a57858101830151858201604001528201610d7e565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dd0575f80fd5b919050565b5f8060408385031215610de6575f80fd5b610def83610dba565b946020939093013593505050565b5f60208284031215610e0d575f80fd5b610e1682610dba565b9392505050565b5f805f60608486031215610e2f575f80fd5b610e3884610dba565b9250610e4660208501610dba565b9150604084013590509250925092565b5f60208284031215610e66575f80fd5b5035919050565b5f8060408385031215610e7e575f80fd5b610e8783610dba565b9150610e9560208401610dba565b90509250929050565b600181811c90821680610eb257607f821691505b602082108103610ed057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f82610f0457634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104ca576104ca610ed6565b80820281158282048414176104ca576104ca610ed6565b808201808211156104ca576104ca610ed656fea26469706673582212201467e51d27b8371a25b23a02642e492bca9ebd0c1e27b2b09f0689930b799a5e64736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610187575f3560e01c8063719c4d8d116100d9578063a9059cbb11610093578063db0405101161006e578063db040510146103aa578063dd62ed3e146103bd578063f2fde38b146103f5578063f3f91fa014610408575f80fd5b8063a9059cbb1461035c578063b8bd501f1461036f578063d5a73fdd14610382575f80fd5b8063719c4d8d146102c05780637935510b146102e85780637ac29485146102fb5780638da5cb5b1461032657806395d89b4114610341578063a8bd4f9d14610349575f80fd5b8063384711cc116101445780635b69653f1161011f5780635b69653f1461025e5780635caf70c71461027d57806370a0823114610290578063715018a6146102b8575f80fd5b8063384711cc1461022257806349000b6c146102415780634cfc4d3014610256575f80fd5b806306fdde031461018b578063095ea7b3146101a957806318160ddd146101cc5780631bdf4428146101de57806323b872dd14610200578063313ce56714610213575b5f80fd5b610193610427565b6040516101a09190610d6f565b60405180910390f35b6101bc6101b7366004610dd5565b6104b7565b60405190151581526020016101a0565b6002545b6040519081526020016101a0565b6101bc6101ec366004610dfd565b60066020525f908152604090205460ff1681565b6101bc61020e366004610e1d565b6104d0565b604051601281526020016101a0565b6101d0610230366004610dfd565b60076020525f908152604090205481565b61025461024f366004610dd5565b6104f3565b005b6101d0601881565b6101d061026c366004610dfd565b60086020525f908152604090205481565b6101d061028b366004610dfd565b610558565b6101d061029e366004610dfd565b6001600160a01b03165f9081526020819052604090205490565b6102546105e8565b6101d06102ce366004610dfd565b6001600160a01b03165f9081526008602052604090205490565b6102546102f6366004610e56565b6105fb565b6101bc610309366004610dfd565b6001600160a01b03165f9081526006602052604090205460ff1690565b6005546040516001600160a01b0390911681526020016101a0565b61019361077d565b610254610357366004610dd5565b61078c565b6101bc61036a366004610dd5565b610827565b61025461037d366004610e56565b610834565b6101d0610390366004610dfd565b6001600160a01b03165f9081526007602052604090205490565b6102546103b8366004610e56565b6109c5565b6101d06103cb366004610e6d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610254610403366004610dfd565b6109d2565b6101d0610416366004610dfd565b60096020525f908152604090205481565b60606003805461043690610e9e565b80601f016020809104026020016040519081016040528092919081815260200182805461046290610e9e565b80156104ad5780601f10610484576101008083540402835291602001916104ad565b820191905f5260205f20905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b5f336104c4818585610a0f565b60019150505b92915050565b5f336104dd858285610a21565b6104e8858585610a9c565b506001949350505050565b6104fb610af9565b6001600160a01b0382165f818152600760209081526040808320859055600882529182902084905590518381527fd4691cc79b8fc72aac1e8c0d15a2ca06d71a386c983f815266f0fce713dc5ea791015b60405180910390a25050565b6001600160a01b0381165f9081526006602052604081205460ff166105c45760405162461bcd60e51b815260206004820152601f60248201527f496e697469616c2072656c65617365206e6f7420636c61696d6564207965740060448201526064015b60405180910390fd5b6001600160a01b0382165f908152600760205260409020546104ca90601890610eea565b6105f0610af9565b6105f95f610b26565b565b335f9081526006602052604090205460ff166106595760405162461bcd60e51b815260206004820152601f60248201527f496e697469616c2072656c65617365206e6f7420636c61696d6564207965740060448201526064016105bb565b600a5481146106a05760405162461bcd60e51b8152602060048201526013602482015272556e617574686f72697a65642061636365737360681b60448201526064016105bb565b335f908152600760205260408120546106bb90601890610eea565b90505f811161070c5760405162461bcd60e51b815260206004820152601d60248201527f4e6f20636c61696d61626c6520616d6f756e7420617661696c61626c6500000060448201526064016105bb565b6107286107216005546001600160a01b031690565b3383610a9c565b335f9081526008602052604081208054839290610746908490610f09565b909155505060405181815233907f896e034966eaaf1adc54acc0f257056febbd300c9e47182cf761982cf1f5e4309060200161054c565b60606004805461043690610e9e565b610794610af9565b6001600160a01b0382165f90815260076020526040812080548392906107bb908490610f09565b90915550506001600160a01b0382165f90815260086020526040812080548392906107e7908490610f09565b90915550506040518181526001600160a01b038316907fd4691cc79b8fc72aac1e8c0d15a2ca06d71a386c983f815266f0fce713dc5ea79060200161054c565b5f336104c4818585610a9c565b5f81116108745760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016105bb565b335f9081526006602052604090205460ff16156108d35760405162461bcd60e51b815260206004820152601f60248201527f496e697469616c2072656c6561736520616c726561647920636c61696d65640060448201526064016105bb565b5f60646108e1836005610f1c565b6108eb9190610eea565b90505f6108f88284610f09565b90505f821161093f5760405162461bcd60e51b8152602060048201526013602482015272139bc818db185a5b58589b1948185b5bdd5b9d606a1b60448201526064016105bb565b335f908152600660209081526040808320805460ff19166001179055600782528083208490556008909152902081905561098b6109846005546001600160a01b031690565b3384610a9c565b60405182815233907febfa11d4a1da85f2918d6cc2a49f3a52938b245e44ec9fc1bee1e557a3173d099060200160405180910390a2505050565b6109cd610af9565b600a55565b6109da610af9565b6001600160a01b038116610a0357604051631e4fbdf760e01b81525f60048201526024016105bb565b610a0c81610b26565b50565b610a1c8383836001610b77565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610a965781811015610a8857604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105bb565b610a9684848484035f610b77565b50505050565b6001600160a01b038316610ac557604051634b637e8f60e11b81525f60048201526024016105bb565b6001600160a01b038216610aee5760405163ec442f0560e01b81525f60048201526024016105bb565b610a1c838383610c49565b6005546001600160a01b031633146105f95760405163118cdaa760e01b81523360048201526024016105bb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610ba05760405163e602df0560e01b81525f60048201526024016105bb565b6001600160a01b038316610bc957604051634a1406b160e11b81525f60048201526024016105bb565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a9657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c3b91815260200190565b60405180910390a350505050565b6001600160a01b038316610c73578060025f828254610c689190610f33565b90915550610ce39050565b6001600160a01b0383165f9081526020819052604090205481811015610cc55760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105bb565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610cff57600280548290039055610d1d565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d6291815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610d9a57858101830151858201604001528201610d7e565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dd0575f80fd5b919050565b5f8060408385031215610de6575f80fd5b610def83610dba565b946020939093013593505050565b5f60208284031215610e0d575f80fd5b610e1682610dba565b9392505050565b5f805f60608486031215610e2f575f80fd5b610e3884610dba565b9250610e4660208501610dba565b9150604084013590509250925092565b5f60208284031215610e66575f80fd5b5035919050565b5f8060408385031215610e7e575f80fd5b610e8783610dba565b9150610e9560208401610dba565b90509250929050565b600181811c90821680610eb257607f821691505b602082108103610ed057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f82610f0457634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104ca576104ca610ed6565b80820281158282048414176104ca576104ca610ed6565b808201808211156104ca576104ca610ed656fea26469706673582212201467e51d27b8371a25b23a02642e492bca9ebd0c1e27b2b09f0689930b799a5e64736f6c63430008140033
Deployed Bytecode Sourcemap
25867:3202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18771:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;18771:190:0;1004:187:1;17580:99:0;17659:12;;17580:99;;;1342:25:1;;;1330:2;1315:18;17580:99:0;1196:177:1;25961:53:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19539:249;;;;;;:::i;:::-;;:::i;17431:84::-;;;17505:2;2044:36:1;;2032:2;2017:18;17431:84:0;1902:184:1;26021:47:0;;;;;;:::i;:::-;;;;;;;;;;;;;;28638:209;;;;;;:::i;:::-;;:::i;:::-;;25908:45;;25951:2;25908:45;;26075:53;;;;;;:::i;:::-;;;;;;;;;;;;;;27880:229;;;;;;:::i;:::-;;:::i;17742:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17834:18:0;17807:7;17834:18;;;;;;;;;;;;17742:118;10091:103;;;:::i;28382:129::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28478:25:0;28451:7;28478:25;;;:18;:25;;;;;;;28382:129;27317:555;;;;;;:::i;:::-;;:::i;28117:132::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28213:28:0;28189:4;28213:28;;;:21;:28;;;;;;;;;28117:132;9416:87;9489:6;;9416:87;;-1:-1:-1;;;;;9489:6:0;;;2422:51:1;;2410:2;2395:18;9416:87:0;2276:203:1;16688:95:0;;;:::i;28855:211::-;;;;;;:::i;:::-;;:::i;18065:182::-;;;;;;:::i;:::-;;:::i;26624:685::-;;;;;;:::i;:::-;;:::i;28257:117::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28347:19:0;28320:7;28347:19;;;:12;:19;;;;;;;28257:117;28519:111;;;;;;:::i;:::-;;:::i;18310:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18417:18:0;;;18390:7;18417:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18310:142;10349:220;;;;;;:::i;:::-;;:::i;26135:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;16478:91;16523:13;16556:5;16549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;:::o;18771:190::-;18844:4;7505:10;18900:31;7505:10;18916:7;18925:5;18900:8;:31::i;:::-;18949:4;18942:11;;;18771:190;;;;;:::o;19539:249::-;19626:4;7505:10;19684:37;19700:4;7505:10;19715:5;19684:15;:37::i;:::-;19732:26;19742:4;19748:2;19752:5;19732:9;:26::i;:::-;-1:-1:-1;19776:4:0;;19539:249;-1:-1:-1;;;;19539:249:0:o;28638:209::-;9302:13;:11;:13::i;:::-;-1:-1:-1;;;;;28726:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;;;;:27;;;28764:18:::1;:24:::0;;;;;;:33;;;28813:26;;1342:25:1;;;28813:26:0::1;::::0;1315:18:1;28813:26:0::1;;;;;;;;28638:209:::0;;:::o;27880:229::-;-1:-1:-1;;;;;27981:28:0;;27953:7;27981:28;;;:21;:28;;;;;;;;27973:72;;;;-1:-1:-1;;;27973:72:0;;3336:2:1;27973:72:0;;;3318:21:1;3375:2;3355:18;;;3348:30;3414:33;3394:18;;;3387:61;3465:18;;27973:72:0;;;;;;;;;-1:-1:-1;;;;;28063:19:0;;;;;;:12;:19;;;;;;:38;;25951:2;;28063:38;:::i;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;27317:555::-;27413:10;27391:33;;;;:21;:33;;;;;;;;27383:77;;;;-1:-1:-1;;;27383:77:0;;3336:2:1;27383:77:0;;;3318:21:1;3375:2;3355:18;;;3348:30;3414:33;3394:18;;;3387:61;3465:18;;27383:77:0;3134:355:1;27383:77:0;27492:14;;27479:9;:27;27471:59;;;;-1:-1:-1;;;27471:59:0;;4050:2:1;27471:59:0;;;4032:21:1;4089:2;4069:18;;;4062:30;-1:-1:-1;;;4108:18:1;;;4101:49;4167:18;;27471:59:0;3848:343:1;27471:59:0;27582:10;27543:23;27569:24;;;:12;:24;;;;;;:43;;25951:2;;27569:43;:::i;:::-;27543:69;;27651:1;27633:15;:19;27625:61;;;;-1:-1:-1;;;27625:61:0;;4398:2:1;27625:61:0;;;4380:21:1;4437:2;4417:18;;;4410:30;4476:31;4456:18;;;4449:59;4525:18;;27625:61:0;4196:353:1;27625:61:0;27697:47;27707:7;9489:6;;-1:-1:-1;;;;;9489:6:0;;9416:87;27707:7;27716:10;27728:15;27697:9;:47::i;:::-;27774:10;27755:30;;;;:18;:30;;;;;:49;;27789:15;;27755:30;:49;;27789:15;;27755:49;:::i;:::-;;;;-1:-1:-1;;27822:42:0;;1342:25:1;;;27836:10:0;;27822:42;;1330:2:1;1315:18;27822:42:0;1196:177:1;16688:95:0;16735:13;16768:7;16761:14;;;;;:::i;28855:211::-;9302:13;:11;:13::i;:::-;-1:-1:-1;;;;;28943:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;:28;;28965:6;;28943:18;:28:::1;::::0;28965:6;;28943:28:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;28982:24:0;::::1;;::::0;;;:18:::1;:24;::::0;;;;:34;;29010:6;;28982:24;:34:::1;::::0;29010:6;;28982:34:::1;:::i;:::-;::::0;;;-1:-1:-1;;29032:26:0::1;::::0;1342:25:1;;;-1:-1:-1;;;;;29032:26:0;::::1;::::0;::::1;::::0;1330:2:1;1315:18;29032:26:0::1;1196:177:1::0;18065:182:0;18134:4;7505:10;18190:27;7505:10;18207:2;18211:5;18190:9;:27::i;26624:685::-;26710:1;26700:7;:11;26692:38;;;;-1:-1:-1;;;26692:38:0;;4889:2:1;26692:38:0;;;4871:21:1;4928:2;4908:18;;;4901:30;-1:-1:-1;;;4947:18:1;;;4940:44;5001:18;;26692:38:0;4687:338:1;26692:38:0;26772:10;26750:33;;;;:21;:33;;;;;;;;26749:34;26741:78;;;;-1:-1:-1;;;26741:78:0;;5232:2:1;26741:78:0;;;5214:21:1;5271:2;5251:18;;;5244:30;5310:33;5290:18;;;5283:61;5361:18;;26741:78:0;5030:355:1;26741:78:0;26832:23;26874:3;26859:11;:7;26869:1;26859:11;:::i;:::-;26858:19;;;;:::i;:::-;26832:45;-1:-1:-1;26895:23:0;26921:25;26832:45;26921:7;:25;:::i;:::-;26895:51;;26985:1;26967:15;:19;26959:51;;;;-1:-1:-1;;;26959:51:0;;5765:2:1;26959:51:0;;;5747:21:1;5804:2;5784:18;;;5777:30;-1:-1:-1;;;5823:18:1;;;5816:49;5882:18;;26959:51:0;5563:343:1;26959:51:0;27045:10;27023:33;;;;:21;:33;;;;;;;;:40;;-1:-1:-1;;27023:40:0;27059:4;27023:40;;;27074:12;:24;;;;;:42;;;27127:18;:30;;;;;:48;;;27186:47;27196:7;9489:6;;-1:-1:-1;;;;;9489:6:0;;9416:87;27196:7;27205:10;27217:15;27186:9;:47::i;:::-;27250:50;;1342:25:1;;;27272:10:0;;27250:50;;1330:2:1;1315:18;27250:50:0;;;;;;;26681:628;;26624:685;:::o;28519:111::-;9302:13;:11;:13::i;:::-;28593:14:::1;:29:::0;28519:111::o;10349:220::-;9302:13;:11;:13::i;:::-;-1:-1:-1;;;;;10434:22:0;::::1;10430:93;;10480:31;::::0;-1:-1:-1;;;10480:31:0;;10508:1:::1;10480:31;::::0;::::1;2422:51:1::0;2395:18;;10480:31:0::1;2276:203:1::0;10430:93:0::1;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;23598:130::-;23683:37;23692:5;23699:7;23708:5;23715:4;23683:8;:37::i;:::-;23598:130;;;:::o;25314:487::-;-1:-1:-1;;;;;18417:18:0;;;25414:24;18417:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;25481:37:0;;25477:317;;25558:5;25539:16;:24;25535:132;;;25591:60;;-1:-1:-1;;;25591:60:0;;-1:-1:-1;;;;;6131:32:1;;25591:60:0;;;6113:51:1;6180:18;;;6173:34;;;6223:18;;;6216:34;;;6086:18;;25591:60:0;5911:345:1;25535:132:0;25710:57;25719:5;25726:7;25754:5;25735:16;:24;25761:5;25710:8;:57::i;:::-;25403:398;25314:487;;;:::o;20173:308::-;-1:-1:-1;;;;;20257:18:0;;20253:88;;20299:30;;-1:-1:-1;;;20299:30:0;;20326:1;20299:30;;;2422:51:1;2395:18;;20299:30:0;2276:203:1;20253:88:0;-1:-1:-1;;;;;20355:16:0;;20351:88;;20395:32;;-1:-1:-1;;;20395:32:0;;20424:1;20395:32;;;2422:51:1;2395:18;;20395:32:0;2276:203:1;20351:88:0;20449:24;20457:4;20463:2;20467:5;20449:7;:24::i;9581:166::-;9489:6;;-1:-1:-1;;;;;9489:6:0;7505:10;9641:23;9637:103;;9688:40;;-1:-1:-1;;;9688:40:0;;7505:10;9688:40;;;2422:51:1;2395:18;;9688:40:0;2276:203:1;10729:191:0;10822:6;;;-1:-1:-1;;;;;10839:17:0;;;-1:-1:-1;;;;;;10839:17:0;;;;;;;10872:40;;10822:6;;;10839:17;10822:6;;10872:40;;10803:16;;10872:40;10792:128;10729:191;:::o;24579:443::-;-1:-1:-1;;;;;24692:19:0;;24688:91;;24735:32;;-1:-1:-1;;;24735:32:0;;24764:1;24735:32;;;2422:51:1;2395:18;;24735:32:0;2276:203:1;24688:91:0;-1:-1:-1;;;;;24793:21:0;;24789:92;;24838:31;;-1:-1:-1;;;24838:31:0;;24866:1;24838:31;;;2422:51:1;2395:18;;24838:31:0;2276:203:1;24789:92:0;-1:-1:-1;;;;;24891:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;24937:78;;;;24988:7;-1:-1:-1;;;;;24972:31:0;24981:5;-1:-1:-1;;;;;24972:31:0;;24997:5;24972:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;24972:31:0;;;;;;;;24579:443;;;;:::o;20805:1135::-;-1:-1:-1;;;;;20895:18:0;;20891:552;;21049:5;21033:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;20891:552:0;;-1:-1:-1;20891:552:0;;-1:-1:-1;;;;;21109:15:0;;21087:19;21109:15;;;;;;;;;;;21143:19;;;21139:117;;;21190:50;;-1:-1:-1;;;21190:50:0;;-1:-1:-1;;;;;6131:32:1;;21190:50:0;;;6113:51:1;6180:18;;;6173:34;;;6223:18;;;6216:34;;;6086:18;;21190:50:0;5911:345:1;21139:117:0;-1:-1:-1;;;;;21379:15:0;;:9;:15;;;;;;;;;;21397:19;;;;21379:37;;20891:552;-1:-1:-1;;;;;21459:16:0;;21455:435;;21625:12;:21;;;;;;;21455:435;;;-1:-1:-1;;;;;21841:13:0;;:9;:13;;;;;;;;;;:22;;;;;;21455:435;21922:2;-1:-1:-1;;;;;21907:25:0;21916:4;-1:-1:-1;;;;;21907:25:0;;21926:5;21907:25;;;;1342::1;;1330:2;1315:18;;1196:177;21907:25:0;;;;;;;;20805:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:186::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;1529:29;1548:9;1529:29;:::i;:::-;1519:39;1378:186;-1:-1:-1;;;1378:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:180::-;2150:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:52;;;2219:1;2216;2209:12;2171:52;-1:-1:-1;2242:23:1;;2091:180;-1:-1:-1;2091:180:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3494:127::-;3555:10;3550:3;3546:20;3543:1;3536:31;3586:4;3583:1;3576:15;3610:4;3607:1;3600:15;3626:217;3666:1;3692;3682:132;;3736:10;3731:3;3727:20;3724:1;3717:31;3771:4;3768:1;3761:15;3799:4;3796:1;3789:15;3682:132;-1:-1:-1;3828:9:1;;3626:217::o;4554:128::-;4621:9;;;4642:11;;;4639:37;;;4656:18;;:::i;5390:168::-;5463:9;;;5494;;5511:15;;;5505:22;;5491:37;5481:71;;5532:18;;:::i;6261:125::-;6326:9;;;6347:10;;;6344:36;;;6360:18;;:::i
Swarm Source
ipfs://1467e51d27b8371a25b23a02642e492bca9ebd0c1e27b2b09f0689930b799a5e
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$2,859.80
Net Worth in ETH
0.856351
Token Allocations
ETH
90.69%
BNB
4.78%
AVAX
2.63%
Others
1.89%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 81.93% | $3,340.67 | 0.7014 | $2,343.02 | |
| ETH | 0.38% | $0.999601 | 10.9935 | $10.99 | |
| ETH | 0.12% | $3,340.67 | 0.001047 | $3.5 | |
| BSC | 6.97% | $3,337.69 | 0.0598 | $199.45 | |
| BSC | 4.78% | $951.96 | 0.1436 | $136.73 | |
| BSC | 0.02% | <$0.000001 | 733,894,384,876.898 | $0.6252 | |
| AVAX | 2.63% | $13.7 | 5.5 | $75.35 | |
| ARB | 1.79% | $3,340.9 | 0.0153 | $51.12 | |
| POL | 0.81% | $3,339.56 | 0.00692015 | $23.11 | |
| POL | 0.55% | $0.999664 | 15.8 | $15.79 | |
| BASE | <0.01% | $0.9997 | 0.11 | $0.1099 |
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.