Source Code
Overview
HYPE Balance
HYPE Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 513 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 25610789 | 5 hrs ago | IN | 0 HYPE | 0.0001264 | ||||
| Approve | 25607270 | 6 hrs ago | IN | 0 HYPE | 0.00000327 | ||||
| Approve | 25573888 | 15 hrs ago | IN | 0 HYPE | 0.00002501 | ||||
| Approve | 25558259 | 20 hrs ago | IN | 0 HYPE | 0.00000305 | ||||
| Approve | 25544477 | 23 hrs ago | IN | 0 HYPE | 0.00005825 | ||||
| Approve | 25538393 | 25 hrs ago | IN | 0 HYPE | 0.00003809 | ||||
| Approve | 25530529 | 27 hrs ago | IN | 0 HYPE | 0.00003416 | ||||
| Approve | 25157334 | 5 days ago | IN | 0 HYPE | 0.00032427 | ||||
| Approve | 25153323 | 5 days ago | IN | 0 HYPE | 0.00000487 | ||||
| Approve | 25153216 | 5 days ago | IN | 0 HYPE | 0.00003148 | ||||
| Approve | 25080581 | 6 days ago | IN | 0 HYPE | 0.00003885 | ||||
| Approve | 25080576 | 6 days ago | IN | 0 HYPE | 0.00003874 | ||||
| Approve | 25076023 | 6 days ago | IN | 0 HYPE | 0.00009257 | ||||
| Approve | 25075899 | 6 days ago | IN | 0 HYPE | 0.00020836 | ||||
| Approve | 25075867 | 6 days ago | IN | 0 HYPE | 0.00025469 | ||||
| Approve | 25075841 | 6 days ago | IN | 0 HYPE | 0.00003589 | ||||
| Approve | 24515248 | 12 days ago | IN | 0 HYPE | 0.0002713 | ||||
| Approve | 23870891 | 20 days ago | IN | 0 HYPE | 0.00012348 | ||||
| Approve | 23870885 | 20 days ago | IN | 0 HYPE | 0.00012358 | ||||
| Approve | 23842888 | 20 days ago | IN | 0 HYPE | 0.00001859 | ||||
| Approve | 23841946 | 20 days ago | IN | 0 HYPE | 0.00001063 | ||||
| Approve | 23841911 | 20 days ago | IN | 0 HYPE | 0.00001175 | ||||
| Approve | 23841871 | 20 days ago | IN | 0 HYPE | 0.00001052 | ||||
| Approve | 23839732 | 20 days ago | IN | 0 HYPE | 0.00010435 | ||||
| Approve | 23839726 | 20 days ago | IN | 0 HYPE | 0.00009699 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 5332453 | 231 days ago | Contract Creation | 0 HYPE |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PToken
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 100 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity =0.8.24;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol";
import {Pausable} from "@openzeppelin/contracts/utils/Pausable.sol";
contract PToken is ERC20, AccessControl, Pausable {
bytes32 public constant PAUSE_ROLE = keccak256("PAUSE_ROLE");
bytes32 public constant SUPPLY_ADMIN_ROLE = keccak256("SUPPLY_ADMIN_ROLE");
constructor(string memory _name, string memory _symbol, uint8 _decimals)
ERC20(_name, _symbol, _decimals)
AccessControl()
{
_grantRole(PAUSE_ROLE, msg.sender);
_grantRole(SUPPLY_ADMIN_ROLE, msg.sender);
}
function mint(address to, uint256 value) public virtual whenNotPaused onlyRole(SUPPLY_ADMIN_ROLE) {
_mint(to, value);
}
function burn(address from, uint256 value) public virtual whenNotPaused onlyRole(SUPPLY_ADMIN_ROLE) {
_burn(from, value);
}
function transferFrom(address from, address to, uint256 amount) public override whenNotPaused returns (bool) {
return super.transferFrom(from, to, amount);
}
function transfer(address to, uint256 amount) public override whenNotPaused returns (bool) {
return super.transfer(to, amount);
}
function pause() public onlyRole(PAUSE_ROLE) {
_pause();
}
function unpause() public onlyRole(PAUSE_ROLE) {
_unpause();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```solidity
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```solidity
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
mapping(bytes32 role => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with an {AccessControlUnauthorizedAccount} error including the required role.
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual returns (bool) {
return _roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
* is missing `role`.
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
if (!hasRole(role, account)) {
_roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
/**
* @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
if (hasRole(role, account)) {
_roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)
pragma solidity ^0.8.20;
/**
* @dev External interface of AccessControl declared to support ERC-165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).
* Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
bool private _paused;
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
/**
* @dev The operation failed because the contract is paused.
*/
error EnforcedPause();
/**
* @dev The operation failed because the contract is not paused.
*/
error ExpectedPause();
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
if (paused()) {
revert EnforcedPause();
}
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
if (!paused()) {
revert ExpectedPause();
}
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
event Transfer(address indexed from, address indexed to, uint256 amount);
event Approval(address indexed owner, address indexed spender, uint256 amount);
/*//////////////////////////////////////////////////////////////
METADATA STORAGE
//////////////////////////////////////////////////////////////*/
string public name;
string public symbol;
uint8 public immutable decimals;
/*//////////////////////////////////////////////////////////////
ERC20 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 public totalSupply;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
/*//////////////////////////////////////////////////////////////
EIP-2612 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 internal immutable INITIAL_CHAIN_ID;
bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;
mapping(address => uint256) public nonces;
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals
) {
name = _name;
symbol = _symbol;
decimals = _decimals;
INITIAL_CHAIN_ID = block.chainid;
INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
}
/*//////////////////////////////////////////////////////////////
ERC20 LOGIC
//////////////////////////////////////////////////////////////*/
function approve(address spender, uint256 amount) public virtual returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transfer(address to, uint256 amount) public virtual returns (bool) {
balanceOf[msg.sender] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(msg.sender, to, amount);
return true;
}
function transferFrom(
address from,
address to,
uint256 amount
) public virtual returns (bool) {
uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.
if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;
balanceOf[from] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(from, to, amount);
return true;
}
/*//////////////////////////////////////////////////////////////
EIP-2612 LOGIC
//////////////////////////////////////////////////////////////*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");
// Unchecked because the only math done is incrementing
// the owner's nonce which cannot realistically overflow.
unchecked {
address recoveredAddress = ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256(
"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
),
v,
r,
s
);
require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");
allowance[recoveredAddress][spender] = value;
}
emit Approval(owner, spender, value);
}
function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
}
function computeDomainSeparator() internal view virtual returns (bytes32) {
return
keccak256(
abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(bytes(name)),
keccak256("1"),
block.chainid,
address(this)
)
);
}
/*//////////////////////////////////////////////////////////////
INTERNAL MINT/BURN LOGIC
//////////////////////////////////////////////////////////////*/
function _mint(address to, uint256 amount) internal virtual {
totalSupply += amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(address(0), to, amount);
}
function _burn(address from, uint256 amount) internal virtual {
balanceOf[from] -= amount;
// Cannot underflow because a user's balance
// will never be larger than the total supply.
unchecked {
totalSupply -= amount;
}
emit Transfer(from, address(0), amount);
}
}{
"evmVersion": "cancun",
"libraries": {},
"metadata": {
"appendCBOR": true,
"bytecodeHash": "ipfs",
"useLiteralContent": false
},
"optimizer": {
"enabled": true,
"runs": 100
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": [
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"create3-factory/=lib/create3-factory/",
"ds-test/=lib/forge-safe/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
"forge-safe/=lib/forge-safe/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin-foundry-upgrades/=lib/openzeppelin-foundry-upgrades/src/",
"solady/=lib/solady/src/",
"solidity-stringutils/=lib/openzeppelin-foundry-upgrades/lib/solidity-stringutils/",
"solmate/=lib/solmate/src/",
"surl/=lib/forge-safe/lib/surl/"
],
"viaIR": false
}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":"uint8","name":"_decimals","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e060405234801562000010575f80fd5b5060405162001671380380620016718339810160408190526200003391620002e6565b8282825f620000438482620003ef565b506001620000528382620003ef565b5060ff81166080524660a05262000068620000db565b60c05250506007805460ff1916905550620000a47f139c2898040ef16910dc9f44dc697df79363da767d8bc92f2e310312b816e46d3362000175565b50620000d17f23a9c4ee65761ec2e81561e8045f8a862a08ffd79b851cfa0fd04575046e70033362000175565b5050505062000535565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f5f6040516200010d9190620004bb565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b5f8281526006602090815260408083206001600160a01b038516845290915281205460ff166200021c575f8381526006602090815260408083206001600160a01b03861684529091529020805460ff19166001179055620001d33390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016200021f565b505f5b92915050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011262000249575f80fd5b81516001600160401b038082111562000266576200026662000225565b604051601f8301601f19908116603f0116810190828211818310171562000291576200029162000225565b8160405283815260209250866020858801011115620002ae575f80fd5b5f91505b83821015620002d15785820183015181830184015290820190620002b2565b5f602085830101528094505050505092915050565b5f805f60608486031215620002f9575f80fd5b83516001600160401b038082111562000310575f80fd5b6200031e8783880162000239565b9450602086015191508082111562000334575f80fd5b50620003438682870162000239565b925050604084015160ff811681146200035a575f80fd5b809150509250925092565b600181811c908216806200037a57607f821691505b6020821081036200039957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003ea57805f5260205f20601f840160051c81016020851015620003c65750805b601f840160051c820191505b81811015620003e7575f8155600101620003d2565b50505b505050565b81516001600160401b038111156200040b576200040b62000225565b62000423816200041c845462000365565b846200039f565b602080601f83116001811462000459575f8415620004415750858301515b5f19600386901b1c1916600185901b178555620004b3565b5f85815260208120601f198616915b82811015620004895788860151825594840194600190910190840162000468565b5085821015620004a757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f808354620004ca8162000365565b60018281168015620004e55760018114620004fb5762000529565b60ff198416875282151583028701945062000529565b875f526020805f205f5b85811015620005205781548a82015290840190820162000505565b50505082870194505b50929695505050505050565b60805160a05160c051611111620005605f395f61054801525f61051301525f61022301526111115ff3fe608060405234801561000f575f80fd5b5060043610610169575f3560e01c80635c975abb116100ca57806395d89b411161008457806395d89b41146103195780639dc29fac14610321578063a217fddf14610334578063a9059cbb1461033b578063d505accf1461034e578063d547741f14610361578063dd62ed3e14610374575f80fd5b80635c975abb146102a15780636a05a4af146102ac57806370a08231146102c05780637ecebe00146102df5780638456cb59146102fe57806391d1485414610306575f80fd5b80632f2ff15d116101265780632f2ff15d14610209578063313ce5671461021e5780633644e5151461025757806336568abe1461025f578063389ed267146102725780633f4ba83a1461028657806340c10f191461028e575f80fd5b806301ffc9a71461016d57806306fdde0314610195578063095ea7b3146101aa57806318160ddd146101bd57806323b872dd146101d4578063248a9ca3146101e7575b5f80fd5b61018061017b366004610d8d565b61039e565b60405190151581526020015b60405180910390f35b61019d6103d4565b60405161018c9190610db4565b6101806101b8366004610e1b565b61045f565b6101c660025481565b60405190815260200161018c565b6101806101e2366004610e43565b6104ca565b6101c66101f5366004610e7c565b5f9081526006602052604090206001015490565b61021c610217366004610e93565b6104e6565b005b6102457f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161018c565b6101c6610510565b61021c61026d366004610e93565b61056a565b6101c65f8051602061109c83398151915281565b61021c6105a2565b61021c61029c366004610e1b565b6105c4565b60075460ff16610180565b6101c65f805160206110bc83398151915281565b6101c66102ce366004610ebd565b60036020525f908152604090205481565b6101c66102ed366004610ebd565b60056020525f908152604090205481565b61021c6105ed565b610180610314366004610e93565b61060c565b61019d610636565b61021c61032f366004610e1b565b610643565b6101c65f81565b610180610349366004610e1b565b61066c565b61021c61035c366004610ed6565b610686565b61021c61036f366004610e93565b6108c3565b6101c6610382366004610f43565b600460209081525f928352604080842090915290825290205481565b5f6001600160e01b03198216637965db0b60e01b14806103ce57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f80546103e090610f6b565b80601f016020809104026020016040519081016040528092919081815260200182805461040c90610f6b565b80156104575780601f1061042e57610100808354040283529160200191610457565b820191905f5260205f20905b81548152906001019060200180831161043a57829003601f168201915b505050505081565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104b99086815260200190565b60405180910390a350600192915050565b5f6104d36108e7565b6104de84848461090d565b949350505050565b5f82815260066020526040902060010154610500816109e7565b61050a83836109f1565b50505050565b5f7f0000000000000000000000000000000000000000000000000000000000000000461461054557610540610a82565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6001600160a01b03811633146105935760405163334bd91960e11b815260040160405180910390fd5b61059d8282610b1a565b505050565b5f8051602061109c8339815191526105b9816109e7565b6105c1610b85565b50565b6105cc6108e7565b5f805160206110bc8339815191526105e3816109e7565b61059d8383610bd7565b5f8051602061109c833981519152610604816109e7565b6105c1610c2e565b5f9182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600180546103e090610f6b565b61064b6108e7565b5f805160206110bc833981519152610662816109e7565b61059d8383610c6b565b5f6106756108e7565b61067f8383610cca565b9392505050565b428410156106d55760405162461bcd60e51b815260206004820152601760248201527614115493525517d11150511312539157d1561412549151604a1b60448201526064015b60405180910390fd5b5f60016106e0610510565b6001600160a01b038a81165f8181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f1981840301815282825280516020918201205f84529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156107e8573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381161580159061081e5750876001600160a01b0316816001600160a01b0316145b61085b5760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016106cc565b6001600160a01b039081165f9081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b5f828152600660205260409020600101546108dd816109e7565b61050a8383610b1a565b60075460ff161561090b5760405163d93c066560e01b815260040160405180910390fd5b565b6001600160a01b0383165f9081526004602090815260408083203384529091528120545f198114610966576109428382610fb7565b6001600160a01b0386165f9081526004602090815260408083203384529091529020555b6001600160a01b0385165f908152600360205260408120805485929061098d908490610fb7565b90915550506001600160a01b038085165f81815260036020526040908190208054870190555190918716905f8051602061107c833981519152906109d49087815260200190565b60405180910390a3506001949350505050565b6105c18133610d2d565b5f6109fc838361060c565b610a7b575f8381526006602090815260408083206001600160a01b03861684529091529020805460ff19166001179055610a333390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016103ce565b505f6103ce565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f5f604051610ab29190610fca565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b5f610b25838361060c565b15610a7b575f8381526006602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45060016103ce565b610b8d610d6a565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b8060025f828254610be89190611068565b90915550506001600160a01b0382165f818152600360209081526040808320805486019055518481525f8051602061107c83398151915291015b60405180910390a35050565b610c366108e7565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bba3390565b6001600160a01b0382165f9081526003602052604081208054839290610c92908490610fb7565b90915550506002805482900390556040518181525f906001600160a01b038416905f8051602061107c83398151915290602001610c22565b335f90815260036020526040812080548391908390610cea908490610fb7565b90915550506001600160a01b0383165f81815260036020526040908190208054850190555133905f8051602061107c833981519152906104b99086815260200190565b610d37828261060c565b610d665760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016106cc565b5050565b60075460ff1661090b57604051638dfc202b60e01b815260040160405180910390fd5b5f60208284031215610d9d575f80fd5b81356001600160e01b03198116811461067f575f80fd5b5f602080835283518060208501525f5b81811015610de057858101830151858201604001528201610dc4565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e16575f80fd5b919050565b5f8060408385031215610e2c575f80fd5b610e3583610e00565b946020939093013593505050565b5f805f60608486031215610e55575f80fd5b610e5e84610e00565b9250610e6c60208501610e00565b9150604084013590509250925092565b5f60208284031215610e8c575f80fd5b5035919050565b5f8060408385031215610ea4575f80fd5b82359150610eb460208401610e00565b90509250929050565b5f60208284031215610ecd575f80fd5b61067f82610e00565b5f805f805f805f60e0888a031215610eec575f80fd5b610ef588610e00565b9650610f0360208901610e00565b95506040880135945060608801359350608088013560ff81168114610f26575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f8060408385031215610f54575f80fd5b610f5d83610e00565b9150610eb460208401610e00565b600181811c90821680610f7f57607f821691505b602082108103610f9d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103ce576103ce610fa3565b5f8083545f60018260011c91506001831680610fe757607f831692505b6020808410820361100657634e487b7160e01b5f52602260045260245ffd5b81801561101a576001811461102f5761105a565b60ff198616895284151585028901965061105a565b5f8a8152602090205f5b868110156110525781548b820152908501908301611039565b505084890196505b509498975050505050505050565b808201808211156103ce576103ce610fa356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef139c2898040ef16910dc9f44dc697df79363da767d8bc92f2e310312b816e46d23a9c4ee65761ec2e81561e8045f8a862a08ffd79b851cfa0fd04575046e7003a26469706673582212201880e3093d214bc4cd4b79547e6e890f98c35da35eba6acb209e3eb960a3b19664736f6c63430008180033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001652756d70656c2050743a2048797072626561742053310000000000000000000000000000000000000000000000000000000000000000000000000000000000087048424541542d31000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610169575f3560e01c80635c975abb116100ca57806395d89b411161008457806395d89b41146103195780639dc29fac14610321578063a217fddf14610334578063a9059cbb1461033b578063d505accf1461034e578063d547741f14610361578063dd62ed3e14610374575f80fd5b80635c975abb146102a15780636a05a4af146102ac57806370a08231146102c05780637ecebe00146102df5780638456cb59146102fe57806391d1485414610306575f80fd5b80632f2ff15d116101265780632f2ff15d14610209578063313ce5671461021e5780633644e5151461025757806336568abe1461025f578063389ed267146102725780633f4ba83a1461028657806340c10f191461028e575f80fd5b806301ffc9a71461016d57806306fdde0314610195578063095ea7b3146101aa57806318160ddd146101bd57806323b872dd146101d4578063248a9ca3146101e7575b5f80fd5b61018061017b366004610d8d565b61039e565b60405190151581526020015b60405180910390f35b61019d6103d4565b60405161018c9190610db4565b6101806101b8366004610e1b565b61045f565b6101c660025481565b60405190815260200161018c565b6101806101e2366004610e43565b6104ca565b6101c66101f5366004610e7c565b5f9081526006602052604090206001015490565b61021c610217366004610e93565b6104e6565b005b6102457f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff909116815260200161018c565b6101c6610510565b61021c61026d366004610e93565b61056a565b6101c65f8051602061109c83398151915281565b61021c6105a2565b61021c61029c366004610e1b565b6105c4565b60075460ff16610180565b6101c65f805160206110bc83398151915281565b6101c66102ce366004610ebd565b60036020525f908152604090205481565b6101c66102ed366004610ebd565b60056020525f908152604090205481565b61021c6105ed565b610180610314366004610e93565b61060c565b61019d610636565b61021c61032f366004610e1b565b610643565b6101c65f81565b610180610349366004610e1b565b61066c565b61021c61035c366004610ed6565b610686565b61021c61036f366004610e93565b6108c3565b6101c6610382366004610f43565b600460209081525f928352604080842090915290825290205481565b5f6001600160e01b03198216637965db0b60e01b14806103ce57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f80546103e090610f6b565b80601f016020809104026020016040519081016040528092919081815260200182805461040c90610f6b565b80156104575780601f1061042e57610100808354040283529160200191610457565b820191905f5260205f20905b81548152906001019060200180831161043a57829003601f168201915b505050505081565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104b99086815260200190565b60405180910390a350600192915050565b5f6104d36108e7565b6104de84848461090d565b949350505050565b5f82815260066020526040902060010154610500816109e7565b61050a83836109f1565b50505050565b5f7f00000000000000000000000000000000000000000000000000000000000003e7461461054557610540610a82565b905090565b507f0f44bfa853cbdbb7d378357005376fe3fa95795801e732a208a444fb3f2801ed90565b6001600160a01b03811633146105935760405163334bd91960e11b815260040160405180910390fd5b61059d8282610b1a565b505050565b5f8051602061109c8339815191526105b9816109e7565b6105c1610b85565b50565b6105cc6108e7565b5f805160206110bc8339815191526105e3816109e7565b61059d8383610bd7565b5f8051602061109c833981519152610604816109e7565b6105c1610c2e565b5f9182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600180546103e090610f6b565b61064b6108e7565b5f805160206110bc833981519152610662816109e7565b61059d8383610c6b565b5f6106756108e7565b61067f8383610cca565b9392505050565b428410156106d55760405162461bcd60e51b815260206004820152601760248201527614115493525517d11150511312539157d1561412549151604a1b60448201526064015b60405180910390fd5b5f60016106e0610510565b6001600160a01b038a81165f8181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f1981840301815282825280516020918201205f84529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156107e8573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381161580159061081e5750876001600160a01b0316816001600160a01b0316145b61085b5760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016106cc565b6001600160a01b039081165f9081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b5f828152600660205260409020600101546108dd816109e7565b61050a8383610b1a565b60075460ff161561090b5760405163d93c066560e01b815260040160405180910390fd5b565b6001600160a01b0383165f9081526004602090815260408083203384529091528120545f198114610966576109428382610fb7565b6001600160a01b0386165f9081526004602090815260408083203384529091529020555b6001600160a01b0385165f908152600360205260408120805485929061098d908490610fb7565b90915550506001600160a01b038085165f81815260036020526040908190208054870190555190918716905f8051602061107c833981519152906109d49087815260200190565b60405180910390a3506001949350505050565b6105c18133610d2d565b5f6109fc838361060c565b610a7b575f8381526006602090815260408083206001600160a01b03861684529091529020805460ff19166001179055610a333390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016103ce565b505f6103ce565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f5f604051610ab29190610fca565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b5f610b25838361060c565b15610a7b575f8381526006602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45060016103ce565b610b8d610d6a565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b8060025f828254610be89190611068565b90915550506001600160a01b0382165f818152600360209081526040808320805486019055518481525f8051602061107c83398151915291015b60405180910390a35050565b610c366108e7565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bba3390565b6001600160a01b0382165f9081526003602052604081208054839290610c92908490610fb7565b90915550506002805482900390556040518181525f906001600160a01b038416905f8051602061107c83398151915290602001610c22565b335f90815260036020526040812080548391908390610cea908490610fb7565b90915550506001600160a01b0383165f81815260036020526040908190208054850190555133905f8051602061107c833981519152906104b99086815260200190565b610d37828261060c565b610d665760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016106cc565b5050565b60075460ff1661090b57604051638dfc202b60e01b815260040160405180910390fd5b5f60208284031215610d9d575f80fd5b81356001600160e01b03198116811461067f575f80fd5b5f602080835283518060208501525f5b81811015610de057858101830151858201604001528201610dc4565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e16575f80fd5b919050565b5f8060408385031215610e2c575f80fd5b610e3583610e00565b946020939093013593505050565b5f805f60608486031215610e55575f80fd5b610e5e84610e00565b9250610e6c60208501610e00565b9150604084013590509250925092565b5f60208284031215610e8c575f80fd5b5035919050565b5f8060408385031215610ea4575f80fd5b82359150610eb460208401610e00565b90509250929050565b5f60208284031215610ecd575f80fd5b61067f82610e00565b5f805f805f805f60e0888a031215610eec575f80fd5b610ef588610e00565b9650610f0360208901610e00565b95506040880135945060608801359350608088013560ff81168114610f26575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f8060408385031215610f54575f80fd5b610f5d83610e00565b9150610eb460208401610e00565b600181811c90821680610f7f57607f821691505b602082108103610f9d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103ce576103ce610fa3565b5f8083545f60018260011c91506001831680610fe757607f831692505b6020808410820361100657634e487b7160e01b5f52602260045260245ffd5b81801561101a576001811461102f5761105a565b60ff198616895284151585028901965061105a565b5f8a8152602090205f5b868110156110525781548b820152908501908301611039565b505084890196505b509498975050505050505050565b808201808211156103ce576103ce610fa356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef139c2898040ef16910dc9f44dc697df79363da767d8bc92f2e310312b816e46d23a9c4ee65761ec2e81561e8045f8a862a08ffd79b851cfa0fd04575046e7003a26469706673582212201880e3093d214bc4cd4b79547e6e890f98c35da35eba6acb209e3eb960a3b19664736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001652756d70656c2050743a2048797072626561742053310000000000000000000000000000000000000000000000000000000000000000000000000000000000087048424541542d31000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Rumpel Pt: Hyprbeat S1
Arg [1] : _symbol (string): pHBEAT-1
Arg [2] : _decimals (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 52756d70656c2050743a20487970726265617420533100000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 7048424541542d31000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in HYPE
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.