ETH Price: $3,363.16 (-1.57%)
Gas: 6 Gwei

Token

CORE DAO (CoreDAO)
 

Overview

Max Total Supply

24,777,307.939689963964779674 CoreDAO

Holders

621

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,857.04728189951624106 CoreDAO

Value
$0.00
0x1De1Ba406CeA36ac588C78EDA0e8Ec568D50D420
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:
CoreDAO

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

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

/** 
 *  SourceUnit: /Users/macos/dev/cLend/contracts/CoreDAO.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (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);
}




/** 
 *  SourceUnit: /Users/macos/dev/cLend/contracts/CoreDAO.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}




/** 
 *  SourceUnit: /Users/macos/dev/cLend/contracts/CoreDAO.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: 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);
}




/** 
 *  SourceUnit: /Users/macos/dev/cLend/contracts/CoreDAO.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

////import "./IERC20.sol";
////import "./extensions/IERC20Metadata.sol";
////import "../../utils/Context.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default 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_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 (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:
     *
     * - `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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), 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), "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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


/** 
 *  SourceUnit: /Users/macos/dev/cLend/contracts/CoreDAO.sol
*/

////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: UNLICENSED
pragma solidity =0.8.6;

////import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/**
 * @title CoreDAO ERC20 Governance Token
 * @author CVault Finance
 */
contract CoreDAO is ERC20 {
    address public constant CORE_DAO_TREASURY = 0xe508a37101FCe81AB412626eE5F1A648244380de;

    constructor(uint256 startingCOREDAOAmount) ERC20("CORE DAO", "CoreDAO") {
        _mint(CORE_DAO_TREASURY, startingCOREDAOAmount);
    }

    function issue(address to, uint256 amount) public {
        require(msg.sender == CORE_DAO_TREASURY, "NOT_TREASURY");
        _mint(to, amount);
    }

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"startingCOREDAOAmount","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"},{"inputs":[],"name":"CORE_DAO_TREASURY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issue","outputs":[],"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"}]

