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 | 3642269 | 45 hrs ago | IN | 0 ETH | 0.00000483 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3634747 | 47 hrs 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 Source Code Verified (Exact Match)
Contract Name:
StreamerSocialToken
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; contract StreamerSocialToken is ERC20, ERC20Burnable { address public curator; address public streamer; constructor( string memory name_, string memory symbol_, uint256 maxSupply_, address curator_, address streamer_ ) ERC20(name_, symbol_) { curator = curator_; streamer = streamer_; _mint(msg.sender, maxSupply_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
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":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"address","name":"curator_","type":"address"},{"internalType":"address","name":"streamer_","type":"address"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"curator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"streamer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]
Contract Creation Code
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000031813be8150c17d7393d5188aca2dc75e7a8a06e00000000000000000000000031813be8150c17d7393d5188aca2dc75e7a8a06e000000000000000000000000000000000000000000000000000000000000000b546573742062792037374200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045445535400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0001000000000002000900000000000200000000000103550000008004000039000000400040043f00000060031002700000015a0330019700000001002001900000002c0000c13d000000040030008c0000004b0000413d000000000201043b000000e002200270000001680020009c000000660000a13d000001690020009c000000750000213d0000016f0020009c0000009a0000213d000001720020009c000001ec0000613d000001730020009c0000004b0000c13d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000402043b0000015f0040009c0000004b0000213d0000002401100370000000000301043b000800000003001d00000000020004110000000001040019000900000004001d056403e90000040f00000009010000290000000802000029056404e90000040f0000000001000019000005650001042e0000000002000416000000000002004b0000004b0000c13d0000001f023000390000015b022001970000008002200039000000400020043f0000001f0530018f0000015c0630019800000080026000390000003c0000613d000000000701034f000000007807043c0000000004840436000000000024004b000000380000c13d000000000005004b000000490000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000a00030008c0000004d0000813d00000000010000190000056600010430000000800400043d0000015d0040009c0000004b0000213d0000001f01400039000000000031004b00000000020000190000015e020080410000015e01100197000000000001004b00000000050000190000015e050040410000015e0010009c000000000502c019000000000005004b0000004b0000c13d000000800140003900000000020104330000015d0020009c000000ea0000a13d0000018401000041000000000010043f0000004101000039000000040010043f00000185010000410000056600010430000001740020009c000000800000a13d000001750020009c0000008b0000213d000001780020009c0000018e0000613d000001790020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000001201000039000000800010043f0000017d01000041000005650001042e0000016a0020009c000000dd0000213d0000016d0020009c000001fa0000613d0000016e0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000601000039000000e50000013d0000017a0020009c0000024d0000613d0000017b0020009c000001de0000613d0000017c0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000201000039000002490000013d000001760020009c000001a70000613d000001770020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000201043b0000000001000411056404e90000040f0000000001000019000005650001042e000001700020009c0000020f0000613d000001710020009c0000004b0000c13d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b000900000002001d0000015f0020009c0000004b0000213d0000002401100370000000000101043b000800000001001d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f00000001002001900000004b0000613d000000000101043b0000000902000029000000000020043f000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000080310006c000001d30000813d000000400100043d00000064021000390000017f030000410000000000320435000000440210003900000180030000410000000000320435000000240210003900000025030000390000000000320435000001660200004100000000002104350000000402100039000000200300003900000000003204350000015a0010009c0000015a01008041000000400110021000000181011001c700000566000104300000016b0020009c0000022f0000613d0000016c0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000501000039000000000101041a0000015f01100197000000800010043f0000017d01000041000005650001042e0000001f0120003900000187011001970000003f011000390000018701100197000000400900043d0000000005190019000000000095004b000000000100003900000001010040390000015d0050009c000000600000213d0000000100100190000000600000c13d0000008001300039000000400050043f000000000a290436000000a0044000390000000005420019000000000015004b0000004b0000213d000000000002004b000001080000613d000000000500001900000000065a00190000000007450019000000000707043300000000007604350000002005500039000000000025004b000001010000413d000000000292001900000020022000390000000000020435000000a00400043d0000015d0040009c0000004b0000213d0000001f02400039000000000032004b00000000030000190000015e030080410000015e02200197000000000002004b00000000050000190000015e050040410000015e0020009c000000000503c019000000000005004b0000004b0000c13d000000800240003900000000020204330000015d0020009c000000600000213d0000001f0320003900000187033001970000003f033000390000018703300197000000400600043d0000000003360019000000000063004b000000000500003900000001050040390000015d0030009c000000600000213d0000000100500190000000600000c13d000000400030043f0000000007260436000000a0034000390000000004320019000000000014004b0000004b0000213d000000000002004b0000013b0000613d000000000100001900000000041700190000000005310019000000000505043300000000005404350000002001100039000000000021004b000001340000413d000000000162001900000020011000390000000000010435000000e00200043d0000015f0020009c0000004b0000213d000001000100043d0000015f0010009c0000004b0000213d000600000007001d000700000002001d000800000001001d0000000001090433000900000001001d0000015d0010009c000000600000213d00020000000a001d000300000009001d000400000006001d0000000301000039000000000101041a000000010210019000000001011002700000007f0110618f000500000001001d0000001f0010008c00000000010000390000000101002039000000000012004b0000025c0000c13d000000c00100043d000100000001001d0000000501000029000000200010008c0000017a0000413d0000000301000039000000000010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000160011001c700008010020000390564055f0000040f00000001002001900000004b0000613d00000009030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000005010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000017a0000813d000000000002041b0000000102200039000000000012004b000001760000413d00000009010000290000001f0010008c0000028e0000a13d0000000301000039000000000010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000160011001c700008010020000390564055f0000040f0000000100200190000000200200008a0000004b0000613d0000000902200180000000000101043b0000029b0000c13d0000002003000039000002a80000013d000000640030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000402043b0000015f0040009c0000004b0000213d0000002402100370000000000202043b0000015f0020009c0000004b0000213d0000004401100370000000000301043b000800000003001d000900000002001d00000000020004110000000001040019000700000004001d056403e90000040f000000070100002900000009020000290000000803000029000002060000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b000900000001001d0000015f0010009c0000004b0000213d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f00000001002001900000004b0000613d000000000101043b0000000902000029000000000020043f000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f00000001002001900000004b0000613d000000000101043b000000000101041a00000024020000390000000002200367000000000202043b000000000012001a000003770000413d000000000312001900000000010004110000000902000029056403920000040f000000400100043d000000010200003900000000002104350000015a0010009c0000015a0100804100000040011002100000017e011001c7000005650001042e000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b0000015f0020009c0000004b0000213d0000002401100370000000000301043b0000000001000411056403920000040f000002070000013d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b0000015f0010009c0000004b0000213d000000000010043f000000200000043f00000040020000390000000001000019000002480000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b0000015f0020009c0000004b0000213d0000002401100370000000000301043b0000000001000411056404760000040f0000000101000039000000400200043d00000000001204350000015a0020009c0000015a0200804100000040012002100000017e011001c7000005650001042e0000000001000416000000000001004b0000004b0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000025c0000c13d000000800010043f000000000005004b000002650000613d000000000030043f000000020020008c0000026e0000413d000001820200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002260000413d0000027a0000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b0000015f0020009c0000004b0000213d0000002401100370000000000101043b0000015f0010009c0000004b0000213d000000000020043f000900000001001d0000000101000039000000200010043f00000040020000390000000001000019056405450000040f0000000902000029000000000020043f000000200010043f00000000010000190000004002000039056405450000040f000000000101041a000000800010043f0000017d01000041000005650001042e0000000001000416000000000001004b0000004b0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002620000613d0000018401000041000000000010043f0000002201000039000000040010043f00000185010000410000056600010430000000800010043f000000000005004b0000026b0000c13d0000018801200197000000a00010043f000000000004004b000000c001000039000000a0010060390000027b0000013d000000000030043f000000020020008c000002700000813d00000020010000390000027f0000013d000001860200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002720000413d000000c001300039000000610110008a0000018701100197000001830010009c000000600000213d0000008001100039000900000001001d000000400010043f00000080020000390564037d0000040f000000090200002900000000012100490000015a0010009c0000015a0100804100000060011002100000015a0020009c0000015a020080410000004002200210000000000121019f000005650001042e000000090000006b0000000001000019000002930000613d0000000201000029000000000101043300000009040000290000000302400210000001890220027f0000018902200167000000000121016f0000000102400210000000000121019f000002b60000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002a10000c13d000000090020006c000002b30000813d00000009020000290000000302200210000000f80220018f000001890220027f000001890220016700000003033000290000000003030433000000000223016f000000000021041b0000000901000029000000010110021000000001011001bf0000000302000039000000000012041b00000004010000290000000001010433000900000001001d0000015d0010009c000000600000213d0000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000500000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000025c0000c13d0000000501000029000000200010008c000002e80000413d0000000401000039000000000010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000160011001c700008010020000390564055f0000040f00000001002001900000004b0000613d00000009030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000005010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000002e80000813d000000000002041b0000000102200039000000000012004b000002e40000413d00000009010000290000001f0010008c000002fc0000a13d0000000401000039000000000010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000160011001c700008010020000390564055f0000040f0000000100200190000000200200008a0000004b0000613d0000000902200180000000000101043b000003090000c13d0000002003000039000003160000013d000000090000006b0000000001000019000003010000613d0000000601000029000000000101043300000009040000290000000302400210000001890220027f0000018902200167000000000121016f0000000102400210000000000121019f000003240000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000030f0000c13d000000090020006c000003210000813d00000009020000290000000302200210000000f80220018f000001890220027f000001890220016700000004033000290000000003030433000000000223016f000000000021041b0000000901000029000000010110021000000001011001bf0000000402000039000000000012041b00000007010000290000015f011001970000000502000039000000000302041a0000016103300197000000000113019f000000000012041b00000008010000290000015f011001970000000602000039000000000302041a0000016103300197000000000113019f000000000012041b0000000001000411000000000001004b000003480000c13d000000400100043d00000044021000390000016503000041000000000032043500000024021000390000001f030000390000000000320435000001660200004100000000002104350000000402100039000000200300003900000000003204350000015a0010009c0000015a01008041000000400110021000000167011001c700000566000104300000000201000039000000000201041a000000010020002a000003770000413d0000000102200029000000000021041b0000000001000411000000000010043f000000200000043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000001030000290000000002320019000000000021041b000000400100043d00000000003104350000015a0010009c0000015a01008041000000400110021000000000020004140000015a0020009c0000015a02008041000000c002200210000000000121019f00000160011001c70000800d0200003900000003030000390000016304000041000000000500001900000000060004110564055a0000040f00000001002001900000004b0000613d0000002001000039000001000010044300000120000004430000016401000041000005650001042e0000018401000041000000000010043f0000001101000039000000040010043f0000018501000041000005660001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000038c0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000003850000413d000000000321001900000000000304350000001f0220003900000187022001970000000001210019000000000001042d00030000000000020000015f01100198000003cb0000613d000200000003001d0003015f0020019c000003d50000613d000100000001001d000000000010043f0000000101000039000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f00000001002001900000000303000029000003c90000613d000000000101043b000000000030043f000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f00000003060000290000000100200190000003c90000613d000000000101043b0000000202000029000000000021041b000000400100043d00000000002104350000015a0010009c0000015a01008041000000400110021000000000020004140000015a0020009c0000015a02008041000000c002200210000000000112019f00000160011001c70000800d0200003900000003030000390000018a0400004100000001050000290564055a0000040f0000000100200190000003c90000613d000000000001042d00000000010000190000056600010430000000400100043d00000064021000390000018d03000041000000000032043500000044021000390000018e03000041000000000032043500000024021000390000002403000039000003de0000013d000000400100043d00000064021000390000018b03000041000000000032043500000044021000390000018c030000410000000000320435000000240210003900000022030000390000000000320435000001660200004100000000002104350000000402100039000000200300003900000000003204350000015a0010009c0000015a01008041000000400110021000000181011001c700000566000104300003000000000002000100000003001d000200000002001d0000015f01100197000300000001001d000000000010043f0000000101000039000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f0000000100200190000004450000613d000000000101043b00000002020000290000015f02200197000200000002001d000000000020043f000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f0000000100200190000004450000613d000000000101043b000000000101041a000001890010009c000004440000613d000000010210006c000004470000413d000000030000006b000004580000613d000100000002001d000000020000006b000004620000613d0000000301000029000000000010043f0000000101000039000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f0000000100200190000004450000613d000000000101043b0000000202000029000000000020043f000000200010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f0000000100200190000004450000613d000000000101043b0000000102000029000000000021041b000000400100043d00000000002104350000015a0010009c0000015a01008041000000400110021000000000020004140000015a0020009c0000015a02008041000000c002200210000000000112019f00000160011001c70000800d0200003900000003030000390000018a04000041000000030500002900000002060000290564055a0000040f0000000100200190000004450000613d000000000001042d00000000010000190000056600010430000000400100043d00000044021000390000018f03000041000000000032043500000024021000390000001d030000390000000000320435000001660200004100000000002104350000000402100039000000200300003900000000003204350000015a0010009c0000015a01008041000000400110021000000167011001c70000056600010430000000400100043d00000064021000390000018d03000041000000000032043500000044021000390000018e030000410000000000320435000000240210003900000024030000390000046b0000013d000000400100043d00000064021000390000018b03000041000000000032043500000044021000390000018c030000410000000000320435000000240210003900000022030000390000000000320435000001660200004100000000002104350000000402100039000000200300003900000000003204350000015a0010009c0000015a01008041000000400110021000000181011001c700000566000104300004000000000002000400000003001d0000015f01100198000004c10000613d0002015f0020019c000004cb0000613d000300000001001d000000000010043f000000200000043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f0000000100200190000004bf0000613d000000000101043b000000000101041a0001000400100074000004d50000413d0000000301000029000000000010043f000000200000043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f0000000100200190000004bf0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f0000000100200190000004bf0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d00000000003104350000015a0010009c0000015a01008041000000400110021000000000020004140000015a0020009c0000015a02008041000000c002200210000000000112019f00000160011001c70000800d0200003900000003030000390000016304000041000000030500002900000002060000290564055a0000040f0000000100200190000004bf0000613d000000000001042d00000000010000190000056600010430000000400100043d00000064021000390000019403000041000000000032043500000044021000390000019503000041000000000032043500000024021000390000002503000039000004de0000013d000000400100043d00000064021000390000019203000041000000000032043500000044021000390000019303000041000000000032043500000024021000390000002303000039000004de0000013d000000400100043d000000640210003900000190030000410000000000320435000000440210003900000191030000410000000000320435000000240210003900000026030000390000000000320435000001660200004100000000002104350000000402100039000000200300003900000000003204350000015a0010009c0000015a01008041000000400110021000000181011001c700000566000104300003000000000002000300000002001d0000015f03100198000005270000613d000000000030043f000000200000043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c70000801002000039000200000003001d0564055f0000040f0000000100200190000005250000613d0000000202000029000000000101043b000000000101041a0001000300100074000005310000413d000000000020043f000000200000043f00000000010004140000015a0010009c0000015a01008041000000c00110021000000162011001c700008010020000390564055f0000040f0000000100200190000005250000613d000000000101043b0000000102000029000000000021041b0000000201000039000000000201041a00000003030000290000000002320049000000000021041b000000400100043d00000000003104350000015a0010009c0000015a01008041000000400110021000000000020004140000015a0020009c0000015a02008041000000c002200210000000000112019f00000160011001c70000800d0200003900000003030000390000016304000041000000020500002900000000060000190564055a0000040f0000000100200190000005250000613d000000000001042d00000000010000190000056600010430000000400100043d000000640210003900000198030000410000000000320435000000440210003900000199030000410000000000320435000000240210003900000021030000390000053a0000013d000000400100043d000000640210003900000196030000410000000000320435000000440210003900000197030000410000000000320435000000240210003900000022030000390000000000320435000001660200004100000000002104350000000402100039000000200300003900000000003204350000015a0010009c0000015a01008041000000400110021000000181011001c700000566000104300000015a0010009c0000015a0100804100000040011002100000015a0020009c0000015a020080410000006002200210000000000112019f00000000020004140000015a0020009c0000015a02008041000000c002200210000000000112019f0000019a011001c700008010020000390564055f0000040f0000000100200190000005580000613d000000000101043b000000000001042d000000000100001900000566000104300000055d002104210000000102000039000000000001042d0000000002000019000000000001042d00000562002104230000000102000039000000000001042d0000000002000019000000000001042d0000056400000432000005650001042e0000056600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e66f53b700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000cecf13f50000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d70000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc67900000000000000000000000000000000000000000000000000000000023b872dc000000000000000000000000000000000000000000000000000000003950935000000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7f4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f2061646472657302000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb41210debcd36f539e1787d6e32883f22fdfa862461b431410e40bdfde5e7e4
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000031813be8150c17d7393d5188aca2dc75e7a8a06e00000000000000000000000031813be8150c17d7393d5188aca2dc75e7a8a06e000000000000000000000000000000000000000000000000000000000000000b546573742062792037374200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045445535400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Test by 77B
Arg [1] : symbol_ (string): TEST
Arg [2] : maxSupply_ (uint256): 1000000000000000000000000000
Arg [3] : curator_ (address): 0x31813BE8150c17d7393d5188acA2dC75E7a8A06E
Arg [4] : streamer_ (address): 0x31813BE8150c17d7393d5188acA2dC75E7a8A06E
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 00000000000000000000000031813be8150c17d7393d5188aca2dc75e7a8a06e
Arg [4] : 00000000000000000000000031813be8150c17d7393d5188aca2dc75e7a8a06e
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 5465737420627920373742000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 5445535400000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 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.