ETH Price: $2,475.84 (-8.21%)

Token

Butterfly Effect (🦋)
 

Overview

Max Total Supply

999,999,999,999 🦋

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
11,684,000,001.000000124 🦋

Value
$0.00
0x0c329B88F5Ee14deDdBCc3cF9Aff5a076f387F9D
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:
ButterflyEffectCa

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

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

/**

https://medium.com/@ButterFlyEffectEth

https://medium.com/@ButterFlyEffectEth/dilemma-7f1f1feee216

Have you ever wondered how your life would have been different if you would have done A instead of B. 
How your life would of been different if you married person X instead of person Y, or how it would be different if you chose to buy Bitcoin in 2012, or anything else that could have made your life different? Well welcome to the Butterfly Effect.


The butterfly effect serves as a metaphor for life in a chaotic world. Specifically, it suggests that small events can have very large effects. 
This is a relatively new approach as it was once believed that small events produced small effects and large events produced large effects.


Your life could be completely different if a small alteration could be made to your past. Lets say you went to work at 7:01 am instead of 7:15 such a minor event might have completely changed the course of your life due to the butterfly effect. 
Lets assume hypothetically that if you left your house at 7:01 AM you ran into a woman at a bus stop at 7:05 AM who you got attracted to and it turned out that she would be your future wife. Had you left at 7:15 she would no longer have been there, thus the meeting would of never have occurred and you would of have never gotten married to her.


The whole concept of the butterfly effect hinges on the idea, that minor actions can have huge consequences and alter our the direction of our lives and our future to an immense extent. This idea is based on the fact that an action (A →B →C) and so on. However if action A never occurs, the chain of events that follow would also have never happened.

USE LOW SIPPAGE TO AVOID MEV BOTS

**/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.8.0;


 // @dev Interface of the ERC20 standard as defined in the EIP.
 
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.
     *
     * 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 `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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

    /**
     * @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 value {ERC20} uses, unless this function is
     * 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 (uint256) {
        return _decimals;
    }

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");


        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }



    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

}





pragma solidity ^0.8.0;


contract ButterflyEffectCa is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","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":"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":"uint256","name":"","type":"uint256"}],"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"}]

608060405260405162000e1238038062000e128339810160408190526200002691620001e2565b8585848685600462000039868262000319565b50600562000048858262000319565b506200005682600a620004fa565b6200006290846200050f565b60028190556001600160a01b038216600081815260208181526040808320859055600387905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f19350505050158015620000f7573d6000803e3d6000fd5b5050505050505062000529565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200012c57600080fd5b81516001600160401b038082111562000149576200014962000104565b604051601f8301601f19908116603f0116810190828211818310171562000174576200017462000104565b816040528381526020925086838588010111156200019157600080fd5b600091505b83821015620001b5578582018301518183018401529082019062000196565b600093810190920192909252949350505050565b6001600160a01b0381168114620001df57600080fd5b50565b60008060008060008060c08789031215620001fc57600080fd5b86516001600160401b03808211156200021457600080fd5b620002228a838b016200011a565b975060208901519150808211156200023957600080fd5b506200024889828a016200011a565b955050604087015193506060870151925060808701516200026981620001c9565b60a08801519092506200027c81620001c9565b809150509295509295509295565b600181811c908216806200029f57607f821691505b602082108103620002c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031457600081815260208120601f850160051c81016020861015620002ef5750805b601f850160051c820191505b818110156200031057828155600101620002fb565b5050505b505050565b81516001600160401b0381111562000335576200033562000104565b6200034d816200034684546200028a565b84620002c6565b602080601f8311600181146200038557600084156200036c5750858301515b600019600386901b1c1916600185901b17855562000310565b600085815260208120601f198616915b82811015620003b65788860151825594840194600190910190840162000395565b5085821015620003d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200043c578160001904821115620004205762000420620003e5565b808516156200042e57918102915b93841c939080029062000400565b509250929050565b6000826200045557506001620004f4565b816200046457506000620004f4565b81600181146200047d57600281146200048857620004a8565b6001915050620004f4565b60ff8411156200049c576200049c620003e5565b50506001821b620004f4565b5060208310610133831016604e8410600b8410161715620004cd575081810a620004f4565b620004d98383620003fb565b8060001904821115620004f057620004f0620003e5565b0290505b92915050565b600062000508838362000444565b9392505050565b8082028115828204841417620004f457620004f4620003e5565b6108d980620005396000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610708565b60405180910390f35b6100df6100da366004610772565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f36600461079c565b610268565b6003546100f3565b6100df61012a366004610772565b61031e565b6100f361013d3660046107d8565b6001600160a01b031660009081526020819052604090205490565b6100b6610355565b6100df61016e366004610772565b610364565b6100df610181366004610772565b6103ff565b6100f36101943660046107fa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce9061082d565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa9061082d565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040c565b5060015b92915050565b6000610275848484610530565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102ff5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610313853361030e868561087d565b61040c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030e908690610890565b6060600580546101ce9061082d565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f6565b6103f5338561030e868561087d565b5060019392505050565b600061025e338484610530565b6001600160a01b03831661046e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f6565b6001600160a01b0382166104cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f6565b6001600160a01b0382166105f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f6565b6001600160a01b0383166000908152602081905260409020548181101561066e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f6565b610678828261087d565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ae908490610890565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106fa91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073557858101830151858201604001528201610719565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461076d57600080fd5b919050565b6000806040838503121561078557600080fd5b61078e83610756565b946020939093013593505050565b6000806000606084860312156107b157600080fd5b6107ba84610756565b92506107c860208501610756565b9150604084013590509250925092565b6000602082840312156107ea57600080fd5b6107f382610756565b9392505050565b6000806040838503121561080d57600080fd5b61081683610756565b915061082460208401610756565b90509250929050565b600181811c9082168061084157607f821691505b60208210810361086157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561026257610262610867565b808201808211156102625761026261086756fea26469706673582212207e24d35f138fed2c46dd35bc57b21de595ab22ca8747797525e2b9d018be9f1264736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000e8d4a50fff0000000000000000000000007abf01816e14d4dfefddce3b78aabe0e761c1e440000000000000000000000007abf01816e14d4dfefddce3b78aabe0e761c1e440000000000000000000000000000000000000000000000000000000000000010427574746572666c7920456666656374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f09fa68b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610708565b60405180910390f35b6100df6100da366004610772565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f36600461079c565b610268565b6003546100f3565b6100df61012a366004610772565b61031e565b6100f361013d3660046107d8565b6001600160a01b031660009081526020819052604090205490565b6100b6610355565b6100df61016e366004610772565b610364565b6100df610181366004610772565b6103ff565b6100f36101943660046107fa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce9061082d565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa9061082d565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040c565b5060015b92915050565b6000610275848484610530565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102ff5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610313853361030e868561087d565b61040c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030e908690610890565b6060600580546101ce9061082d565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f6565b6103f5338561030e868561087d565b5060019392505050565b600061025e338484610530565b6001600160a01b03831661046e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f6565b6001600160a01b0382166104cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f6565b6001600160a01b0382166105f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f6565b6001600160a01b0383166000908152602081905260409020548181101561066e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f6565b610678828261087d565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ae908490610890565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106fa91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073557858101830151858201604001528201610719565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461076d57600080fd5b919050565b6000806040838503121561078557600080fd5b61078e83610756565b946020939093013593505050565b6000806000606084860312156107b157600080fd5b6107ba84610756565b92506107c860208501610756565b9150604084013590509250925092565b6000602082840312156107ea57600080fd5b6107f382610756565b9392505050565b6000806040838503121561080d57600080fd5b61081683610756565b915061082460208401610756565b90509250929050565b600181811c9082168061084157607f821691505b60208210810361086157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561026257610262610867565b808201808211156102625761026261086756fea26469706673582212207e24d35f138fed2c46dd35bc57b21de595ab22ca8747797525e2b9d018be9f1264736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000e8d4a50fff0000000000000000000000007abf01816e14d4dfefddce3b78aabe0e761c1e440000000000000000000000007abf01816e14d4dfefddce3b78aabe0e761c1e440000000000000000000000000000000000000000000000000000000000000010427574746572666c7920456666656374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f09fa68b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Butterfly Effect
Arg [1] : symbol_ (string): 🦋
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 999999999999
Arg [4] : tokenOwner_ (address): 0x7abF01816e14D4DFefdDCE3B78AAbe0E761c1E44
Arg [5] : feeReceiver_ (address): 0x7abF01816e14D4DFefdDCE3B78AAbe0E761c1E44

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000000000e8d4a50fff
Arg [4] : 0000000000000000000000007abf01816e14d4dfefddce3b78aabe0e761c1e44
Arg [5] : 0000000000000000000000007abf01816e14d4dfefddce3b78aabe0e761c1e44
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 427574746572666c792045666665637400000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : f09fa68b00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12594:386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6881:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9057:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9057:169:0;1004:187:1;8010:108:0;8098:12;;8010:108;;;1342:25:1;;;1330:2;1315:18;8010:108:0;1196:177:1;9708:422:0;;;;;;:::i;:::-;;:::i;7843:102::-;7928:9;;7843:102;;10539:215;;;;;;:::i;:::-;;:::i;8181:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8282:18:0;8255:7;8282:18;;;;;;;;;;;;8181:127;7100:104;;;:::i;11257:377::-;;;;;;:::i;:::-;;:::i;8521:175::-;;;;;;:::i;:::-;;:::i;8759:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8875:18:0;;;8848:7;8875:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8759:151;6881:100;6935:13;6968:5;6961:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6881:100;:::o;9057:169::-;9140:4;9157:39;5449:10;9180:7;9189:6;9157:8;:39::i;:::-;-1:-1:-1;9214:4:0;9057:169;;;;;:::o;9708:422::-;9814:4;9831:36;9841:6;9849:9;9860:6;9831:9;:36::i;:::-;-1:-1:-1;;;;;9907:19:0;;9880:24;9907:19;;;:11;:19;;;;;;;;5449:10;9907:33;;;;;;;;9959:26;;;;9951:79;;;;-1:-1:-1;;;9951:79:0;;2754:2:1;9951:79:0;;;2736:21:1;2793:2;2773:18;;;2766:30;2832:34;2812:18;;;2805:62;-1:-1:-1;;;2883:18:1;;;2876:38;2931:19;;9951:79:0;;;;;;;;;10041:57;10050:6;5449:10;10072:25;10091:6;10072:16;:25;:::i;:::-;10041:8;:57::i;:::-;-1:-1:-1;10118:4:0;;9708:422;-1:-1:-1;;;;9708:422:0:o;10539:215::-;5449:10;10627:4;10676:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10676:34:0;;;;;;;;;;10627:4;;10644:80;;10667:7;;10676:47;;10713:10;;10676:47;:::i;7100:104::-;7156:13;7189:7;7182:14;;;;;:::i;11257:377::-;5449:10;11350:4;11394:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11394:34:0;;;;;;;;;;11447:35;;;;11439:85;;;;-1:-1:-1;;;11439:85:0;;3558:2:1;11439:85:0;;;3540:21:1;3597:2;3577:18;;;3570:30;3636:34;3616:18;;;3609:62;-1:-1:-1;;;3687:18:1;;;3680:35;3732:19;;11439:85:0;3356:401:1;11439:85:0;11535:67;5449:10;11558:7;11567:34;11586:15;11567:16;:34;:::i;11535:67::-;-1:-1:-1;11622:4:0;;11257:377;-1:-1:-1;;;11257:377:0:o;8521:175::-;8607:4;8624:42;5449:10;8648:9;8659:6;8624:9;:42::i;12202:346::-;-1:-1:-1;;;;;12304:19:0;;12296:68;;;;-1:-1:-1;;;12296:68:0;;3964:2:1;12296:68:0;;;3946:21:1;4003:2;3983:18;;;3976:30;4042:34;4022:18;;;4015:62;-1:-1:-1;;;4093:18:1;;;4086:34;4137:19;;12296:68:0;3762:400:1;12296:68:0;-1:-1:-1;;;;;12383:21:0;;12375:68;;;;-1:-1:-1;;;12375:68:0;;4369:2:1;12375:68:0;;;4351:21:1;4408:2;4388:18;;;4381:30;4447:34;4427:18;;;4420:62;-1:-1:-1;;;4498:18:1;;;4491:32;4540:19;;12375:68:0;4167:398:1;12375:68:0;-1:-1:-1;;;;;12456:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12508:32;;1342:25:1;;;12508:32:0;;1315:18:1;12508:32:0;;;;;;;12202:346;;;:::o;11644:546::-;-1:-1:-1;;;;;11750:20:0;;11742:70;;;;-1:-1:-1;;;11742:70:0;;4772:2:1;11742:70:0;;;4754:21:1;4811:2;4791:18;;;4784:30;4850:34;4830:18;;;4823:62;-1:-1:-1;;;4901:18:1;;;4894:35;4946:19;;11742:70:0;4570:401:1;11742:70:0;-1:-1:-1;;;;;11831:23:0;;11823:71;;;;-1:-1:-1;;;11823:71:0;;5178:2:1;11823:71:0;;;5160:21:1;5217:2;5197:18;;;5190:30;5256:34;5236:18;;;5229:62;-1:-1:-1;;;5307:18:1;;;5300:33;5350:19;;11823:71:0;4976:399:1;11823:71:0;-1:-1:-1;;;;;11933:17:0;;11909:21;11933:17;;;;;;;;;;;11969:23;;;;11961:74;;;;-1:-1:-1;;;11961:74:0;;5582:2:1;11961:74:0;;;5564:21:1;5621:2;5601:18;;;5594:30;5660:34;5640:18;;;5633:62;-1:-1:-1;;;5711:18:1;;;5704:36;5757:19;;11961:74:0;5380:402:1;11961:74:0;12066:22;12082:6;12066:13;:22;:::i;:::-;-1:-1:-1;;;;;12046:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12099:20;;;;;;;;:30;;12123:6;;12046:9;12099:30;;12123:6;;12099:30;:::i;:::-;;;;;;;;12164:9;-1:-1:-1;;;;;12147:35:0;12156:6;-1:-1:-1;;;;;12147:35:0;;12175:6;12147:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;12147:35:0;;;;;;;;11731:459;11644:546;;;:::o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:186::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;1862:29;1881:9;1862:29;:::i;:::-;1852:39;1711:186;-1:-1:-1;;;1711:186:1:o;1902:260::-;1970:6;1978;2031:2;2019:9;2010:7;2006:23;2002:32;1999:52;;;2047:1;2044;2037:12;1999:52;2070:29;2089:9;2070:29;:::i;:::-;2060:39;;2118:38;2152:2;2141:9;2137:18;2118:38;:::i;:::-;2108:48;;1902:260;;;;;:::o;2167:380::-;2246:1;2242:12;;;;2289;;;2310:61;;2364:4;2356:6;2352:17;2342:27;;2310:61;2417:2;2409:6;2406:14;2386:18;2383:38;2380:161;;2463:10;2458:3;2454:20;2451:1;2444:31;2498:4;2495:1;2488:15;2526:4;2523:1;2516:15;2380:161;;2167:380;;;:::o;2961:127::-;3022:10;3017:3;3013:20;3010:1;3003:31;3053:4;3050:1;3043:15;3077:4;3074:1;3067:15;3093:128;3160:9;;;3181:11;;;3178:37;;;3195:18;;:::i;3226:125::-;3291:9;;;3312:10;;;3309:36;;;3325:18;;:::i

Swarm Source

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