60806040523480156200001157600080fd5b5060405162000f1038038062000f10833981016040819052620000349162000257565b6040805180820182526008815267434f52452044414f60c01b602080830191825283518085019094526007845266436f726544414f60c81b9084015281519192916200008391600391620001b1565b50805162000099906004906020840190620001b1565b505050620000c273e508a37101fce81ab412626ee5f1a648244380de82620000c960201b60201c565b50620002d5565b6001600160a01b038216620001245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000138919062000271565b90915550506001600160a01b038216600090815260208190526040812080548392906200016790849062000271565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001bf9062000298565b90600052602060002090601f016020900481019282620001e357600085556200022e565b82601f10620001fe57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022e57825182559160200191906001019062000211565b506200023c92915062000240565b5090565b5b808211156200023c576000815560010162000241565b6000602082840312156200026a57600080fd5b5051919050565b600082198211156200029357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002ad57607f821691505b60208210811415620002cf57634e487b7160e01b600052602260045260246000fd5b50919050565b610c2b80620002e56000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d7146101d0578063a9059cbb146101e3578063aaea96cb146101f6578063dd62ed3e1461022957600080fd5b806370a082311461018c578063867904b4146101b557806395d89b41146101c857600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016457806342966c681461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610262565b6040516101049190610b20565b60405180910390f35b61012061011b366004610add565b6102f4565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610aa1565b61030a565b60405160128152602001610104565b610120610172366004610add565b6103b9565b61018a610185366004610b07565b6103f5565b005b61013461019a366004610a4c565b6001600160a01b031660009081526020819052604090205490565b61018a6101c3366004610add565b610402565b6100f7610462565b6101206101de366004610add565b610471565b6101206101f1366004610add565b61050a565b61021173e508a37101fce81ab412626ee5f1a648244380de81565b6040516001600160a01b039091168152602001610104565b610134610237366004610a6e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461027190610ba4565b80601f016020809104026020016040519081016040528092919081815260200182805461029d90610ba4565b80156102ea5780601f106102bf576101008083540402835291602001916102ea565b820191906000526020600020905b8154815290600101906020018083116102cd57829003601f168201915b5050505050905090565b6000610301338484610517565b50600192915050565b600061031784848461063c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103a15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103ae8533858403610517565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103019185906103f0908690610b75565b610517565b6103ff338261080b565b50565b3373e508a37101fce81ab412626ee5f1a648244380de146104545760405162461bcd60e51b815260206004820152600c60248201526b4e4f545f545245415355525960a01b6044820152606401610398565b61045e8282610951565b5050565b60606004805461027190610ba4565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104f35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610398565b6105003385858403610517565b5060019392505050565b600061030133848461063c565b6001600160a01b0383166105795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610398565b6001600160a01b0382166105da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610398565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610398565b6001600160a01b0382166107025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610398565b6001600160a01b0383166000908152602081905260409020548181101561077a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610398565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107b1908490610b75565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107fd91815260200190565b60405180910390a350505050565b6001600160a01b03821661086b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610398565b6001600160a01b038216600090815260208190526040902054818110156108df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610398565b6001600160a01b038316600090815260208190526040812083830390556002805484929061090e908490610b8d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161062f565b6001600160a01b0382166109a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610398565b80600260008282546109b99190610b75565b90915550506001600160a01b038216600090815260208190526040812080548392906109e6908490610b75565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610a4757600080fd5b919050565b600060208284031215610a5e57600080fd5b610a6782610a30565b9392505050565b60008060408385031215610a8157600080fd5b610a8a83610a30565b9150610a9860208401610a30565b90509250929050565b600080600060608486031215610ab657600080fd5b610abf84610a30565b9250610acd60208501610a30565b9150604084013590509250925092565b60008060408385031215610af057600080fd5b610af983610a30565b946020939093013593505050565b600060208284031215610b1957600080fd5b5035919050565b600060208083528351808285015260005b81811015610b4d57858101830151858201604001528201610b31565b81811115610b5f576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610b8857610b88610bdf565b500190565b600082821015610b9f57610b9f610bdf565b500390565b600181811c90821680610bb857607f821691505b60208210811415610bd957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122080ffa248e2018ed6619389f70586cee808b7744a71189a0ca78a113dcdf013d664736f6c634300080600330000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d7146101d0578063a9059cbb146101e3578063aaea96cb146101f6578063dd62ed3e1461022957600080fd5b806370a082311461018c578063867904b4146101b557806395d89b41146101c857600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016457806342966c681461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610262565b6040516101049190610b20565b60405180910390f35b61012061011b366004610add565b6102f4565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610aa1565b61030a565b60405160128152602001610104565b610120610172366004610add565b6103b9565b61018a610185366004610b07565b6103f5565b005b61013461019a366004610a4c565b6001600160a01b031660009081526020819052604090205490565b61018a6101c3366004610add565b610402565b6100f7610462565b6101206101de366004610add565b610471565b6101206101f1366004610add565b61050a565b61021173e508a37101fce81ab412626ee5f1a648244380de81565b6040516001600160a01b039091168152602001610104565b610134610237366004610a6e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461027190610ba4565b80601f016020809104026020016040519081016040528092919081815260200182805461029d90610ba4565b80156102ea5780601f106102bf576101008083540402835291602001916102ea565b820191906000526020600020905b8154815290600101906020018083116102cd57829003601f168201915b5050505050905090565b6000610301338484610517565b50600192915050565b600061031784848461063c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103a15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103ae8533858403610517565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103019185906103f0908690610b75565b610517565b6103ff338261080b565b50565b3373e508a37101fce81ab412626ee5f1a648244380de146104545760405162461bcd60e51b815260206004820152600c60248201526b4e4f545f545245415355525960a01b6044820152606401610398565b61045e8282610951565b5050565b60606004805461027190610ba4565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104f35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610398565b6105003385858403610517565b5060019392505050565b600061030133848461063c565b6001600160a01b0383166105795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610398565b6001600160a01b0382166105da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610398565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610398565b6001600160a01b0382166107025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610398565b6001600160a01b0383166000908152602081905260409020548181101561077a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610398565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107b1908490610b75565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107fd91815260200190565b60405180910390a350505050565b6001600160a01b03821661086b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610398565b6001600160a01b038216600090815260208190526040902054818110156108df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610398565b6001600160a01b038316600090815260208190526040812083830390556002805484929061090e908490610b8d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161062f565b6001600160a01b0382166109a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610398565b80600260008282546109b99190610b75565b90915550506001600160a01b038216600090815260208190526040812080548392906109e6908490610b75565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610a4757600080fd5b919050565b600060208284031215610a5e57600080fd5b610a6782610a30565b9392505050565b60008060408385031215610a8157600080fd5b610a8a83610a30565b9150610a9860208401610a30565b90509250929050565b600080600060608486031215610ab657600080fd5b610abf84610a30565b9250610acd60208501610a30565b9150604084013590509250925092565b60008060408385031215610af057600080fd5b610af983610a30565b946020939093013593505050565b600060208284031215610b1957600080fd5b5035919050565b600060208083528351808285015260005b81811015610b4d57858101830151858201604001528201610b31565b81811115610b5f576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610b8857610b88610bdf565b500190565b600082821015610b9f57610b9f610bdf565b500390565b600181811c90821680610bb857607f821691505b60208210811415610bd957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122080ffa248e2018ed6619389f70586cee808b7744a71189a0ca78a113dcdf013d664736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : startingCOREDAOAmount (uint256): 0

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17426:519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7151:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9318:169;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;9318:169:0;1728:92:1;8271:108:0;8359:12;;8271:108;;;6919:25:1;;;6907:2;6892:18;8271:108:0;6874:76:1;9969:492:0;;;;;;:::i;:::-;;:::i;8113:93::-;;;8196:2;7097:36:1;;7085:2;7070:18;8113:93:0;7052:87:1;10870:215:0;;;;;;:::i;:::-;;:::i;17861:81::-;;;;;;:::i;:::-;;:::i;:::-;;8442:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8543:18:0;8516:7;8543:18;;;;;;;;;;;;8442:127;17700:153;;;;;;:::i;:::-;;:::i;7370:104::-;;;:::i;11588:413::-;;;;;;:::i;:::-;;:::i;8782:175::-;;;;;;:::i;:::-;;:::i;17459:86::-;;17503:42;17459:86;;;;;-1:-1:-1;;;;;1589:32:1;;;1571:51;;1559:2;1544:18;17459:86:0;1526:102:1;9020:151:0;;;;;;:::i;:::-;-1:-1:-1;;;;;9136:18:0;;;9109:7;9136:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9020:151;7151:100;7205:13;7238:5;7231:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7151:100;:::o;9318:169::-;9401:4;9418:39;3844:10;9441:7;9450:6;9418:8;:39::i;:::-;-1:-1:-1;9475:4:0;9318:169;;;;:::o;9969:492::-;10109:4;10126:36;10136:6;10144:9;10155:6;10126:9;:36::i;:::-;-1:-1:-1;;;;;10202:19:0;;10175:24;10202:19;;;:11;:19;;;;;;;;3844:10;10202:33;;;;;;;;10254:26;;;;10246:79;;;;-1:-1:-1;;;10246:79:0;;4246:2:1;10246:79:0;;;4228:21:1;4285:2;4265:18;;;4258:30;4324:34;4304:18;;;4297:62;-1:-1:-1;;;4375:18:1;;;4368:38;4423:19;;10246:79:0;;;;;;;;;10361:57;10370:6;3844:10;10411:6;10392:16;:25;10361:8;:57::i;:::-;-1:-1:-1;10449:4:0;;9969:492;-1:-1:-1;;;;9969:492:0:o;10870:215::-;3844:10;10958:4;11007:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11007:34:0;;;;;;;;;;10958:4;;10975:80;;10998:7;;11007:47;;11044:10;;11007:47;:::i;:::-;10975:8;:80::i;17861:81::-;17909:25;17915:10;17927:6;17909:5;:25::i;:::-;17861:81;:::o;17700:153::-;17769:10;17503:42;17769:31;17761:56;;;;-1:-1:-1;;;17761:56:0;;5868:2:1;17761:56:0;;;5850:21:1;5907:2;5887:18;;;5880:30;-1:-1:-1;;;5926:18:1;;;5919:42;5978:18;;17761:56:0;5840:162:1;17761:56:0;17828:17;17834:2;17838:6;17828:5;:17::i;:::-;17700:153;;:::o;7370:104::-;7426:13;7459:7;7452:14;;;;;:::i;11588:413::-;3844:10;11681:4;11725:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11725:34:0;;;;;;;;;;11778:35;;;;11770:85;;;;-1:-1:-1;;;11770:85:0;;6209:2:1;11770:85:0;;;6191:21:1;6248:2;6228:18;;;6221:30;6287:34;6267:18;;;6260:62;-1:-1:-1;;;6338:18:1;;;6331:35;6383:19;;11770:85:0;6181:227:1;11770:85:0;11891:67;3844:10;11914:7;11942:15;11923:16;:34;11891:8;:67::i;:::-;-1:-1:-1;11989:4:0;;11588:413;-1:-1:-1;;;11588:413:0:o;8782:175::-;8868:4;8885:42;3844:10;8909:9;8920:6;8885:9;:42::i;15272:380::-;-1:-1:-1;;;;;15408:19:0;;15400:68;;;;-1:-1:-1;;;15400:68:0;;5463:2:1;15400:68:0;;;5445:21:1;5502:2;5482:18;;;5475:30;5541:34;5521:18;;;5514:62;-1:-1:-1;;;5592:18:1;;;5585:34;5636:19;;15400:68:0;5435:226:1;15400:68:0;-1:-1:-1;;;;;15487:21:0;;15479:68;;;;-1:-1:-1;;;15479:68:0;;3436:2:1;15479:68:0;;;3418:21:1;3475:2;3455:18;;;3448:30;3514:34;3494:18;;;3487:62;-1:-1:-1;;;3565:18:1;;;3558:32;3607:19;;15479:68:0;3408:224:1;15479:68:0;-1:-1:-1;;;;;15560:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15612:32;;6919:25:1;;;15612:32:0;;6892:18:1;15612:32:0;;;;;;;;15272:380;;;:::o;12491:733::-;-1:-1:-1;;;;;12631:20:0;;12623:70;;;;-1:-1:-1;;;12623:70:0;;5057:2:1;12623:70:0;;;5039:21:1;5096:2;5076:18;;;5069:30;5135:34;5115:18;;;5108:62;-1:-1:-1;;;5186:18:1;;;5179:35;5231:19;;12623:70:0;5029:227:1;12623:70:0;-1:-1:-1;;;;;12712:23:0;;12704:71;;;;-1:-1:-1;;;12704:71:0;;2629:2:1;12704:71:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;12704:71:0;2601:225:1;12704:71:0;-1:-1:-1;;;;;12872:17:0;;12848:21;12872:17;;;;;;;;;;;12908:23;;;;12900:74;;;;-1:-1:-1;;;12900:74:0;;3839:2:1;12900:74:0;;;3821:21:1;3878:2;3858:18;;;3851:30;3917:34;3897:18;;;3890:62;-1:-1:-1;;;3968:18:1;;;3961:36;4014:19;;12900:74:0;3811:228:1;12900:74:0;-1:-1:-1;;;;;13010:17:0;;;:9;:17;;;;;;;;;;;13030:22;;;13010:42;;13074:20;;;;;;;;:30;;13046:6;;13010:9;13074:30;;13046:6;;13074:30;:::i;:::-;;;;;;;;13139:9;-1:-1:-1;;;;;13122:35:0;13131:6;-1:-1:-1;;;;;13122:35:0;;13150:6;13122:35;;;;6919:25:1;;6907:2;6892:18;;6874:76;13122:35:0;;;;;;;;12612:612;12491:733;;;:::o;14243:591::-;-1:-1:-1;;;;;14327:21:0;;14319:67;;;;-1:-1:-1;;;14319:67:0;;4655:2:1;14319:67:0;;;4637:21:1;4694:2;4674:18;;;4667:30;4733:34;4713:18;;;4706:62;-1:-1:-1;;;4784:18:1;;;4777:31;4825:19;;14319:67:0;4627:223:1;14319:67:0;-1:-1:-1;;;;;14486:18:0;;14461:22;14486:18;;;;;;;;;;;14523:24;;;;14515:71;;;;-1:-1:-1;;;14515:71:0;;3033:2:1;14515:71:0;;;3015:21:1;3072:2;3052:18;;;3045:30;3111:34;3091:18;;;3084:62;-1:-1:-1;;;3162:18:1;;;3155:32;3204:19;;14515:71:0;3005:224:1;14515:71:0;-1:-1:-1;;;;;14622:18:0;;:9;:18;;;;;;;;;;14643:23;;;14622:44;;14688:12;:22;;14660:6;;14622:9;14688:22;;14660:6;;14688:22;:::i;:::-;;;;-1:-1:-1;;14728:37:0;;6919:25:1;;;14754:1:0;;-1:-1:-1;;;;;14728:37:0;;;;;6907:2:1;6892:18;14728:37:0;6874:76:1;13511:399:0;-1:-1:-1;;;;;13595:21:0;;13587:65;;;;-1:-1:-1;;;13587:65:0;;6615:2:1;13587:65:0;;;6597:21:1;6654:2;6634:18;;;6627:30;6693:33;6673:18;;;6666:61;6744:18;;13587:65:0;6587:181:1;13587:65:0;13743:6;13727:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13760:18:0;;:9;:18;;;;;;;;;;:28;;13782:6;;13760:9;:28;;13782:6;;13760:28;:::i;:::-;;;;-1:-1:-1;;13804:37:0;;6919:25:1;;;-1:-1:-1;;;;;13804:37:0;;;13821:1;;13804:37;;6907:2:1;6892:18;13804:37:0;;;;;;;17700:153;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:2;;;1368:1;1365;1358:12;1320:2;-1:-1:-1;1391:23:1;;1310:110;-1:-1:-1;1310:110:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:2;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:2;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1946:476;-1:-1:-1;;;1946:476:1:o;7144:128::-;7184:3;7215:1;7211:6;7208:1;7205:13;7202:2;;;7221:18;;:::i;:::-;-1:-1:-1;7257:9:1;;7192:80::o;7277:125::-;7317:4;7345:1;7342;7339:8;7336:2;;;7350:18;;:::i;:::-;-1:-1:-1;7387:9:1;;7326:76::o;7407:380::-;7486:1;7482:12;;;;7529;;;7550:2;;7604:4;7596:6;7592:17;7582:27;;7550:2;7657;7649:6;7646:14;7626:18;7623:38;7620:2;;;7703:10;7698:3;7694:20;7691:1;7684:31;7738:4;7735:1;7728:15;7766:4;7763:1;7756:15;7620:2;;7462:325;;;:::o;7792:127::-;7853:10;7848:3;7844:20;7841:1;7834:31;7884:4;7881:1;7874:15;7908:4;7905:1;7898:15

Swarm Source

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