Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23541379 | 119 days ago | IN | 0 ETH | 0.00007985 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AGENTIFY
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-10-09
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
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.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface for the optional metadata functions from the ERC-20 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/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/interfaces/draft-IERC6093.sol
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.2.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 ERC-20
* applications.
*/
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}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* 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:
*
* ```solidity
* 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: @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/security/ReentrancyGuard.sol
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}
// File: hook (1).sol
pragma solidity ^0.8.0;
contract AGENTIFY is ERC20, Ownable, ReentrancyGuard {
address public uniswapV2Pair;
address public treasury;
bool public isTradingOpen;
uint256 public constant SELL_TAX_PERCENT = 99;
event HookTriggered(address indexed from, address indexed to, uint256 amount, uint256 tax);
event UniswapPairSet(address indexed pair);
event TreasuryUpdated(address indexed treasury);
event TradingOpened();
constructor(string memory name, string memory symbol, address _treasury)
ERC20(name, symbol)
Ownable(msg.sender)
{
treasury = _treasury;
isTradingOpen = false; // Trading is initially disabled
_mint(msg.sender, 1000000000 * 10 ** decimals());
}
function setUniswapPair(address _pair) external onlyOwner {
require(_pair != address(0), "Invalid pair address");
uniswapV2Pair = _pair;
emit UniswapPairSet(_pair);
}
function setTreasury(address _treasury) external onlyOwner {
require(_treasury != address(0), "Invalid treasury address");
treasury = _treasury;
emit TreasuryUpdated(_treasury);
}
/// @notice Custom transfer function to block all trades until openTrading
function transfer(address recipient, uint256 amount) public virtual override nonReentrant returns (bool) {
require(recipient != address(0), "Transfer to zero address not allowed");
if (!isTradingOpen) {
require(owner() == _msgSender() || owner() == recipient, "Trading is not yet open");
}
if (recipient == uniswapV2Pair && treasury != address(0)) {
uint256 taxAmount = (amount * SELL_TAX_PERCENT) / 100;
uint256 amountAfterTax = amount - taxAmount;
if (taxAmount > 0) {
_transfer(_msgSender(), treasury, taxAmount);
}
_transfer(_msgSender(), recipient, amountAfterTax);
emit HookTriggered(_msgSender(), recipient, amount, taxAmount);
} else {
_transfer(_msgSender(), recipient, amount);
emit HookTriggered(_msgSender(), recipient, amount, 0);
}
return true;
}
/// @notice Custom transferFrom function to block all trades until openTrading
function transferFrom(address sender, address recipient, uint256 amount) public virtual override nonReentrant returns (bool) {
require(recipient != address(0), "Transfer to zero address not allowed");
if (!isTradingOpen) {
require(owner() == sender || owner() == recipient, "Trading is not yet open");
}
if (recipient == uniswapV2Pair && treasury != address(0)) {
uint256 taxAmount = (amount * SELL_TAX_PERCENT) / 100;
uint256 amountAfterTax = amount - taxAmount;
if (taxAmount > 0) {
_transfer(sender, treasury, taxAmount);
}
_transfer(sender, recipient, amountAfterTax);
emit HookTriggered(sender, recipient, amount, taxAmount);
} else {
_transfer(sender, recipient, amount);
emit HookTriggered(sender, recipient, amount, 0);
}
uint256 currentAllowance = allowance(sender, _msgSender());
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - amount);
return true;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_treasury","type":"address"}],"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":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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"HookTriggered","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":[],"name":"TradingOpened","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasury","type":"address"}],"name":"TreasuryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"}],"name":"UniswapPairSet","type":"event"},{"inputs":[],"name":"SELL_TAX_PERCENT","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setUniswapPair","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","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":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801562000010575f80fd5b506040516200157738038062001577833981016040819052620000339162000365565b338383600362000044838262000478565b50600462000053828262000478565b5050506001600160a01b0381166200008557604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6200009081620000eb565b506001600655600880546001600160a81b0319166001600160a01b038316179055620000e233620000bf601290565b620000cc90600a6200064f565b620000dc90633b9aca0062000666565b6200013c565b50505062000696565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001675760405163ec442f0560e01b81525f60048201526024016200007c565b620001745f838362000178565b5050565b6001600160a01b038316620001a6578060025f8282546200019a919062000680565b90915550620002189050565b6001600160a01b0383165f9081526020819052604090205481811015620001fa5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200007c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620002365760028054829003905562000254565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200029a91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620002cb575f80fd5b81516001600160401b0380821115620002e857620002e8620002a7565b604051601f8301601f19908116603f01168101908282118183101715620003135762000313620002a7565b816040528381526020925086838588010111156200032f575f80fd5b5f91505b8382101562000352578582018301518183018401529082019062000333565b5f93810190920192909252949350505050565b5f805f6060848603121562000378575f80fd5b83516001600160401b03808211156200038f575f80fd5b6200039d87838801620002bb565b94506020860151915080821115620003b3575f80fd5b50620003c286828701620002bb565b604086015190935090506001600160a01b0381168114620003e1575f80fd5b809150509250925092565b600181811c908216806200040157607f821691505b6020821081036200042057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000473575f81815260208120601f850160051c810160208610156200044e5750805b601f850160051c820191505b818110156200046f578281556001016200045a565b5050505b505050565b81516001600160401b03811115620004945762000494620002a7565b620004ac81620004a58454620003ec565b8462000426565b602080601f831160018114620004e2575f8415620004ca5750858301515b5f19600386901b1c1916600185901b1785556200046f565b5f85815260208120601f198616915b828110156200051257888601518255948401946001909101908401620004f1565b50858210156200053057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200059457815f190482111562000578576200057862000540565b808516156200058657918102915b93841c939080029062000559565b509250929050565b5f82620005ac5750600162000649565b81620005ba57505f62000649565b8160018114620005d35760028114620005de57620005fe565b600191505062000649565b60ff841115620005f257620005f262000540565b50506001821b62000649565b5060208310610133831016604e8410600b841016171562000623575081810a62000649565b6200062f838362000554565b805f190482111562000645576200064562000540565b0290505b92915050565b5f6200065f60ff8416836200059c565b9392505050565b808202811582820484141762000649576200064962000540565b8082018082111562000649576200064962000540565b610ed380620006a45f395ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c8063715018a61161009e578063a9059cbb1161006e578063a9059cbb1461022f578063d5aed6bf14610242578063dd62ed3e14610255578063f0f442601461028d578063f2fde38b146102a0575f80fd5b8063715018a6146102045780638ce8e9d71461020e5780638da5cb5b1461021657806395d89b4114610227575f80fd5b8063313ce567116100e4578063313ce5671461017b57806349bd5a5e1461018a57806356a060a2146101b557806361d027b3146101c957806370a08231146101dc575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d6102b3565b60405161012a9190610c80565b60405180910390f35b610146610141366004610ce6565b610343565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610d0e565b61035c565b6040516012815260200161012a565b60075461019d906001600160a01b031681565b6040516001600160a01b03909116815260200161012a565b60085461014690600160a01b900460ff1681565b60085461019d906001600160a01b031681565b61015a6101ea366004610d47565b6001600160a01b03165f9081526020819052604090205490565b61020c6105dd565b005b61015a606381565b6005546001600160a01b031661019d565b61011d6105f0565b61014661023d366004610ce6565b6105ff565b61020c610250366004610d47565b6107bf565b61015a610263366004610d60565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61020c61029b366004610d47565b61085d565b61020c6102ae366004610d47565b610904565b6060600380546102c290610d91565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610d91565b80156103395780601f1061031057610100808354040283529160200191610339565b820191905f5260205f20905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b5f33610350818585610941565b60019150505b92915050565b5f610365610953565b6001600160a01b0383166103945760405162461bcd60e51b815260040161038b90610dc9565b60405180910390fd5b600854600160a01b900460ff1661043e57836001600160a01b03166103c16005546001600160a01b031690565b6001600160a01b031614806103f85750826001600160a01b03166103ed6005546001600160a01b031690565b6001600160a01b0316145b61043e5760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b9903737ba103cb2ba1037b832b760491b604482015260640161038b565b6007546001600160a01b03848116911614801561046557506008546001600160a01b031615155b15610504575f6064610478606385610e21565b6104829190610e38565b90505f61048f8285610e57565b905081156104af576008546104af9087906001600160a01b0316846109ac565b6104ba8686836109ac565b846001600160a01b0316866001600160a01b03165f80516020610e7e83398151915286856040516104f5929190918252602082015260400190565b60405180910390a35050610545565b61050f8484846109ac565b604080518381525f60208201526001600160a01b0380861692908716915f80516020610e7e833981519152910160405180910390a35b5f6105508533610263565b9050828110156105b35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161038b565b6105c785336105c28685610e57565b610941565b60019150506105d66001600655565b9392505050565b6105e5610a09565b6105ee5f610a36565b565b6060600480546102c290610d91565b5f610608610953565b6001600160a01b03831661062e5760405162461bcd60e51b815260040161038b90610dc9565b600854600160a01b900460ff166106c0576005546001600160a01b031633148061067a5750826001600160a01b031661066f6005546001600160a01b031690565b6001600160a01b0316145b6106c05760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b9903737ba103cb2ba1037b832b760491b604482015260640161038b565b6007546001600160a01b0384811691161480156106e757506008546001600160a01b031615155b15610774575f60646106fa606385610e21565b6107049190610e38565b90505f6107118285610e57565b9050811561072f5761072f336008546001600160a01b0316846109ac565b61073a3386836109ac565b60408051858152602081018490526001600160a01b0387169133915f80516020610e7e833981519152910160405180910390a350506107b2565b61077f3384846109ac565b604080518381525f60208201526001600160a01b0385169133915f80516020610e7e833981519152910160405180910390a35b5060016103566001600655565b6107c7610a09565b6001600160a01b0381166108145760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b604482015260640161038b565b600780546001600160a01b0319166001600160a01b0383169081179091556040517f3c4f449c239ed12ed2ff24e3a05f1ebb510455f98d73bc8de65acc9acb9706dd905f90a250565b610865610a09565b6001600160a01b0381166108bb5760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420747265617375727920616464726573730000000000000000604482015260640161038b565b600880546001600160a01b0319166001600160a01b0383169081179091556040517f7dae230f18360d76a040c81f050aa14eb9d6dc7901b20fc5d855e2a20fe814d1905f90a250565b61090c610a09565b6001600160a01b03811661093557604051631e4fbdf760e01b81525f600482015260240161038b565b61093e81610a36565b50565b61094e8383836001610a87565b505050565b6002600654036109a55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161038b565b6002600655565b6001600160a01b0383166109d557604051634b637e8f60e11b81525f600482015260240161038b565b6001600160a01b0382166109fe5760405163ec442f0560e01b81525f600482015260240161038b565b61094e838383610b5a565b6005546001600160a01b031633146105ee5760405163118cdaa760e01b815233600482015260240161038b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610ab05760405163e602df0560e01b81525f600482015260240161038b565b6001600160a01b038316610ad957604051634a1406b160e11b81525f600482015260240161038b565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b5457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b4b91815260200190565b60405180910390a35b50505050565b6001600160a01b038316610b84578060025f828254610b799190610e6a565b90915550610bf49050565b6001600160a01b0383165f9081526020819052604090205481811015610bd65760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161038b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610c1057600280548290039055610c2e565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c7391815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610cab57858101830151858201604001528201610c8f565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce1575f80fd5b919050565b5f8060408385031215610cf7575f80fd5b610d0083610ccb565b946020939093013593505050565b5f805f60608486031215610d20575f80fd5b610d2984610ccb565b9250610d3760208501610ccb565b9150604084013590509250925092565b5f60208284031215610d57575f80fd5b6105d682610ccb565b5f8060408385031215610d71575f80fd5b610d7a83610ccb565b9150610d8860208401610ccb565b90509250929050565b600181811c90821680610da557607f821691505b602082108103610dc357634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526024908201527f5472616e7366657220746f207a65726f2061646472657373206e6f7420616c6c6040820152631bddd95960e21b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761035657610356610e0d565b5f82610e5257634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561035657610356610e0d565b8082018082111561035657610356610e0d56fe3768ff8e88128cd543992afbb31dbbabdf1cde17c8a052619f17fd335c96f425a2646970667358221220822a7672b7246da79a8e283fff38376290680cab979dc51d120b8b7a76d8176364736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a1e632a3670214cb2459dd5f48b8a0d9c383aaed00000000000000000000000000000000000000000000000000000000000000084167656e7469667900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034147460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c8063715018a61161009e578063a9059cbb1161006e578063a9059cbb1461022f578063d5aed6bf14610242578063dd62ed3e14610255578063f0f442601461028d578063f2fde38b146102a0575f80fd5b8063715018a6146102045780638ce8e9d71461020e5780638da5cb5b1461021657806395d89b4114610227575f80fd5b8063313ce567116100e4578063313ce5671461017b57806349bd5a5e1461018a57806356a060a2146101b557806361d027b3146101c957806370a08231146101dc575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d6102b3565b60405161012a9190610c80565b60405180910390f35b610146610141366004610ce6565b610343565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610d0e565b61035c565b6040516012815260200161012a565b60075461019d906001600160a01b031681565b6040516001600160a01b03909116815260200161012a565b60085461014690600160a01b900460ff1681565b60085461019d906001600160a01b031681565b61015a6101ea366004610d47565b6001600160a01b03165f9081526020819052604090205490565b61020c6105dd565b005b61015a606381565b6005546001600160a01b031661019d565b61011d6105f0565b61014661023d366004610ce6565b6105ff565b61020c610250366004610d47565b6107bf565b61015a610263366004610d60565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61020c61029b366004610d47565b61085d565b61020c6102ae366004610d47565b610904565b6060600380546102c290610d91565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610d91565b80156103395780601f1061031057610100808354040283529160200191610339565b820191905f5260205f20905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b5f33610350818585610941565b60019150505b92915050565b5f610365610953565b6001600160a01b0383166103945760405162461bcd60e51b815260040161038b90610dc9565b60405180910390fd5b600854600160a01b900460ff1661043e57836001600160a01b03166103c16005546001600160a01b031690565b6001600160a01b031614806103f85750826001600160a01b03166103ed6005546001600160a01b031690565b6001600160a01b0316145b61043e5760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b9903737ba103cb2ba1037b832b760491b604482015260640161038b565b6007546001600160a01b03848116911614801561046557506008546001600160a01b031615155b15610504575f6064610478606385610e21565b6104829190610e38565b90505f61048f8285610e57565b905081156104af576008546104af9087906001600160a01b0316846109ac565b6104ba8686836109ac565b846001600160a01b0316866001600160a01b03165f80516020610e7e83398151915286856040516104f5929190918252602082015260400190565b60405180910390a35050610545565b61050f8484846109ac565b604080518381525f60208201526001600160a01b0380861692908716915f80516020610e7e833981519152910160405180910390a35b5f6105508533610263565b9050828110156105b35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161038b565b6105c785336105c28685610e57565b610941565b60019150506105d66001600655565b9392505050565b6105e5610a09565b6105ee5f610a36565b565b6060600480546102c290610d91565b5f610608610953565b6001600160a01b03831661062e5760405162461bcd60e51b815260040161038b90610dc9565b600854600160a01b900460ff166106c0576005546001600160a01b031633148061067a5750826001600160a01b031661066f6005546001600160a01b031690565b6001600160a01b0316145b6106c05760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b9903737ba103cb2ba1037b832b760491b604482015260640161038b565b6007546001600160a01b0384811691161480156106e757506008546001600160a01b031615155b15610774575f60646106fa606385610e21565b6107049190610e38565b90505f6107118285610e57565b9050811561072f5761072f336008546001600160a01b0316846109ac565b61073a3386836109ac565b60408051858152602081018490526001600160a01b0387169133915f80516020610e7e833981519152910160405180910390a350506107b2565b61077f3384846109ac565b604080518381525f60208201526001600160a01b0385169133915f80516020610e7e833981519152910160405180910390a35b5060016103566001600655565b6107c7610a09565b6001600160a01b0381166108145760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b604482015260640161038b565b600780546001600160a01b0319166001600160a01b0383169081179091556040517f3c4f449c239ed12ed2ff24e3a05f1ebb510455f98d73bc8de65acc9acb9706dd905f90a250565b610865610a09565b6001600160a01b0381166108bb5760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420747265617375727920616464726573730000000000000000604482015260640161038b565b600880546001600160a01b0319166001600160a01b0383169081179091556040517f7dae230f18360d76a040c81f050aa14eb9d6dc7901b20fc5d855e2a20fe814d1905f90a250565b61090c610a09565b6001600160a01b03811661093557604051631e4fbdf760e01b81525f600482015260240161038b565b61093e81610a36565b50565b61094e8383836001610a87565b505050565b6002600654036109a55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161038b565b6002600655565b6001600160a01b0383166109d557604051634b637e8f60e11b81525f600482015260240161038b565b6001600160a01b0382166109fe5760405163ec442f0560e01b81525f600482015260240161038b565b61094e838383610b5a565b6005546001600160a01b031633146105ee5760405163118cdaa760e01b815233600482015260240161038b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610ab05760405163e602df0560e01b81525f600482015260240161038b565b6001600160a01b038316610ad957604051634a1406b160e11b81525f600482015260240161038b565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b5457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b4b91815260200190565b60405180910390a35b50505050565b6001600160a01b038316610b84578060025f828254610b799190610e6a565b90915550610bf49050565b6001600160a01b0383165f9081526020819052604090205481811015610bd65760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161038b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610c1057600280548290039055610c2e565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c7391815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610cab57858101830151858201604001528201610c8f565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce1575f80fd5b919050565b5f8060408385031215610cf7575f80fd5b610d0083610ccb565b946020939093013593505050565b5f805f60608486031215610d20575f80fd5b610d2984610ccb565b9250610d3760208501610ccb565b9150604084013590509250925092565b5f60208284031215610d57575f80fd5b6105d682610ccb565b5f8060408385031215610d71575f80fd5b610d7a83610ccb565b9150610d8860208401610ccb565b90509250929050565b600181811c90821680610da557607f821691505b602082108103610dc357634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526024908201527f5472616e7366657220746f207a65726f2061646472657373206e6f7420616c6c6040820152631bddd95960e21b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761035657610356610e0d565b5f82610e5257634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561035657610356610e0d565b8082018082111561035657610356610e0d56fe3768ff8e88128cd543992afbb31dbbabdf1cde17c8a052619f17fd335c96f425a2646970667358221220822a7672b7246da79a8e283fff38376290680cab979dc51d120b8b7a76d8176364736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a1e632a3670214cb2459dd5f48b8a0d9c383aaed00000000000000000000000000000000000000000000000000000000000000084167656e7469667900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034147460000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Agentify
Arg [1] : symbol (string): AGF
Arg [2] : _treasury (address): 0xa1e632A3670214CB2459Dd5F48b8A0D9c383aAed
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000a1e632a3670214cb2459dd5f48b8a0d9c383aaed
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4167656e74696679000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4147460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
28908:3504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13050:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15343:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15343:190:0;1004:187:1;14152:99:0;14231:12;;14152:99;;;1342:25:1;;;1330:2;1315:18;14152:99:0;1196:177:1;31226:1183:0;;;;;;:::i;:::-;;:::i;14003:84::-;;;14077:2;1853:36:1;;1841:2;1826:18;14003:84:0;1711:184:1;28969:28:0;;;;;-1:-1:-1;;;;;28969:28:0;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;28969:28:0;1900:203:1;29034:25:0;;;;;-1:-1:-1;;;29034:25:0;;;;;;29004:23;;;;;-1:-1:-1;;;;;29004:23:0;;;14314:118;;;;;;:::i;:::-;-1:-1:-1;;;;;14406:18:0;14379:7;14406:18;;;;;;;;;;;;14314:118;24772:103;;;:::i;:::-;;29066:45;;29109:2;29066:45;;24097:87;24170:6;;-1:-1:-1;;;;;24170:6:0;24097:87;;13260:95;;;:::i;30164:970::-;;;;;;:::i;:::-;;:::i;29659:198::-;;;;;;:::i;:::-;;:::i;14882:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14989:18:0;;;14962:7;14989:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14882:142;29865:211;;;;;;:::i;:::-;;:::i;25030:220::-;;;;;;:::i;:::-;;:::i;13050:91::-;13095:13;13128:5;13121:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13050:91;:::o;15343:190::-;15416:4;4429:10;15472:31;4429:10;15488:7;15497:5;15472:8;:31::i;:::-;15521:4;15514:11;;;15343:190;;;;;:::o;31226:1183::-;31345:4;27953:21;:19;:21::i;:::-;-1:-1:-1;;;;;31370:23:0;::::1;31362:72;;;;-1:-1:-1::0;;;31362:72:0::1;;;;;;;:::i;:::-;;;;;;;;;31452:13;::::0;-1:-1:-1;;;31452:13:0;::::1;;;31447:124;;31501:6;-1:-1:-1::0;;;;;31490:17:0::1;:7;24170:6:::0;;-1:-1:-1;;;;;24170:6:0;;24097:87;31490:7:::1;-1:-1:-1::0;;;;;31490:17:0::1;;:41;;;;31522:9;-1:-1:-1::0;;;;;31511:20:0::1;:7;24170:6:::0;;-1:-1:-1;;;;;24170:6:0;;24097:87;31511:7:::1;-1:-1:-1::0;;;;;31511:20:0::1;;31490:41;31482:77;;;::::0;-1:-1:-1;;;31482:77:0;;3556:2:1;31482:77:0::1;::::0;::::1;3538:21:1::0;3595:2;3575:18;;;3568:30;-1:-1:-1;;;3614:18:1;;;3607:53;3677:18;;31482:77:0::1;3354:347:1::0;31482:77:0::1;31600:13;::::0;-1:-1:-1;;;;;31587:26:0;;::::1;31600:13:::0;::::1;31587:26;:52:::0;::::1;;;-1:-1:-1::0;31617:8:0::1;::::0;-1:-1:-1;;;;;31617:8:0::1;:22:::0;::::1;31587:52;31583:566;;;31656:17;31706:3;31677:25;29109:2;31677:6:::0;:25:::1;:::i;:::-;31676:33;;;;:::i;:::-;31656:53:::0;-1:-1:-1;31724:22:0::1;31749:18;31656:53:::0;31749:6;:18:::1;:::i;:::-;31724:43:::0;-1:-1:-1;31788:13:0;;31784:92:::1;;31840:8;::::0;31822:38:::1;::::0;31832:6;;-1:-1:-1;;;;;31840:8:0::1;31850:9:::0;31822::::1;:38::i;:::-;31890:44;31900:6;31908:9;31919:14;31890:9;:44::i;:::-;31976:9;-1:-1:-1::0;;;;;31954:51:0::1;31968:6;-1:-1:-1::0;;;;;31954:51:0::1;-1:-1:-1::0;;;;;;;;;;;31987:6:0::1;31995:9;31954:51;;;;;;4540:25:1::0;;;4596:2;4581:18;;4574:34;4528:2;4513:18;;4366:248;31954:51:0::1;;;;;;;;31641:376;;31583:566;;;32038:36;32048:6;32056:9;32067:6;32038:9;:36::i;:::-;32094:43;::::0;;4540:25:1;;;32135:1:0::1;4596:2:1::0;4581:18;;4574:34;-1:-1:-1;;;;;32094:43:0;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;;;;;;;32094:43:0;4513:18:1;32094:43:0::1;;;;;;;31583:566;32161:24;32188:31;32198:6:::0;4429:10;14882:142;:::i;32188:31::-:1;32161:58;;32258:6;32238:16;:26;;32230:79;;;::::0;-1:-1:-1;;;32230:79:0;;5082:2:1;32230:79:0::1;::::0;::::1;5064:21:1::0;5121:2;5101:18;;;5094:30;5160:34;5140:18;;;5133:62;-1:-1:-1;;;5211:18:1;;;5204:38;5259:19;;32230:79:0::1;4880:404:1::0;32230:79:0::1;32320:57;32329:6:::0;4429:10;32351:25:::1;32370:6:::0;32351:16;:25:::1;:::i;:::-;32320:8;:57::i;:::-;32397:4;32390:11;;;27997:20:::0;27391:1;28517:7;:22;28334:213;27997:20;31226:1183;;;;;:::o;24772:103::-;23983:13;:11;:13::i;:::-;24837:30:::1;24864:1;24837:18;:30::i;:::-;24772:103::o:0;13260:95::-;13307:13;13340:7;13333:14;;;;;:::i;30164:970::-;30263:4;27953:21;:19;:21::i;:::-;-1:-1:-1;;;;;30288:23:0;::::1;30280:72;;;;-1:-1:-1::0;;;30280:72:0::1;;;;;;;:::i;:::-;30370:13;::::0;-1:-1:-1;;;30370:13:0;::::1;;;30365:130;;24170:6:::0;;-1:-1:-1;;;;;24170:6:0;4429:10;30408:23:::1;::::0;:47:::1;;;30446:9;-1:-1:-1::0;;;;;30435:20:0::1;:7;24170:6:::0;;-1:-1:-1;;;;;24170:6:0;;24097:87;30435:7:::1;-1:-1:-1::0;;;;;30435:20:0::1;;30408:47;30400:83;;;::::0;-1:-1:-1;;;30400:83:0;;3556:2:1;30400:83:0::1;::::0;::::1;3538:21:1::0;3595:2;3575:18;;;3568:30;-1:-1:-1;;;3614:18:1;;;3607:53;3677:18;;30400:83:0::1;3354:347:1::0;30400:83:0::1;30524:13;::::0;-1:-1:-1;;;;;30511:26:0;;::::1;30524:13:::0;::::1;30511:26;:52:::0;::::1;;;-1:-1:-1::0;30541:8:0::1;::::0;-1:-1:-1;;;;;30541:8:0::1;:22:::0;::::1;30511:52;30507:596;;;30580:17;30630:3;30601:25;29109:2;30601:6:::0;:25:::1;:::i;:::-;30600:33;;;;:::i;:::-;30580:53:::0;-1:-1:-1;30648:22:0::1;30673:18;30580:53:::0;30673:6;:18:::1;:::i;:::-;30648:43:::0;-1:-1:-1;30712:13:0;;30708:98:::1;;30746:44;4429:10:::0;30770:8:::1;::::0;-1:-1:-1;;;;;30770:8:0::1;30780:9:::0;30746::::1;:44::i;:::-;30820:50;4429:10:::0;30844:9:::1;30855:14;30820:9;:50::i;:::-;30890:57;::::0;;4540:25:1;;;4596:2;4581:18;;4574:34;;;-1:-1:-1;;;;;30890:57:0;::::1;::::0;4429:10;;-1:-1:-1;;;;;;;;;;;30890:57:0;4513:18:1;30890:57:0::1;;;;;;;30565:394;;30507:596;;;30980:42;4429:10:::0;31004:9:::1;31015:6;30980:9;:42::i;:::-;31042:49;::::0;;4540:25:1;;;31089:1:0::1;4596:2:1::0;4581:18;;4574:34;-1:-1:-1;;;;;31042:49:0;::::1;::::0;4429:10;;-1:-1:-1;;;;;;;;;;;31042:49:0;4513:18:1;31042:49:0::1;;;;;;;30507:596;-1:-1:-1::0;31122:4:0::1;27997:20:::0;27391:1;28517:7;:22;28334:213;29659:198;23983:13;:11;:13::i;:::-;-1:-1:-1;;;;;29736:19:0;::::1;29728:52;;;::::0;-1:-1:-1;;;29728:52:0;;5491:2:1;29728:52:0::1;::::0;::::1;5473:21:1::0;5530:2;5510:18;;;5503:30;-1:-1:-1;;;5549:18:1;;;5542:50;5609:18;;29728:52:0::1;5289:344:1::0;29728:52:0::1;29791:13;:21:::0;;-1:-1:-1;;;;;;29791:21:0::1;-1:-1:-1::0;;;;;29791:21:0;::::1;::::0;;::::1;::::0;;;29828::::1;::::0;::::1;::::0;-1:-1:-1;;29828:21:0::1;29659:198:::0;:::o;29865:211::-;23983:13;:11;:13::i;:::-;-1:-1:-1;;;;;29943:23:0;::::1;29935:60;;;::::0;-1:-1:-1;;;29935:60:0;;5840:2:1;29935:60:0::1;::::0;::::1;5822:21:1::0;5879:2;5859:18;;;5852:30;5918:26;5898:18;;;5891:54;5962:18;;29935:60:0::1;5638:348:1::0;29935:60:0::1;30006:8;:20:::0;;-1:-1:-1;;;;;;30006:20:0::1;-1:-1:-1::0;;;;;30006:20:0;::::1;::::0;;::::1;::::0;;;30042:26:::1;::::0;::::1;::::0;-1:-1:-1;;30042:26:0::1;29865:211:::0;:::o;25030:220::-;23983:13;:11;:13::i;:::-;-1:-1:-1;;;;;25115:22:0;::::1;25111:93;;25161:31;::::0;-1:-1:-1;;;25161:31:0;;25189:1:::1;25161:31;::::0;::::1;2046:51:1::0;2019:18;;25161:31:0::1;1900:203:1::0;25111:93:0::1;25214:28;25233:8;25214:18;:28::i;:::-;25030:220:::0;:::o;20202:130::-;20287:37;20296:5;20303:7;20312:5;20319:4;20287:8;:37::i;:::-;20202:130;;;:::o;28033:293::-;27435:1;28167:7;;:19;28159:63;;;;-1:-1:-1;;;28159:63:0;;6193:2:1;28159:63:0;;;6175:21:1;6232:2;6212:18;;;6205:30;6271:33;6251:18;;;6244:61;6322:18;;28159:63:0;5991:355:1;28159:63:0;27435:1;28300:7;:18;28033:293::o;16777:308::-;-1:-1:-1;;;;;16861:18:0;;16857:88;;16903:30;;-1:-1:-1;;;16903:30:0;;16930:1;16903:30;;;2046:51:1;2019:18;;16903:30:0;1900:203:1;16857:88:0;-1:-1:-1;;;;;16959:16:0;;16955:88;;16999:32;;-1:-1:-1;;;16999:32:0;;17028:1;16999:32;;;2046:51:1;2019:18;;16999:32:0;1900:203:1;16955:88:0;17053:24;17061:4;17067:2;17071:5;17053:7;:24::i;24262:166::-;24170:6;;-1:-1:-1;;;;;24170:6:0;4429:10;24322:23;24318:103;;24369:40;;-1:-1:-1;;;24369:40:0;;4429:10;24369:40;;;2046:51:1;2019:18;;24369:40:0;1900:203:1;25410:191:0;25503:6;;;-1:-1:-1;;;;;25520:17:0;;;-1:-1:-1;;;;;;25520:17:0;;;;;;;25553:40;;25503:6;;;25520:17;25503:6;;25553:40;;25484:16;;25553:40;25473:128;25410:191;:::o;21199:443::-;-1:-1:-1;;;;;21312:19:0;;21308:91;;21355:32;;-1:-1:-1;;;21355:32:0;;21384:1;21355:32;;;2046:51:1;2019:18;;21355:32:0;1900:203:1;21308:91:0;-1:-1:-1;;;;;21413:21:0;;21409:92;;21458:31;;-1:-1:-1;;;21458:31:0;;21486:1;21458:31;;;2046:51:1;2019:18;;21458:31:0;1900:203:1;21409:92:0;-1:-1:-1;;;;;21511:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21557:78;;;;21608:7;-1:-1:-1;;;;;21592:31:0;21601:5;-1:-1:-1;;;;;21592:31:0;;21617:5;21592:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;21592:31:0;;;;;;;;21557:78;21199:443;;;;:::o;17409:1135::-;-1:-1:-1;;;;;17499:18:0;;17495:552;;17653:5;17637:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17495:552:0;;-1:-1:-1;17495:552:0;;-1:-1:-1;;;;;17713:15:0;;17691:19;17713:15;;;;;;;;;;;17747:19;;;17743:117;;;17794:50;;-1:-1:-1;;;17794:50:0;;-1:-1:-1;;;;;6701:32:1;;17794:50:0;;;6683:51:1;6750:18;;;6743:34;;;6793:18;;;6786:34;;;6656:18;;17794:50:0;6481:345:1;17743:117:0;-1:-1:-1;;;;;17983:15:0;;:9;:15;;;;;;;;;;18001:19;;;;17983:37;;17495:552;-1:-1:-1;;;;;18063:16:0;;18059:435;;18229:12;:21;;;;;;;18059:435;;;-1:-1:-1;;;;;18445:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18059:435;18526:2;-1:-1:-1;;;;;18511:25:0;18520:4;-1:-1:-1;;;;;18511:25:0;;18530:5;18511:25;;;;1342::1;;1330:2;1315:18;;1196:177;18511:25:0;;;;;;;;17409: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:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:400::-;3151:2;3133:21;;;3190:2;3170:18;;;3163:30;3229:34;3224:2;3209:18;;3202:62;-1:-1:-1;;;3295:2:1;3280:18;;3273:34;3339:3;3324:19;;2949:400::o;3706:127::-;3767:10;3762:3;3758:20;3755:1;3748:31;3798:4;3795:1;3788:15;3822:4;3819:1;3812:15;3838:168;3911:9;;;3942;;3959:15;;;3953:22;;3939:37;3929:71;;3980:18;;:::i;4011:217::-;4051:1;4077;4067:132;;4121:10;4116:3;4112:20;4109:1;4102:31;4156:4;4153:1;4146:15;4184:4;4181:1;4174:15;4067:132;-1:-1:-1;4213:9:1;;4011:217::o;4233:128::-;4300:9;;;4321:11;;;4318:37;;;4335:18;;:::i;6351:125::-;6416:9;;;6437:10;;;6434:36;;;6450:18;;:::i
Swarm Source
ipfs://822a7672b7246da79a8e283fff38376290680cab979dc51d120b8b7a76d81763
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 ]
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.