[ Download CSV Export ]
OVERVIEW
COX is Cowswap's governance token used as reward from staking platform.
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
CowswapToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2020-11-25 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.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/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {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}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 { } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/CowswapToken.sol pragma solidity 0.6.12; contract CowswapToken is ERC20("Cowswap", "COX"), Ownable { mapping (address => bool) public minters; modifier onlyMinter() { require(minters[msg.sender], "Not Minter"); _; } constructor(address _to) public { // Mint to CowPool _mint(_to, 1500000 * 1e18); } function addMinter(address _minter) external onlyOwner { minters[_minter] = true; } function removeMinter(address _minter) external onlyOwner { minters[_minter] = false; } // Creates `_amount` token to `_to`. Must only be called by the owner. function mint(address _to, uint256 _amount) public onlyMinter { _mint(_to, _amount); } }
[{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200131538038062001315833981810160405260208110156200003757600080fd5b505160408051808201825260078152660436f77737761760cc1b602082810191825283518085019094526003808552620869eb60eb1b918501919091528251929392620000859290620002a5565b5080516200009b906004906020840190620002a5565b50506005805460ff19166012179055506000620000b76200012b565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000124816a013da329b63364718000006200012f565b5062000341565b3390565b6001600160a01b0382166200018b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000199600083836200023e565b620001b5816002546200024360201b62000a0f1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001e891839062000a0f62000243821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200029e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002e857805160ff191683800117855562000318565b8280016001018555821562000318579182015b8281111562000318578251825591602001919060010190620002fb565b50620003269291506200032a565b5090565b5b808211156200032657600081556001016200032b565b610fc480620003516000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610346578063a9059cbb14610372578063dd62ed3e1461039e578063f2fde38b146103cc578063f46eccc4146103f257610116565b8063715018a6146102ec5780638da5cb5b146102f457806395d89b4114610318578063983b2d561461032057610116565b80633092afd5116100e95780633092afd514610228578063313ce56714610250578063395093511461026e57806340c10f191461029a57806370a08231146102c657610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b610123610418565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b0381351690602001356104ae565b604080519115158252519081900360200190f35b6101e06104cb565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104d1565b61024e6004803603602081101561023e57600080fd5b50356001600160a01b0316610558565b005b6102586105d6565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028457600080fd5b506001600160a01b0381351690602001356105df565b61024e600480360360408110156102b057600080fd5b506001600160a01b03813516906020013561062d565b6101e0600480360360208110156102dc57600080fd5b50356001600160a01b031661068c565b61024e6106a7565b6102fc610754565b604080516001600160a01b039092168252519081900360200190f35b610123610768565b61024e6004803603602081101561033657600080fd5b50356001600160a01b03166107c9565b6101c46004803603604081101561035c57600080fd5b506001600160a01b03813516906020013561084a565b6101c46004803603604081101561038857600080fd5b506001600160a01b0381351690602001356108b2565b6101e0600480360360408110156103b457600080fd5b506001600160a01b03813581169160200135166108c6565b61024e600480360360208110156103e257600080fd5b50356001600160a01b03166108f1565b6101c46004803603602081101561040857600080fd5b50356001600160a01b03166109fa565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b820191906000526020600020905b81548152906001019060200180831161048757829003601f168201915b5050505050905090565b60006104c26104bb610a70565b8484610a74565b50600192915050565b60025490565b60006104de848484610b60565b61054e846104ea610a70565b61054985604051806060016040528060288152602001610ed9602891396001600160a01b038a16600090815260016020526040812090610528610a70565b6001600160a01b031681526020810191909152604001600020549190610cbb565b610a74565b5060019392505050565b610560610a70565b60055461010090046001600160a01b039081169116146105b5576040805162461bcd60e51b81526020600482018190526024820152600080516020610f01833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60055460ff1690565b60006104c26105ec610a70565b8461054985600160006105fd610a70565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610a0f565b3360009081526006602052604090205460ff1661067e576040805162461bcd60e51b815260206004820152600a6024820152692737ba1026b4b73a32b960b11b604482015290519081900360640190fd5b6106888282610d52565b5050565b6001600160a01b031660009081526020819052604090205490565b6106af610a70565b60055461010090046001600160a01b03908116911614610704576040805162461bcd60e51b81526020600482018190526024820152600080516020610f01833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b6107d1610a70565b60055461010090046001600160a01b03908116911614610826576040805162461bcd60e51b81526020600482018190526024820152600080516020610f01833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60006104c2610857610a70565b8461054985604051806060016040528060258152602001610f6a6025913960016000610881610a70565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610cbb565b60006104c26108bf610a70565b8484610b60565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108f9610a70565b60055461010090046001600160a01b0390811691161461094e576040805162461bcd60e51b81526020600482018190526024820152600080516020610f01833981519152604482015290519081900360640190fd5b6001600160a01b0381166109935760405162461bcd60e51b8152600401808060200182810382526026815260200180610e6b6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60066020526000908152604090205460ff1681565b600082820183811015610a69576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610ab95760405162461bcd60e51b8152600401808060200182810382526024815260200180610f466024913960400191505060405180910390fd5b6001600160a01b038216610afe5760405162461bcd60e51b8152600401808060200182810382526022815260200180610e916022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ba55760405162461bcd60e51b8152600401808060200182810382526025815260200180610f216025913960400191505060405180910390fd5b6001600160a01b038216610bea5760405162461bcd60e51b8152600401808060200182810382526023815260200180610e486023913960400191505060405180910390fd5b610bf5838383610e42565b610c3281604051806060016040528060268152602001610eb3602691396001600160a01b0386166000908152602081905260409020549190610cbb565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610c619082610a0f565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d4a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d0f578181015183820152602001610cf7565b50505050905090810190601f168015610d3c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610dad576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610db960008383610e42565b600254610dc69082610a0f565b6002556001600160a01b038216600090815260208190526040902054610dec9082610a0f565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220219756d0754500a5e18998172fa4a1ba600b03ac9b7d5522ae8f2bd4b6ba4a3264736f6c634300060c0033000000000000000000000000a7363e06b9687e97a5ff5614018d76d901aa6c6e
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a7363e06b9687e97a5ff5614018d76d901aa6c6e
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a7363e06b9687e97a5ff5614018d76d901aa6c6e
Deployed ByteCode Sourcemap
28605:673:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17430:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19536:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19536:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18505:100;;;:::i;:::-;;;;;;;;;;;;;;;;20179:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20179:321:0;;;;;;;;;;;;;;;;;:::i;29007:94::-;;;;;;;;;;;;;;;;-1:-1:-1;29007:94:0;-1:-1:-1;;;;;29007:94:0;;:::i;:::-;;18357:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20909:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20909:218:0;;;;;;;;:::i;29181:94::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29181:94:0;;;;;;;;:::i;18668:119::-;;;;;;;;;;;;;;;;-1:-1:-1;18668:119:0;-1:-1:-1;;;;;18668:119:0;;:::i;27979:148::-;;;:::i;27337:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;27337:79:0;;;;;;;;;;;;;;17632:87;;;:::i;28911:90::-;;;;;;;;;;;;;;;;-1:-1:-1;28911:90:0;-1:-1:-1;;;;;28911:90:0;;:::i;21630:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21630:269:0;;;;;;;;:::i;19000:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19000:175:0;;;;;;;;:::i;19238:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19238:151:0;;;;;;;;;;:::i;28282:244::-;;;;;;;;;;;;;;;;-1:-1:-1;28282:244:0;-1:-1:-1;;;;;28282:244:0;;:::i;28668:40::-;;;;;;;;;;;;;;;;-1:-1:-1;28668:40:0;-1:-1:-1;;;;;28668:40:0;;:::i;17430:83::-;17500:5;17493:12;;;;;;;;-1:-1:-1;;17493:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17467:13;;17493:12;;17500:5;;17493:12;;17500:5;17493:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17430:83;:::o;19536:169::-;19619:4;19636:39;19645:12;:10;:12::i;:::-;19659:7;19668:6;19636:8;:39::i;:::-;-1:-1:-1;19693:4:0;19536:169;;;;:::o;18505:100::-;18585:12;;18505:100;:::o;20179:321::-;20285:4;20302:36;20312:6;20320:9;20331:6;20302:9;:36::i;:::-;20349:121;20358:6;20366:12;:10;:12::i;:::-;20380:89;20418:6;20380:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20380:19:0;;;;;;:11;:19;;;;;;20400:12;:10;:12::i;:::-;-1:-1:-1;;;;;20380:33:0;;;;;;;;;;;;-1:-1:-1;20380:33:0;;;:89;:37;:89::i;:::-;20349:8;:121::i;:::-;-1:-1:-1;20488:4:0;20179:321;;;;;:::o;29007:94::-;27559:12;:10;:12::i;:::-;27549:6;;;;;-1:-1:-1;;;;;27549:6:0;;;:22;;;27541:67;;;;;-1:-1:-1;;;27541:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27541:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29071:16:0::1;29090:5;29071:16:::0;;;:7:::1;:16;::::0;;;;:24;;-1:-1:-1;;29071:24:0::1;::::0;;29007:94::o;18357:83::-;18423:9;;;;18357:83;:::o;20909:218::-;20997:4;21014:83;21023:12;:10;:12::i;:::-;21037:7;21046:50;21085:10;21046:11;:25;21058:12;:10;:12::i;:::-;-1:-1:-1;;;;;21046:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21046:25:0;;;:34;;;;;;;;;;;:38;:50::i;29181:94::-;28761:10;28753:19;;;;:7;:19;;;;;;;;28745:42;;;;;-1:-1:-1;;;28745:42:0;;;;;;;;;;;;-1:-1:-1;;;28745:42:0;;;;;;;;;;;;;;;29250:19:::1;29256:3;29261:7;29250:5;:19::i;:::-;29181:94:::0;;:::o;18668:119::-;-1:-1:-1;;;;;18761:18:0;18734:7;18761:18;;;;;;;;;;;;18668:119::o;27979:148::-;27559:12;:10;:12::i;:::-;27549:6;;;;;-1:-1:-1;;;;;27549:6:0;;;:22;;;27541:67;;;;;-1:-1:-1;;;27541:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27541:67:0;;;;;;;;;;;;;;;28070:6:::1;::::0;28049:40:::1;::::0;28086:1:::1;::::0;28070:6:::1;::::0;::::1;-1:-1:-1::0;;;;;28070:6:0::1;::::0;28049:40:::1;::::0;28086:1;;28049:40:::1;28100:6;:19:::0;;-1:-1:-1;;;;;;28100:19:0::1;::::0;;27979:148::o;27337:79::-;27402:6;;;;;-1:-1:-1;;;;;27402:6:0;;27337:79::o;17632:87::-;17704:7;17697:14;;;;;;;;-1:-1:-1;;17697:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17671:13;;17697:14;;17704:7;;17697:14;;17704:7;17697:14;;;;;;;;;;;;;;;;;;;;;;;;28911:90;27559:12;:10;:12::i;:::-;27549:6;;;;;-1:-1:-1;;;;;27549:6:0;;;:22;;;27541:67;;;;;-1:-1:-1;;;27541:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27541:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28972:16:0::1;;::::0;;;:7:::1;:16;::::0;;;;:23;;-1:-1:-1;;28972:23:0::1;28991:4;28972:23;::::0;;28911:90::o;21630:269::-;21723:4;21740:129;21749:12;:10;:12::i;:::-;21763:7;21772:96;21811:15;21772:96;;;;;;;;;;;;;;;;;:11;:25;21784:12;:10;:12::i;:::-;-1:-1:-1;;;;;21772:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21772:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19000:175::-;19086:4;19103:42;19113:12;:10;:12::i;:::-;19127:9;19138:6;19103:9;:42::i;19238:151::-;-1:-1:-1;;;;;19354:18:0;;;19327:7;19354:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19238:151::o;28282:244::-;27559:12;:10;:12::i;:::-;27549:6;;;;;-1:-1:-1;;;;;27549:6:0;;;:22;;;27541:67;;;;;-1:-1:-1;;;27541:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27541:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28371:22:0;::::1;28363:73;;;;-1:-1:-1::0;;;28363:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28473:6;::::0;28452:38:::1;::::0;-1:-1:-1;;;;;28452:38:0;;::::1;::::0;28473:6:::1;::::0;::::1;;::::0;28452:38:::1;::::0;;;::::1;28501:6;:17:::0;;-1:-1:-1;;;;;28501:17:0;;::::1;;;-1:-1:-1::0;;;;;;28501:17:0;;::::1;::::0;;;::::1;::::0;;28282:244::o;28668:40::-;;;;;;;;;;;;;;;:::o;4737:181::-;4795:7;4827:5;;;4851:6;;;;4843:46;;;;;-1:-1:-1;;;4843:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4909:1;4737:181;-1:-1:-1;;;4737:181:0:o;659:106::-;747:10;659:106;:::o;24775:346::-;-1:-1:-1;;;;;24877:19:0;;24869:68;;;;-1:-1:-1;;;24869:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24956:21:0;;24948:68;;;;-1:-1:-1;;;24948:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25029:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25081:32;;;;;;;;;;;;;;;;;24775:346;;;:::o;22389:539::-;-1:-1:-1;;;;;22495:20:0;;22487:70;;;;-1:-1:-1;;;22487:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22576:23:0;;22568:71;;;;-1:-1:-1;;;22568:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22652:47;22673:6;22681:9;22692:6;22652:20;:47::i;:::-;22732:71;22754:6;22732:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22732:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22712:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22837:20;;;;;;;:32;;22862:6;22837:24;:32::i;:::-;-1:-1:-1;;;;;22814:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22885:35;;;;;;;22814:20;;22885:35;;;;;;;;;;;;;22389:539;;;:::o;5640:192::-;5726:7;5762:12;5754:6;;;;5746:29;;;;-1:-1:-1;;;5746:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5798:5:0;;;5640:192::o;23209:378::-;-1:-1:-1;;;;;23293:21:0;;23285:65;;;;;-1:-1:-1;;;23285:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23363:49;23392:1;23396:7;23405:6;23363:20;:49::i;:::-;23440:12;;:24;;23457:6;23440:16;:24::i;:::-;23425:12;:39;-1:-1:-1;;;;;23496:18:0;;:9;:18;;;;;;;;;;;:30;;23519:6;23496:22;:30::i;:::-;-1:-1:-1;;;;;23475:18:0;;:9;:18;;;;;;;;;;;:51;;;;23542:37;;;;;;;23475:18;;:9;;23542:37;;;;;;;;;;23209:378;;:::o;26146:92::-;;;;:::o
Swarm Source
ipfs://219756d0754500a5e18998172fa4a1ba600b03ac9b7d5522ae8f2bd4b6ba4a32
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.