Address
0x6361f338ab8def2af3f2a1be7bd8a7db3156f7e7Current Holdings
$0.00
TXs sent
not counted
First Active
2026-08-26
block 27,388,064
Last Active
16 days ago
block 27,448,046
Funded By
not identified
Net worth historyi
No net-worth snapshots recorded yet
exact matchProbablyNothingsolc 0.8.4+commit.c7e474f2runtime exact · creation exact
//SPDX-License-Identifier: Unlicense
// *****+=:. .=*****+-. -#@@#-. .+*****=:. .****+: :*****+=:. -***: -+**= =***.
// ...:=*#%%#*=:.. .+%@*. @@@@%@@@@* .#@@@%%@@@*. +@@@@%@@@- :%@@@%%@@@- +@@@@@# -@@@@%@@@@+ +@@@- #@@@: %@@%
// .:=%@@@@@@@@@@@@@@#-. .#@@@@%: @@@% .#@@%=.#@@* +@@@= -%@@#: #@@@: :%@@- .@@@@ .@@@#@@# -@@@* :%@@*: +@@@- =@@@+ =@@@.
// .-%@@@@@@%%%%%%%%@@@@@@+=%@@@%*. @@@% :@@@*.#@@* =@@@= +@@@- *@@@- :%@@=..%@@@ .@@%.@@%: -@@@* .+@@#: +@@@- *@@@:%@@+
// -%@@@@%##=. :*##@@@@@@@%#. @@@@:-*@@%=.#@@#::*@@%- +@@@- +@@@= :%@@*+#@@@= +@@%.@@@# -@@@#+#@@@= +@@@- .#@@=@@%
// .=@@@@#*: *@@@@@#- @@@@@@@@#+ .#@@@@@@@@= +@@@- +@@@+.:%@@%##@@#: @@@#.%@@# -@@@%#%@@#-. +@@@- +@@@@@:
// :*@@@@+. .=%@@@#*. @@@@***+. .#@@%+*%@@#: +@@@- *@@@+ :%@@- %@@@. .@@@#=*@@%- -@@@* :*@@@= +@@@- #@@@#
// .#@@@%= .-#@@@%#: : @@@% .#@@* =@@@= +@@@= *@@@- :%@@- +@@@= +@@@@@@@@@* -@@@* =@@@= +@@@- *@@@:
// =@@@@= :*@@@@#-. .-%: @@@% .#@@* =@@@= -%@@*=-%@@#. :%@@*=-%@@@: @@@@++*@@@# -@@@#--*@@%- +@@@*----. *@@@:
// .@@@@+ :=#@@@#+: -+@@*. @@@% .#@@* =@@@= -#@@@@@@#: :%@@@@@@@*+ .@@@# .*@@%--@@@@@@@@#- +@@@@@@@@: *@@@:
// -@@@% .-#@@@%*: *@@@@. +++= .=++- :+++: :++++++. .++++++++. :+++: :+++-.+++++++=: -++++++++. -+++.
// #@@@% :*@@@@#-. -%@@@.
// %@@@% :+#@@@#=: :%@@@. . .
// +@@@% .=#@@@@*: =@@@@. ++++= :++= :++***++: .=+++++++++. =++= .+++- +++= .+++=. :+++- :++***++:
// :@@@%- :*@@@@#-. *@@@%. @@@@% =@@# :#@@@#%@@#:-%@@@@@@@@@: %@@%. :@@@* @@@% :@@@@+ -@@@+ :#@@%#@@@#:
// @@@@# .*#@@@#=: =%@@@= @@@@@= =@@# .+@@@+:=%@@*:---#@@@+--. %@@%. :@@@* @@@% :@@@@#:-@@@+ :%@@*::*@@@-
// -@@@@+ =#@@@@*: -%@@@#. @@@#@% =@@# :%@@*. .+@@%- *@@@- %@@%. :@@@* @@@% :@@@@@+-@@@+ =@@@= :---.
// =@@@@#%@@@#-. =%@@@@- @@@=@@*=@@# -@@@* =@@@= *@@@- %@@@#*#@@@* @@@% :@@%+@%*@@@+ =@@@= -****:
// =@@@@@@%=. :*@@@@%- @@@-%@%-@@# -@@@* =@@@= *@@@- %@@@@@@@@@* @@@% :@@#-@@%@@@+ =@@@= +@@@@-
// =@@@@@*. -#%@@@@+: @@@=:@@%@@# -@@@* =@@@= *@@@- %@@%-:=@@@* @@@% :@@#.+@@@@@+ =@@@= .*@@@-
// .%@@@@%:. :*+-:-=*#%%@@@@@%- @@@=.#@@@@# .*@@%- :#@@#: *@@@- %@@%. :@@@* @@@% :@@# -@@@@@+ =@@@= +@@@-
// *%@@@@=. :#%@@@%@@@@@@@@@*:. @@@= :@@@@# -@@@%+#@@@+ *@@@- %@@%. :@@@* @@@% :@@# +@@@@+ .*@@@*+%@@@- -#%%:
// :%@@@@#. .#@@@@@@@@@@@@*:. @@@= .#@@@# =@@@@@@@+ *@@@- %@@%. :@@@* @@@% :@@# -@@@@+ -%@@@@@@@@- :%@@:
// .:-:. ....:::..... .. ... ..:::.. ... .. ... ... .. .... .::..... ..
//
// Project: Probably Nothing
// Token: PRBLY
// About: Probably Nothing is more than a meme, it is a case study on how future businesses will operate. Guided by strong values and championed by a passionate community, Probably Nothing will become one of the most respected companies in Web3. Now that is definitely something.
// Founder: @fungibIes, @audieleon, @BlockchainPadawan, @justkidlash, @0xEwok, @px_goose, @steelersfan331
// Follow us: @Probably0
// Join us: Discord.gg/Probably0
// Visit us: Probably0.com
//
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "./IProbablyNothing.sol";
/** @title Probably Nothing Token - PRBLY
* @author 0xEwok and audie.eth
* @notice This is the utility token for the Probably Nothing ecosystem of
* products and community
* @dev We kept this contract as simple as possible deliberately, see PN history :)
*/
contract ProbablyNothing is
IProbablyNothing,
ERC20Capped,
Ownable,
ERC20Burnable
{
constructor(
string memory name_,
string memory symbol_,
uint256 cap_
) ERC20(name_, symbol_) ERC20Capped(cap_) {}
/** @notice Allows owner to mint new tokens
* @param account The address to receive minted tokens
* @param amount The amount of new tokens to mint
*/
function mint(address account, uint256 amount) public override onlyOwner {
_mint(account, amount);
}
function _mint(address account, uint256 amount)
internal
override(ERC20, ERC20Capped)
{
super._mint(account, amount);
}
}