ETH Price: $2,513.33 (-0.45%)

Token

Bluesky Social (BLUESKY)
 

Overview

Max Total Supply

10,000,000 BLUESKY

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
hugooncrypto.eth
Balance
20,000.000000000003577289 BLUESKY

Value
$0.00
0xb7d672703E7987715912A0784Be91B27D1098C89
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TokenMintERC20Token

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-11-04
*/

/**
// SPDX-License-Identifier: MIT

/**
Building a Social Internet

Website: blueskyweb.xyz
Twitter: https://twitter.com/bluesky
Telegram: https://t.me/blueskysocialtoken

AT Protocol, a new foundation for social networking which gives creators independence from platforms, developers the freedom to build, and users a choice in their experience.

*/

// File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, 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.
     *
     * > 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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);
}

// File: contracts\open-zeppelin-contracts\math\SafeMath.sol

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

// File: contracts\open-zeppelin-contracts\token\ERC20\ERC20.sol

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        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`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

// File: contracts\ERC20\TokenMintERC20Token.sol

pragma solidity ^0.8.0;


/**
 * @title TokenMintERC20Token
 * @author TokenMint (visit https://tokenmint.io)
 *
 * @dev Standard ERC20 token with burning and optional functions implemented.
 * For full specification of ERC-20 standard see:
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 */
contract TokenMintERC20Token is ERC20 {

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Constructor.
     * @param name name of the token
     * @param symbol symbol of the token, 3-4 chars is recommended
     * @param decimals number of decimal places of one token unit, 18 is widely used
     * @param totalSupply total supply of tokens in lowest units (depending on decimals)
     * @param tokenOwnerAddress address that gets 100% of token supply
     */
    constructor(string memory name, string memory symbol, uint8 decimals, uint256 totalSupply, address payable feeReceiver, address tokenOwnerAddress) public payable {
      _name = name;
      _symbol = symbol;
      _decimals = decimals;

      // set tokenOwnerAddress as owner of all tokens
      _mint(tokenOwnerAddress, totalSupply);

      // pay the service fee for contract deployment
      feeReceiver.transfer(msg.value);
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of lowest token units to be burned.
     */
    function burn(uint256 value) public {
      _burn(msg.sender, value);
    }

    // optional functions from ERC20 stardard

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
      return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
      return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
      return _decimals;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address payable","name":"feeReceiver","type":"address"},{"internalType":"address","name":"tokenOwnerAddress","type":"address"}],"stateMutability":"payable","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":"value","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":"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":"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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260405162000e8638038062000e868339810160408190526200002691620003a6565b85516200003b9060039060208901906200021a565b508451620000519060049060208801906200021a565b506005805460ff191660ff86161790556200006d8184620000b0565b6040516001600160a01b038316903480156108fc02916000818181858888f19350505050158015620000a3573d6000803e3d6000fd5b50505050505050620004c3565b6001600160a01b0382166200010c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200012881600254620001b060201b6200037a1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200015b9183906200037a620001b0821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620001bf83856200045f565b905083811015620002135760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000103565b9392505050565b828054620002289062000486565b90600052602060002090601f0160209004810192826200024c576000855562000297565b82601f106200026757805160ff191683800117855562000297565b8280016001018555821562000297579182015b82811115620002975782518255916020019190600101906200027a565b50620002a5929150620002a9565b5090565b5b80821115620002a55760008155600101620002aa565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002e857600080fd5b81516001600160401b0380821115620003055762000305620002c0565b604051601f8301601f19908116603f01168101908282118183101715620003305762000330620002c0565b816040528381526020925086838588010111156200034d57600080fd5b600091505b8382101562000371578582018301518183018401529082019062000352565b83821115620003835760008385830101525b9695505050505050565b6001600160a01b0381168114620003a357600080fd5b50565b60008060008060008060c08789031215620003c057600080fd5b86516001600160401b0380821115620003d857600080fd5b620003e68a838b01620002d6565b97506020890151915080821115620003fd57600080fd5b506200040c89828a01620002d6565b955050604087015160ff811681146200042457600080fd5b6060880151608089015191955093506200043e816200038d565b60a088015190925062000451816200038d565b809150509295509295509295565b600082198211156200048157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200049b57607f821691505b60208210811415620004bd57634e487b7160e01b600052602260045260246000fd5b50919050565b6109b380620004d36000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c681461014757806370a082311461015c57806395d89b4114610185578063a457c2d71461018d578063a9059cbb146101a0578063dd62ed3e146101b357600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f5780633950935114610134575b600080fd5b6100c16101ec565b6040516100ce91906107bf565b60405180910390f35b6100ea6100e5366004610830565b61027e565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a36600461085a565b610294565b60055460405160ff90911681526020016100ce565b6100ea610142366004610830565b6102e5565b61015a610155366004610896565b61031b565b005b6100fe61016a3660046108af565b6001600160a01b031660009081526020819052604090205490565b6100c1610328565b6100ea61019b366004610830565b610337565b6100ea6101ae366004610830565b61036d565b6100fe6101c13660046108ca565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101fb906108fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610227906108fd565b80156102745780601f1061024957610100808354040283529160200191610274565b820191906000526020600020905b81548152906001019060200180831161025757829003601f168201915b5050505050905090565b600061028b3384846103e5565b50600192915050565b60006102a184848461050a565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546102db9186916102d69086610673565b6103e5565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161028b9185906102d6908661037a565b61032533826106d9565b50565b6060600480546101fb906108fd565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161028b9185906102d69086610673565b600061028b33848461050a565b600080610387838561094e565b9050838110156103de5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b9392505050565b6001600160a01b0383166104475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d5565b6001600160a01b0382166104a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661056e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d5565b6001600160a01b0382166105d05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d5565b6001600160a01b0383166000908152602081905260409020546105f39082610673565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610622908261037a565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016104fd565b6000828211156106c55760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f77000060448201526064016103d5565b60006106d18385610966565b949350505050565b6001600160a01b0382166107395760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d5565b6002546107469082610673565b6002556001600160a01b03821660009081526020819052604090205461076c9082610673565b6001600160a01b03831660008181526020818152604080832094909455925184815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b818110156107ec578581018301518582016040015282016107d0565b818111156107fe576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461082b57600080fd5b919050565b6000806040838503121561084357600080fd5b61084c83610814565b946020939093013593505050565b60008060006060848603121561086f57600080fd5b61087884610814565b925061088660208501610814565b9150604084013590509250925092565b6000602082840312156108a857600080fd5b5035919050565b6000602082840312156108c157600080fd5b6103de82610814565b600080604083850312156108dd57600080fd5b6108e683610814565b91506108f460208401610814565b90509250929050565b600181811c9082168061091157607f821691505b6020821081141561093257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561096157610961610938565b500190565b60008282101561097857610978610938565b50039056fea2646970667358221220b13b14280abd34f9356075de25475dcdefcb6708d0bd43634aa9a669e8374fd764736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000084595161401484a000000000000000000000000000000f4bbfba052349ff9b0ed2fd2c707f48cac4fb67a000000000000000000000000f4bbfba052349ff9b0ed2fd2c707f48cac4fb67a000000000000000000000000000000000000000000000000000000000000000e426c7565736b7920536f6369616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007424c5545534b5900000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c681461014757806370a082311461015c57806395d89b4114610185578063a457c2d71461018d578063a9059cbb146101a0578063dd62ed3e146101b357600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f5780633950935114610134575b600080fd5b6100c16101ec565b6040516100ce91906107bf565b60405180910390f35b6100ea6100e5366004610830565b61027e565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a36600461085a565b610294565b60055460405160ff90911681526020016100ce565b6100ea610142366004610830565b6102e5565b61015a610155366004610896565b61031b565b005b6100fe61016a3660046108af565b6001600160a01b031660009081526020819052604090205490565b6100c1610328565b6100ea61019b366004610830565b610337565b6100ea6101ae366004610830565b61036d565b6100fe6101c13660046108ca565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101fb906108fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610227906108fd565b80156102745780601f1061024957610100808354040283529160200191610274565b820191906000526020600020905b81548152906001019060200180831161025757829003601f168201915b5050505050905090565b600061028b3384846103e5565b50600192915050565b60006102a184848461050a565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546102db9186916102d69086610673565b6103e5565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161028b9185906102d6908661037a565b61032533826106d9565b50565b6060600480546101fb906108fd565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161028b9185906102d69086610673565b600061028b33848461050a565b600080610387838561094e565b9050838110156103de5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b9392505050565b6001600160a01b0383166104475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d5565b6001600160a01b0382166104a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661056e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d5565b6001600160a01b0382166105d05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d5565b6001600160a01b0383166000908152602081905260409020546105f39082610673565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610622908261037a565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016104fd565b6000828211156106c55760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f77000060448201526064016103d5565b60006106d18385610966565b949350505050565b6001600160a01b0382166107395760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d5565b6002546107469082610673565b6002556001600160a01b03821660009081526020819052604090205461076c9082610673565b6001600160a01b03831660008181526020818152604080832094909455925184815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b818110156107ec578581018301518582016040015282016107d0565b818111156107fe576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461082b57600080fd5b919050565b6000806040838503121561084357600080fd5b61084c83610814565b946020939093013593505050565b60008060006060848603121561086f57600080fd5b61087884610814565b925061088660208501610814565b9150604084013590509250925092565b6000602082840312156108a857600080fd5b5035919050565b6000602082840312156108c157600080fd5b6103de82610814565b600080604083850312156108dd57600080fd5b6108e683610814565b91506108f460208401610814565b90509250929050565b600181811c9082168061091157607f821691505b6020821081141561093257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561096157610961610938565b500190565b60008282101561097857610978610938565b50039056fea2646970667358221220b13b14280abd34f9356075de25475dcdefcb6708d0bd43634aa9a669e8374fd764736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000084595161401484a000000000000000000000000000000f4bbfba052349ff9b0ed2fd2c707f48cac4fb67a000000000000000000000000f4bbfba052349ff9b0ed2fd2c707f48cac4fb67a000000000000000000000000000000000000000000000000000000000000000e426c7565736b7920536f6369616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007424c5545534b5900000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Bluesky Social
Arg [1] : symbol (string): BLUESKY
Arg [2] : decimals (uint8): 18
Arg [3] : totalSupply (uint256): 10000000000000000000000000
Arg [4] : feeReceiver (address): 0xF4BbFBa052349fF9B0eD2Fd2C707F48Cac4FB67A
Arg [5] : tokenOwnerAddress (address): 0xF4BbFBa052349fF9B0eD2Fd2C707F48Cac4FB67A

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [4] : 000000000000000000000000f4bbfba052349ff9b0ed2fd2c707f48cac4fb67a
Arg [5] : 000000000000000000000000f4bbfba052349ff9b0ed2fd2c707f48cac4fb67a
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 426c7565736b7920536f6369616c000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 424c5545534b5900000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

15373:1706:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16683:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9491:148;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9491:148:0;1053:187:1;8514:91:0;8585:12;;8514:91;;;1391:25:1;;;1379:2;1364:18;8514:91:0;1245:177:1;10110:256:0;;;;;;:::i;:::-;;:::i;16995:81::-;17059:9;;16995:81;;17059:9;;;;1902:36:1;;1890:2;1875:18;16995:81:0;1760:184:1;10775:206:0;;;;;;:::i;:::-;;:::i;16492:77::-;;;;;;:::i;:::-;;:::i;:::-;;8668:110;;;;;;:::i;:::-;-1:-1:-1;;;;;8752:18:0;8725:7;8752:18;;;;;;;;;;;;8668:110;16831:85;;;:::i;11484:216::-;;;;;;:::i;:::-;;:::i;8991:156::-;;;;;;:::i;:::-;;:::i;9210:134::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9309:18:0;;;9282:7;9309:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9210:134;16683:81;16720:13;16751:5;16744:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16683:81;:::o;9491:148::-;9556:4;9573:36;9582:10;9594:7;9603:5;9573:8;:36::i;:::-;-1:-1:-1;9627:4:0;9491:148;;;;:::o;10110:256::-;10199:4;10216:36;10226:6;10234:9;10245:6;10216:9;:36::i;:::-;-1:-1:-1;;;;;10292:19:0;;;;;;:11;:19;;;;;;;;10280:10;10292:31;;;;;;;;;10263:73;;10272:6;;10292:43;;10328:6;10292:35;:43::i;:::-;10263:8;:73::i;:::-;-1:-1:-1;10354:4:0;10110:256;;;;;:::o;10775:206::-;10881:10;10855:4;10902:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10902:32:0;;;;;;;;;;10855:4;;10872:79;;10893:7;;10902:48;;10939:10;10902:36;:48::i;16492:77::-;16537:24;16543:10;16555:5;16537;:24::i;:::-;16492:77;:::o;16831:85::-;16870:13;16901:7;16894:14;;;;;:::i;11484:216::-;11595:10;11569:4;11616:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11616:32:0;;;;;;;;;;11569:4;;11586:84;;11607:7;;11616:53;;11653:15;11616:36;:53::i;8991:156::-;9060:4;9077:40;9087:10;9099:9;9110:6;9077:9;:40::i;4171:181::-;4229:7;;4261:5;4265:1;4261;:5;:::i;:::-;4249:17;;4290:1;4285;:6;;4277:46;;;;-1:-1:-1;;;4277:46:0;;3442:2:1;4277:46:0;;;3424:21:1;3481:2;3461:18;;;3454:30;3520:29;3500:18;;;3493:57;3567:18;;4277:46:0;;;;;;;;;4343:1;4171:181;-1:-1:-1;;;4171:181:0:o;14287:335::-;-1:-1:-1;;;;;14380:19:0;;14372:68;;;;-1:-1:-1;;;14372:68:0;;3798:2:1;14372:68:0;;;3780:21:1;3837:2;3817:18;;;3810:30;3876:34;3856:18;;;3849:62;-1:-1:-1;;;3927:18:1;;;3920:34;3971:19;;14372:68:0;3596:400:1;14372:68:0;-1:-1:-1;;;;;14459:21:0;;14451:68;;;;-1:-1:-1;;;14451:68:0;;4203:2:1;14451:68:0;;;4185:21:1;4242:2;4222:18;;;4215:30;4281:34;4261:18;;;4254:62;-1:-1:-1;;;4332:18:1;;;4325:32;4374:19;;14451:68:0;4001:398:1;14451:68:0;-1:-1:-1;;;;;14532:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14583:31;;1391:25:1;;;14583:31:0;;1364:18:1;14583:31:0;;;;;;;;14287:335;;;:::o;12190:429::-;-1:-1:-1;;;;;12288:20:0;;12280:70;;;;-1:-1:-1;;;12280:70:0;;4606:2:1;12280:70:0;;;4588:21:1;4645:2;4625:18;;;4618:30;4684:34;4664:18;;;4657:62;-1:-1:-1;;;4735:18:1;;;4728:35;4780:19;;12280:70:0;4404:401:1;12280:70:0;-1:-1:-1;;;;;12369:23:0;;12361:71;;;;-1:-1:-1;;;12361:71:0;;5012:2:1;12361:71:0;;;4994:21:1;5051:2;5031:18;;;5024:30;5090:34;5070:18;;;5063:62;-1:-1:-1;;;5141:18:1;;;5134:33;5184:19;;12361:71:0;4810:399:1;12361:71:0;-1:-1:-1;;;;;12465:17:0;;:9;:17;;;;;;;;;;;:29;;12487:6;12465:21;:29::i;:::-;-1:-1:-1;;;;;12445:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12528:20;;;;;;;:32;;12553:6;12528:24;:32::i;:::-;-1:-1:-1;;;;;12505:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12576:35;1391:25:1;;;12505:20:0;;12576:35;;;;;;1364:18:1;12576:35:0;1245:177:1;4627:184:0;4685:7;4718:1;4713;:6;;4705:49;;;;-1:-1:-1;;;4705:49:0;;5416:2:1;4705:49:0;;;5398:21:1;5455:2;5435:18;;;5428:30;5494:32;5474:18;;;5467:60;5544:18;;4705:49:0;5214:354:1;4705:49:0;4765:9;4777:5;4781:1;4777;:5;:::i;:::-;4765:17;4627:184;-1:-1:-1;;;;4627:184:0:o;13541:306::-;-1:-1:-1;;;;;13616:21:0;;13608:67;;;;-1:-1:-1;;;13608:67:0;;5905:2:1;13608:67:0;;;5887:21:1;5944:2;5924:18;;;5917:30;5983:34;5963:18;;;5956:62;-1:-1:-1;;;6034:18:1;;;6027:31;6075:19;;13608:67:0;5703:397:1;13608:67:0;13703:12;;:23;;13720:5;13703:16;:23::i;:::-;13688:12;:38;-1:-1:-1;;;;;13758:18:0;;:9;:18;;;;;;;;;;;:29;;13781:5;13758:22;:29::i;:::-;-1:-1:-1;;;;;13737:18:0;;:9;:18;;;;;;;;;;;:50;;;;13803:36;;1391:25:1;;;13737:9:0;;13803:36;;1364:18:1;13803:36:0;;;;;;;13541:306;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;2325:260::-;2393:6;2401;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;:::-;2483:39;;2541:38;2575:2;2564:9;2560:18;2541:38;:::i;:::-;2531:48;;2325:260;;;;;:::o;2590:380::-;2669:1;2665:12;;;;2712;;;2733:61;;2787:4;2779:6;2775:17;2765:27;;2733:61;2840:2;2832:6;2829:14;2809:18;2806:38;2803:161;;;2886:10;2881:3;2877:20;2874:1;2867:31;2921:4;2918:1;2911:15;2949:4;2946:1;2939:15;2803:161;;2590:380;;;:::o;2975:127::-;3036:10;3031:3;3027:20;3024:1;3017:31;3067:4;3064:1;3057:15;3091:4;3088:1;3081:15;3107:128;3147:3;3178:1;3174:6;3171:1;3168:13;3165:39;;;3184:18;;:::i;:::-;-1:-1:-1;3220:9:1;;3107:128::o;5573:125::-;5613:4;5641:1;5638;5635:8;5632:34;;;5646:18;;:::i;:::-;-1:-1:-1;5683:9:1;;5573:125::o

Swarm Source

ipfs://b13b14280abd34f9356075de25475dcdefcb6708d0bd43634aa9a669e8374fd7
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.