More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 957 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 55502443 | 19 hrs ago | IN | 0 ETH | 0.00000511 | ||||
Transfer | 55433433 | 43 hrs ago | IN | 0 ETH | 0.00000511 | ||||
Approve | 55363516 | 2 days ago | IN | 0 ETH | 0.00000439 | ||||
Approve | 55356800 | 2 days ago | IN | 0 ETH | 0.000006 | ||||
Approve | 55131823 | 5 days ago | IN | 0 ETH | 0.00000607 | ||||
Approve | 55059558 | 6 days ago | IN | 0 ETH | 0.00000453 | ||||
Approve | 55012761 | 7 days ago | IN | 0 ETH | 0.0000046 | ||||
Approve | 54765082 | 11 days ago | IN | 0 ETH | 0.00000496 | ||||
Approve | 54688043 | 12 days ago | IN | 0 ETH | 0.00001875 | ||||
Approve | 54637078 | 12 days ago | IN | 0 ETH | 0.00000471 | ||||
Approve | 54633151 | 12 days ago | IN | 0 ETH | 0.00000528 | ||||
Approve | 54320550 | 16 days ago | IN | 0 ETH | 0.00000562 | ||||
Approve | 54320387 | 16 days ago | IN | 0 ETH | 0.00000509 | ||||
Approve | 53713773 | 24 days ago | IN | 0 ETH | 0.00000616 | ||||
Approve | 53684622 | 24 days ago | IN | 0 ETH | 0.0000054 | ||||
Approve | 53550361 | 26 days ago | IN | 0 ETH | 0.00000536 | ||||
Approve | 53320389 | 29 days ago | IN | 0 ETH | 0.0000047 | ||||
Transfer | 53254644 | 30 days ago | IN | 0 ETH | 0.00000682 | ||||
Approve | 53209021 | 31 days ago | IN | 0 ETH | 0.00000583 | ||||
Approve | 53208401 | 31 days ago | IN | 0 ETH | 0.00000584 | ||||
Approve | 53207919 | 31 days ago | IN | 0 ETH | 0.00000593 | ||||
Approve | 53197119 | 31 days ago | IN | 0 ETH | 0.00000468 | ||||
Approve | 53197119 | 31 days ago | IN | 0 ETH | 0.00000468 | ||||
Approve | 53197117 | 31 days ago | IN | 0 ETH | 0.00000468 | ||||
Approve | 53128714 | 32 days ago | IN | 0 ETH | 0.00000838 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
48781635 | 88 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
BondingCurveToken
Compiler Version
v0.8.20+commit.a1b79de6
ZkSolc Version
v1.4.1
Contract Source Code (Solidity)
/** *Submitted for verification at era.zksync.network on 2024-11-12 */ // File: ElasticMAN/utils/token/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: PUMP-CON/utils/token/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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: PUMP-CON/utils/token/extensions/Context.sol // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @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: PUMP-CON/utils/token/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: PUMP-CON/utils/owner/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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. * * By default, the owner account will be the one that deploys the contract. 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; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _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: PUMP-CON/utils/token/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: PUMP-CON/BondingCurveToken.sol pragma solidity ^0.8.0; contract BondingCurveToken is ERC20, ERC20Burnable, Ownable { uint256 public constant TOTAL_SUPPLY = 1_000_000_000 * 10**18; // 1 billion tokens uint256 public constant TRADING_SUPPLY = 800_000_000 * 10**18; // 800 million for trading uint256 public constant LP_SUPPLY = 200_000_000 * 10**18; // 200 million for LP constructor(string memory name, string memory symbol) ERC20(name, symbol) { // Mint total supply to the contract itself _mint(address(this), TOTAL_SUPPLY); } function transferTradingSupply(address manager) external onlyOwner { // Transfer trading supply to the bonding curve manager _transfer(address(this), manager, TRADING_SUPPLY); } function transferLPSupply(address manager) external onlyOwner { // Transfer LP supply to the bonding curve manager _transfer(address(this), manager, LP_SUPPLY); } function burnFrom(address account, uint256 amount) public virtual override { super.burnFrom(account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"LP_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRADING_SUPPLY","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":"amount","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"manager","type":"address"}],"name":"transferLPSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"manager","type":"address"}],"name":"transferTradingSupply","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
198e2b8a00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b456c6173746963204d616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d414e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0001000000000002000800000000000200000000000103550000008003000039000000400030043f00000000030100190000006003300270000001bc033001970000000102200190000000270000c13d000000040230008c000003f20000413d000000000201043b000000e002200270000001cd0420009c000000ff0000a13d000001ce0420009c000001100000a13d000001cf0420009c0000012e0000213d000001d30420009c0000018f0000613d000001d40420009c000001a80000613d000001d50220009c000003f20000c13d0000000002000416000000440330008c000003f20000413d000000000202004b000003f20000c13d0000000402100370000000000202043b000001c20320009c000003f20000213d0000002401100370000000000301043b0000000001000411000002000000013d0000000002000416000000000202004b000003f20000c13d0000001f02300039000001bd022001970000008002200039000000400020043f0000001f0230018f00000005043002720000003a0000613d00000000050000190000000506500210000000000761034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000320000413d000000000502004b000000490000613d0000000504400210000000000141034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f0000000000140435000000400130008c000003f20000413d000000800400043d000001be0140009c000003f20000213d0000001f01400039000001bf02000041000000000531004b00000000050000190000000005028019000001bf01100197000000000601004b0000000002008019000001bf0110009c000000000205c019000000000102004b000003f20000c13d00000080014000390000000002010433000001be0120009c0000036d0000213d0000001f01200039000000200700008a000000000171016f0000003f01100039000000000171016f000000400800043d0000000005180019000000000185004b00000000010000190000000101004039000001be0650009c0000036d0000213d00000001011001900000036d0000c13d000600000007001d0000008001300039000000400050043f000800000008001d0000000005280436000700000005001d000000a0044000390000000005420019000000000515004b000003f20000213d000000000502004b0000000708000029000000810000613d000000000500001900000000065800190000000007450019000000000707043300000000007604350000002005500039000000000625004b0000007a0000413d000000080220002900000020022000390000000000020435000000a00400043d000001be0240009c000003f20000213d0000001f02400039000001bf05000041000000000332004b00000000030000190000000003058019000001bf02200197000000000602004b0000000005008019000001bf0220009c000000000503c019000000000205004b000003f20000c13d00000080024000390000000002020433000001be0320009c00000006050000290000036d0000213d0000001f03200039000000000353016f0000003f03300039000000000353016f000000400700043d0000000003370019000000000573004b00000000050000190000000105004039000001be0630009c0000036d0000213d00000001055001900000036d0000c13d000000400030043f000500000007001d0000000003270436000400000003001d000000a0034000390000000004320019000000000114004b000003f20000213d000000000102004b0000000406000029000000b80000613d000000000100001900000000041600190000000005310019000000000505043300000000005404350000002001100039000000000421004b000000b10000413d00000005012000290000002001100039000000000001043500000008010000290000000005010433000001be0150009c0000036d0000213d0000000304000039000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000000112004b000002c60000c13d000100000003001d000000200130008c000200000004001d000300000005001d000000ec0000413d0000000000400435000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c0011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d00000003050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000204000029000000ec0000813d000000000002041b0000000102200039000000000312004b000000e80000413d0000001f0150008c000003f40000a13d0000000000400435000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c0011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d00000003030000290000000603300180000000000101043b000004020000c13d00000020020000390000040d0000013d000001dc0420009c0000011f0000213d000001e30420009c000001510000a13d000001e40420009c000001e10000613d000001e50420009c000001e60000613d000001e60120009c000003f20000c13d0000000001000416000000000101004b000003f20000c13d0000001201000039000000800010043f000001ec01000041000006ed0001042e000001d60420009c000001630000a13d000001d70420009c0000020a0000613d000001d80120009c000002200000613d000001d90120009c000003f20000c13d0000000001000416000000000101004b000003f20000c13d000001c601000041000000800010043f000001ec01000041000006ed0001042e000001dd0420009c000001800000a13d000001de0420009c000002290000613d000001df0420009c000002300000613d000001e00120009c000003f20000c13d0000000001000416000000000101004b000003f20000c13d000001f501000041000000800010043f000001ec01000041000006ed0001042e000001d00420009c0000027d0000613d000001d10420009c0000029c0000613d000001d20220009c000003f20000c13d0000000002000416000000240330008c000003f20000413d000000000202004b000003f20000c13d0000000401100370000000000601043b000001c20160009c000003f20000213d0000000501000039000000000201041a000001c2032001970000000005000411000000000353004b000003160000c13d000000000306004b000003320000c13d000001cb01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000001e901000041000000c40010043f000001ea01000041000000e40010043f000001eb01000041000006ee00010430000001e70420009c000002b70000613d000001e80220009c000003f20000c13d0000000002000416000000440330008c000003f20000413d000000000202004b000003f20000c13d0000000402100370000000000202043b000001c20320009c000003f20000213d0000002401100370000000000301043b000000000100041106ec057b0000040f000002010000013d000001da0420009c000002cc0000613d000001db0120009c000003f20000c13d0000000001000416000000000101004b000003f20000c13d0000000501000039000000000201041a000001c2032001970000000005000411000000000353004b000003160000c13d000001c102200197000000000021041b000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c3011001c70000800d020000390000000303000039000001c404000041000000000600001906ec06e20000040f0000000101200190000003410000c13d000003f20000013d000001e10420009c000002de0000613d000001e20220009c000003f20000c13d0000000002000416000000240330008c000003f20000413d000000000202004b000003f20000c13d0000000401100370000000000201043b000000000100041106ec066b0000040f0000000001000019000006ed0001042e0000000001000416000000000101004b000003f20000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0610008c00000000060000190000000106002039000000000662013f0000000106600190000002c60000c13d000000800010043f000000000505004b000003290000c13d000001000100008a000000000112016f000000a00010043f000000000104004b000000c001000039000000a0010060390000035c0000013d0000000002000416000000440330008c000003f20000413d000000000202004b000003f20000c13d0000000402100370000000000202043b000800000002001d000001c20220009c000003f20000213d0000002401100370000000000101043b000700000001001d0000000001000411000500000001001d00000000001004350000000101000039000600000001001d000000200010043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b00000008020000290000000000200435000000200010043f0000000001000414000001bc0210009c000001bc01008041000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b000000000101041a0000000703000029000000000231004b000003830000813d000000400100043d0000006402100039000001f00300004100000000003204350000004402100039000001f103000041000000000032043500000024021000390000002503000039000003b10000013d0000000001000416000000000101004b000003f20000c13d0000000201000039000002da0000013d0000000002000416000000640330008c000003f20000413d000000000202004b000003f20000c13d0000000402100370000000000202043b0000000003020019000001c20220009c000003f20000213d0000002402100370000000000202043b000800000002001d000001c20220009c000003f20000213d0000004401100370000000000401043b000700000004001d00000000020004110000000001030019000600000001001d000000000304001906ec05d50000040f00000006010000290000000802000029000000070300002906ec05020000040f0000000101000039000000400200043d0000000000120435000001bc01000041000001bc0320009c00000000020180190000004001200210000001ef011001c7000006ed0001042e0000000002000416000000440330008c000003f20000413d000000000202004b000003f20000c13d0000000402100370000000000202043b0000000004020019000001c20220009c000003f20000213d0000002401100370000000000301043b000700000003001d00000000020004110000000001040019000800000001001d06ec05d50000040f0000000801000029000000070200002906ec066b0000040f0000000001000019000006ed0001042e0000000001000416000000000101004b000003f20000c13d0000000501000039000000000101041a000001c201100197000000800010043f000001ec01000041000006ed0001042e0000000001000416000000000101004b000003f20000c13d000001ed01000041000000800010043f000001ec01000041000006ed0001042e0000000002000416000000240330008c000003f20000413d000000000202004b000003f20000c13d0000000401100370000000000101043b000800000001001d000001c20110009c000003f20000213d0000000501000039000000000101041a000001c2011001970000000002000411000000000121004b000003160000c13d0000000002000410000000000102004b000002900000613d000000080100006b000003450000613d000700000002001d0000000000200435000000200000043f000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b000000000101041a000600000001001d000001f80110009c000003a80000a13d00000007010000290000000000100435000000200000043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b0000000602000029000001f902200041000000000021041b000000080100002900000000001004350000000001000414000001bc0210009c000001bc01008041000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b000000000201041a000001f502200041000000000021041b000001f501000041000000400200043d0000000000120435000001bc010000410000000003000414000003e20000013d0000000002000416000000240330008c000003f20000413d000000000202004b000003f20000c13d0000000401100370000000000101043b000800000001001d000001c20110009c000003f20000213d0000000501000039000000000101041a000001c2011001970000000002000411000000000121004b000003160000c13d0000000002000410000000000102004b000003430000c13d000001cb01000041000000800010043f0000002001000039000000840010043f0000002501000039000000a40010043f000001fe01000041000000c40010043f000001ff01000041000000e40010043f000001eb01000041000006ee000104300000000002000416000000440330008c000003f20000413d000000000202004b000003f20000c13d0000000402100370000000000202043b000001c20320009c000003f20000213d0000002401100370000000000101043b000800000001001d000001c20110009c000003f20000213d00000000002004350000000101000039000000200010043f0000004002000039000700000002001d000000000100001906ec06cc0000040f00000008020000290000000000200435000000200010043f00000000010000190000000702000029000002d90000013d0000000001000416000000000101004b000003f20000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0610008c00000000060000190000000106002039000000000662013f00000001066001900000031f0000613d000002000100004100000000001004350000002201000039000000040010043f0000020101000041000006ee000104300000000002000416000000240330008c000003f20000413d000000000202004b000003f20000c13d0000000401100370000000000101043b000001c20210009c000003f20000213d0000000000100435000000200000043f0000004002000039000000000100001906ec06cc0000040f000000000101041a000000800010043f000001ec01000041000006ed0001042e0000000002000416000000440330008c000003f20000413d000000000202004b000003f20000c13d0000000401100370000000000101043b000800000001001d000001c20110009c000003f20000213d0000000001000411000600000001001d00000000001004350000000101000039000700000001001d000000200010043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b00000008020000290000000000200435000000200010043f0000000001000414000001bc0210009c000001bc01008041000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b000000000101041a00000024020000390000000002200367000000000202043b0000000003120019000000000123004b0000000001000019000000010100403900000001011001900000038a0000613d000002000100004100000000001004350000001101000039000000040010043f0000020101000041000006ee00010430000001cb01000041000000800010043f0000002001000039000000840010043f000000a40010043f000001f601000041000000c40010043f000001f701000041000006ee00010430000000800010043f000000000505004b0000032d0000c13d000001000100008a000000000112016f000000a00010043f000000000104004b000000c001000039000000a001006039000003680000013d0000000000300435000000020220008c000003510000813d000003300000013d0000000000300435000000020220008c0000035d0000813d0000002001000039000003730000013d000001c102200197000000000262019f000000000021041b000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c3011001c70000800d020000390000000303000039000001c40400004106ec06e20000040f0000000101200190000003f20000613d0000000001000019000006ed0001042e000000080100006b000003960000c13d000001cb01000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f000001fc01000041000000c40010043f000001fd01000041000000e40010043f000001eb01000041000006ee00010430000001f30200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000003530000413d000000c001300039000003680000013d000002020200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b0000035f0000413d000000c001300039000000610110008a000000200200008a000000000121016f000001f40210009c000003730000a13d000002000100004100000000001004350000004101000039000000040010043f0000020101000041000006ee000104300000008001100039000800000001001d000000400010043f000000800200003906ec04ec0000040f00000008040000290000000001410049000001bc02000041000001bc0310009c0000000001028019000001bc0340009c000000000402801900000040024002100000006001100210000000000121019f000006ed0001042e00000000033100490000000501000029000000080200002906ec057b0000040f000000400100043d00000006020000290000038f0000013d0000000601000029000000080200002906ec057b0000040f000000400100043d00000007020000290000000000210435000001bc02000041000001bc0310009c00000000010280190000004001100210000001ef011001c7000006ed0001042e000700000002001d0000000000200435000000200000043f000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b000000000101041a000600000001001d000001ed0110009c000003bd0000813d000000400100043d0000006402100039000001fa0300004100000000003204350000004402100039000001fb030000410000000000320435000000240210003900000026030000390000000000320435000001cb020000410000000000210435000000040210003900000020030000390000000000320435000001bc02000041000001bc0310009c00000000010280190000004001100210000001f2011001c7000006ee0001043000000007010000290000000000100435000000200000043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b0000000602000029000001ee02200041000000000021041b000000080100002900000000001004350000000001000414000001bc0210009c000001bc01008041000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b000000000201041a000001ed02200041000000000021041b000001ed01000041000000400200043d0000000000120435000001bc010000410000000003000414000001bc0430009c0000000003018019000001bc0420009c00000000020180190000004001200210000000c002300210000000000112019f000001c0011001c70000800d020000390000000303000039000001c8040000410000000705000029000000080600002906ec06e20000040f0000000101200190000003410000c13d0000000001000019000006ee00010430000000030100006b0000000001000019000003f90000613d0000000701000029000000000101043300000003040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000041c0000013d00000020020000390000000004000019000000080600002900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000004050000413d000000030330006c000004190000813d00000003030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f00000008022000290000000002020433000000000232016f000000000021041b0000000301000029000000010110021000000001011001bf0000000202000029000000000012041b00000005010000290000000001010433000800000001001d000001be0110009c0000036d0000213d0000000401000039000700000001001d000000000101041a000000010210019000000001021002700000007f0320018f000000000302c019000300000003001d0000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000002c60000c13d0000000301000029000000200110008c000004510000413d00000007010000290000000000100435000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c0011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d00000008030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000004510000813d000000000002041b0000000102200039000000000312004b0000044d0000413d00000008010000290000001f0110008c000004660000a13d00000007010000290000000000100435000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c0011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d00000008030000290000000603300180000000000101043b000004740000c13d00000020020000390000047f0000013d000000080100006b00000000010000190000046b0000613d0000000401000029000000000101043300000008040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000048e0000013d00000020020000390000000004000019000000050600002900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000004770000413d000000080330006c0000048b0000813d00000008030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f00000005022000290000000002020433000000000232016f000000000021041b0000000801000029000000010110021000000001011001bf0000000702000029000000000012041b0000000501000039000000000201041a000001c1032001970000000006000411000000000363019f000000000031041b000000400100043d000800000001001d000001bc010000410000000003000414000001bc0430009c0000000003018019000000c001300210000001c205200197000001c3011001c70000800d020000390000000303000039000001c40400004106ec06e20000040f0000000101200190000003f20000613d0000000001000410000700000001001d000000000101004b000004bb0000c13d00000008030000290000004401300039000001ca02000041000000000021043500000024013000390000001f020000390000000000210435000001cb010000410000000000130435000000040130003900000020020000390000000000210435000001bc01000041000001bc0230009c00000000030180190000004001300210000001cc011001c7000006ee000104300000000201000039000000000201041a000001c50320009c000003100000813d000001c602200041000000000021041b00000007010000290000000000100435000000200000043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000003f20000613d000000000101043b000000000201041a000001c602200041000000000021041b000001c601000041000000400200043d00000000001204350000000001000414000001bc0310009c000001bc040000410000000001048019000001bc0320009c00000000020480190000004002200210000000c001100210000000000112019f000001c0011001c70000800d020000390000000303000039000001c8040000410000000005000019000000070600002906ec06e20000040f0000000101200190000003f20000613d000000200100003900000100001004430000012000000443000001c901000041000006ed0001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000402004b000004fb0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000524004b000004f40000413d000000000321001900000000000304350000001f02200039000000200300008a000000000232016f0000000001210019000000000001042d0004000000000002000400000003001d000001c201100198000005520000613d000201c20020019c0000055c0000613d000300000001001d0000000000100435000000200000043f000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000005500000613d000000000101043b000000000201041a000100000002001d000000040120006c000005660000413d00000003010000290000000000100435000000200000043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000005500000613d0000000103000029000000040230006a000000000101043b000000000021041b000000020100002900000000001004350000000001000414000001bc0210009c000001bc01008041000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000005500000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001bc020000410000000003000414000001bc0430009c0000000003028019000001bc0410009c00000000010280190000004001100210000000c002300210000000000112019f000001c0011001c70000800d020000390000000303000039000001c8040000410000000305000029000000020600002906ec06e20000040f0000000101200190000005500000613d000000000001042d0000000001000019000006ee00010430000000400100043d0000006402100039000001ff0300004100000000003204350000004402100039000001fe030000410000000000320435000000240210003900000025030000390000056f0000013d000000400100043d0000006402100039000001fd0300004100000000003204350000004402100039000001fc030000410000000000320435000000240210003900000023030000390000056f0000013d000000400100043d0000006402100039000001fa0300004100000000003204350000004402100039000001fb030000410000000000320435000000240210003900000026030000390000000000320435000001cb020000410000000000210435000000040210003900000020030000390000000000320435000001bc02000041000001bc0310009c00000000010280190000004001100210000001f2011001c7000006ee000104300003000000000002000001c201100198000005b60000613d000200000003001d000301c20020019c000005c00000613d000100000001001d00000000001004350000000101000039000000200010043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f00000001022001900000000303000029000005b40000613d000000000101043b0000000000300435000000200010043f0000000001000414000001bc0210009c000001bc01008041000000c001100210000001c7011001c7000080100200003906ec06e70000040f00000003060000290000000102200190000005b40000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001bc020000410000000003000414000001bc0430009c0000000003028019000001bc0410009c00000000010280190000004001100210000000c002300210000000000112019f000001c0011001c70000800d0200003900000003030000390000020304000041000000010500002906ec06e20000040f0000000101200190000005b40000613d000000000001042d0000000001000019000006ee00010430000000400100043d00000064021000390000020603000041000000000032043500000044021000390000020703000041000000000032043500000024021000390000002403000039000005c90000013d000000400100043d000000640210003900000204030000410000000000320435000000440210003900000205030000410000000000320435000000240210003900000022030000390000000000320435000001cb020000410000000000210435000000040210003900000020030000390000000000320435000001bc02000041000001bc0310009c00000000010280190000004001100210000001f2011001c7000006ee000104300005000000000002000300000003001d000400000002001d000001c201100197000500000001001d00000000001004350000000101000039000100000001001d000000200010043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000006380000613d000000000101043b0000000402000029000001c202200197000400000002001d0000000000200435000000200010043f0000000001000414000001bc0210009c000001bc01008041000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000006380000613d000000000101043b000000000201041a000000010100008a000200000002001d000000000112004b000006370000613d0000000202000029000000030120006c0000063a0000413d000000050100006b0000064c0000613d000000040100006b000006560000613d000000050100002900000000001004350000000101000029000000200010043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000006380000613d000000000101043b00000004020000290000000000200435000000200010043f0000000001000414000001bc0210009c000001bc01008041000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000006380000613d0000000203000029000000030230006a000000000101043b000000000021041b000000400100043d0000000000210435000001bc020000410000000003000414000001bc0430009c0000000003028019000001bc0410009c00000000010280190000004001100210000000c002300210000000000112019f000001c0011001c70000800d02000039000000030300003900000203040000410000000505000029000000040600002906ec06e20000040f0000000101200190000006380000613d000000000001042d0000000001000019000006ee00010430000000400100043d00000044021000390000020803000041000000000032043500000024021000390000001d030000390000000000320435000001cb020000410000000000210435000000040210003900000020030000390000000000320435000001bc02000041000001bc0310009c00000000010280190000004001100210000001cc011001c7000006ee00010430000000400100043d000000640210003900000206030000410000000000320435000000440210003900000207030000410000000000320435000000240210003900000024030000390000065f0000013d000000400100043d000000640210003900000204030000410000000000320435000000440210003900000205030000410000000000320435000000240210003900000022030000390000000000320435000001cb020000410000000000210435000000040210003900000020030000390000000000320435000001bc02000041000001bc0310009c00000000010280190000004001100210000001f2011001c7000006ee000104300003000000000002000300000002001d000001c204100198000006ad0000613d0000000000400435000000200000043f000001bc010000410000000002000414000001bc0320009c0000000002018019000000c001200210000001c7011001c70000801002000039000200000004001d06ec06e70000040f0000000102200190000006ab0000613d0000000202000029000000000101043b000000000301041a000100000003001d000000030130006c000006b70000413d0000000000200435000000200000043f000001bc030000410000000001000414000001bc0210009c0000000001038019000000c001100210000001c7011001c7000080100200003906ec06e70000040f0000000102200190000006ab0000613d00000003030000290000000102300069000000000101043b000000000021041b0000000201000039000000000201041a0000000002320049000000000021041b000000400100043d00000000003104350000000002000414000001bc0320009c000001bc040000410000000002048019000001bc0310009c00000000010480190000004001100210000000c002200210000000000112019f000001c0011001c70000800d020000390000000303000039000001c8040000410000000205000029000000000600001906ec06e20000040f0000000101200190000006ab0000613d000000000001042d0000000001000019000006ee00010430000000400100043d00000064021000390000020b03000041000000000032043500000044021000390000020c03000041000000000032043500000024021000390000002103000039000006c00000013d000000400100043d00000064021000390000020903000041000000000032043500000044021000390000020a030000410000000000320435000000240210003900000022030000390000000000320435000001cb020000410000000000210435000000040210003900000020030000390000000000320435000001bc02000041000001bc0310009c00000000010280190000004001100210000001f2011001c7000006ee00010430000001bc03000041000001bc0410009c00000000010380190000004001100210000001bc0420009c00000000020380190000006002200210000000000112019f0000000002000414000001bc0420009c0000000002038019000000c002200210000000000112019f000001c3011001c7000080100200003906ec06e70000040f0000000102200190000006e00000613d000000000101043b000000000001042d0000000001000019000006ee00010430000006e5002104210000000102000039000000000001042d0000000002000019000000000001042d000006ea002104230000000102000039000000000001042d0000000002000019000000000001042d000006ec00000432000006ed0001042e000006ee00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0fffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc3180000000000000000000000000000000000000000000000033b2e3c9fd0803ce80000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000aa60b06a00000000000000000000000000000000000000000000000000000000aa60b06b00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000079cc678f0000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000902d55a50000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000039509350000000000000000000000000000000000000000000000000000000004c0abcda000000000000000000000000000000000000000000000000000000004c0abcdb000000000000000000000000000000000000000000000000000000004f6ef09a00000000000000000000000000000000000000000000000000000000670171fd00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b34f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000000295be96e640669720000000fffffffffffffffffffffffffffffffffffffffffd6a416919bf9968e00000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7f000000000000000000000000000000000000000000a56fa5b99019a5c80000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000a56fa5b99019a5c7ffffffffffffffffffffffffffffffffffffffffffffffff5a905a466fe65a38000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e742065786365656473206245524332303a207472616e7366657220746f20746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f2061646472657300000000000000000000000000000000000000000000000000000000000000009baf021f44ab300876801f2851e297c091e469809bc2d7491ef5352ef8fedb3c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.