ETH Price: $3,558.82 (+2.35%)
Gas: 23 Gwei

Contract

0x285E9606463448A93B811ABb64bC15f52dA5A40c
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer167825592023-03-08 9:10:11386 days ago1678266611IN
0x285E9606...52dA5A40c
0 ETH0.0015171629.32110998
Transfer163420152023-01-05 17:15:11448 days ago1672938911IN
0x285E9606...52dA5A40c
0 ETH0.0013863726.78724862
Approve162962952022-12-30 8:08:35454 days ago1672387715IN
0x285E9606...52dA5A40c
0 ETH0.0007028915.06331868
Transfer158757682022-11-01 14:27:23513 days ago1667312843IN
0x285E9606...52dA5A40c
0 ETH0.0005802619.45158071
Transfer158755792022-11-01 13:49:11513 days ago1667310551IN
0x285E9606...52dA5A40c
0 ETH0.0009341518.05375083
Transfer154578472022-09-02 7:27:21573 days ago1662103641IN
0x285E9606...52dA5A40c
0 ETH0.0008752518.64504426
Increase Allowan...154576472022-09-02 6:42:47573 days ago1662100967IN
0x285E9606...52dA5A40c
0 ETH0.0005800212.44236972
Transfer154576162022-09-02 6:35:33573 days ago1662100533IN
0x285E9606...52dA5A40c
0 ETH0.0006608319.07568314
Transfer154574922022-09-02 6:05:22573 days ago1662098722IN
0x285E9606...52dA5A40c
0 ETH0.0006868913.2752214
Approve154574292022-09-02 5:47:10573 days ago1662097630IN
0x285E9606...52dA5A40c
0 ETH0.00035867.73468754
Transfer150818432022-07-05 10:05:30632 days ago1657015530IN
0x285E9606...52dA5A40c
0 ETH0.0008205617.48010268
Transfer150818412022-07-05 10:04:48632 days ago1657015488IN
0x285E9606...52dA5A40c
0 ETH0.0008406416.25037775
Transfer150818242022-07-05 10:02:06632 days ago1657015326IN
0x285E9606...52dA5A40c
0 ETH0.0011730724.99574248
Transfer150818192022-07-05 10:00:23632 days ago1657015223IN
0x285E9606...52dA5A40c
0 ETH0.0010178419.67119175
Transfer150803862022-07-05 4:34:23632 days ago1656995663IN
0x285E9606...52dA5A40c
0 ETH0.000427412.33746925
Transfer150803812022-07-05 4:33:18632 days ago1656995598IN
0x285E9606...52dA5A40c
0 ETH0.0006482312.52795208
Transfer150803742022-07-05 4:31:19632 days ago1656995479IN
0x285E9606...52dA5A40c
0 ETH0.0004147811.9729884
Transfer150803662022-07-05 4:30:35632 days ago1656995435IN
0x285E9606...52dA5A40c
0 ETH0.0006813513.16801505
Transfer150569532022-07-01 13:50:18636 days ago1656683418IN
0x285E9606...52dA5A40c
0 ETH0.0014333330.53356191
Transfer150569512022-07-01 13:49:15636 days ago1656683355IN
0x285E9606...52dA5A40c
0 ETH0.0014967828.92729473
Transfer150569472022-07-01 13:48:36636 days ago1656683316IN
0x285E9606...52dA5A40c
0 ETH0.001795934.70823391
Transfer150569452022-07-01 13:48:04636 days ago1656683284IN
0x285E9606...52dA5A40c
0 ETH0.0018728736.1957171
Transfer150569432022-07-01 13:47:27636 days ago1656683247IN
0x285E9606...52dA5A40c
0 ETH0.0016133431.17993103
Transfer150569412022-07-01 13:46:42636 days ago1656683202IN
0x285E9606...52dA5A40c
0 ETH0.0016480431.8505788
Transfer150569402022-07-01 13:46:22636 days ago1656683182IN
0x285E9606...52dA5A40c
0 ETH0.0015328329.6239868
View all transactions

Advanced mode:
Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ORDA

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

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

// Sources flattened with hardhat v2.9.3 https://hardhat.org
// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/utils/[email protected]

// 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;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}


// File contracts/ORDA.sol

pragma solidity ^0.8.0;
contract ORDA is ERC20 {
    /**
     * @dev Mints initialSupply amount of token and transfers them to owner.
     *
     * See {ERC20-constructor}.
     */
    constructor(
        string memory name,
        string memory symbol,
        uint256 initialSupply,
        address owner
    ) ERC20(name, symbol) {
        _mint(owner, initialSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162000d4d38038062000d4d8339810160408190526200003491620002ba565b8351849084906200004d90600390602085019062000169565b5080516200006390600490602084019062000169565b5050506200007881836200008260201b60201c565b5050505062000403565b6001600160a01b038216620000b45760405162461bcd60e51b8152600401620000ab906200034b565b60405180910390fd5b620000c26000838362000164565b8060026000828254620000d691906200038b565b90915550506001600160a01b03821660009081526020819052604081208054839290620001059084906200038b565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200014a90859062000382565b60405180910390a3620001606000838362000164565b5050565b505050565b8280546200017790620003b0565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b600082601f83011262000220578081fd5b81516001600160401b03808211156200023d576200023d620003ed565b6040516020601f8401601f1916820181018381118382101715620002655762000265620003ed565b60405283825285840181018710156200027c578485fd5b8492505b838310156200029f578583018101518284018201529182019162000280565b83831115620002b057848185840101525b5095945050505050565b60008060008060808587031215620002d0578384fd5b84516001600160401b0380821115620002e7578586fd5b620002f5888389016200020f565b955060208701519150808211156200030b578485fd5b506200031a878288016200020f565b60408701516060880151919550935090506001600160a01b038116811462000340578182fd5b939692955090935050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003ab57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620003c557607f821691505b60208210811415620003e757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61093a80620004136000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b411461014f578063a457c2d714610157578063a9059cbb1461016a578063dd62ed3e1461017d576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610190565b6040516100c3919061066b565b60405180910390f35b6100df6100da366004610637565b610222565b6040516100c39190610660565b6100f4610244565b6040516100c3919061088e565b6100df61010f3660046105fc565b61024a565b61011c610278565b6040516100c39190610897565b6100df610137366004610637565b61027d565b6100f461014a3660046105a9565b6102a9565b6100b66102c8565b6100df610165366004610637565b6102d7565b6100df610178366004610637565b610328565b6100f461018b3660046105ca565b610340565b60606003805461019f906108c9565b80601f01602080910402602001604051908101604052809291908181526020018280546101cb906108c9565b80156102185780601f106101ed57610100808354040283529160200191610218565b820191906000526020600020905b8154815290600101906020018083116101fb57829003601f168201915b5050505050905090565b60008061022d61036b565b905061023a81858561036f565b5060019392505050565b60025490565b60008061025561036b565b9050610262858285610423565b61026d85858561046d565b506001949350505050565b601290565b60008061028861036b565b905061023a81858561029a8589610340565b6102a491906108a5565b61036f565b6001600160a01b0381166000908152602081905260409020545b919050565b60606004805461019f906108c9565b6000806102e261036b565b905060006102f08286610340565b90508381101561031b5760405162461bcd60e51b815260040161031290610849565b60405180910390fd5b61026d828686840361036f565b60008061033361036b565b905061023a81858561046d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166103955760405162461bcd60e51b815260040161031290610805565b6001600160a01b0382166103bb5760405162461bcd60e51b815260040161031290610701565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061041690859061088e565b60405180910390a3505050565b600061042f8484610340565b90506000198114610467578181101561045a5760405162461bcd60e51b815260040161031290610743565b610467848484840361036f565b50505050565b6001600160a01b0383166104935760405162461bcd60e51b8152600401610312906107c0565b6001600160a01b0382166104b95760405162461bcd60e51b8152600401610312906106be565b6104c483838361058d565b6001600160a01b038316600090815260208190526040902054818110156104fd5760405162461bcd60e51b81526004016103129061077a565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906105349084906108a5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161057e919061088e565b60405180910390a36104678484845b505050565b80356001600160a01b03811681146102c357600080fd5b6000602082840312156105ba578081fd5b6105c382610592565b9392505050565b600080604083850312156105dc578081fd5b6105e583610592565b91506105f360208401610592565b90509250929050565b600080600060608486031215610610578081fd5b61061984610592565b925061062760208501610592565b9150604084013590509250925092565b60008060408385031215610649578182fd5b61065283610592565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156106975785810183015185820160400152820161067b565b818111156106a85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156108c457634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806108dd57607f821691505b602082108114156108fe57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122023282545a7898c198902bb5efde8e6656bdd624a1579561ab9abafe73f354cc264736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000a81546128c4304980000000000000000000000000000085782c9ae7aa98d32c13b2b90cced88cd207ebad00000000000000000000000000000000000000000000000000000000000000084f5244414441544100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f52444100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b411461014f578063a457c2d714610157578063a9059cbb1461016a578063dd62ed3e1461017d576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610190565b6040516100c3919061066b565b60405180910390f35b6100df6100da366004610637565b610222565b6040516100c39190610660565b6100f4610244565b6040516100c3919061088e565b6100df61010f3660046105fc565b61024a565b61011c610278565b6040516100c39190610897565b6100df610137366004610637565b61027d565b6100f461014a3660046105a9565b6102a9565b6100b66102c8565b6100df610165366004610637565b6102d7565b6100df610178366004610637565b610328565b6100f461018b3660046105ca565b610340565b60606003805461019f906108c9565b80601f01602080910402602001604051908101604052809291908181526020018280546101cb906108c9565b80156102185780601f106101ed57610100808354040283529160200191610218565b820191906000526020600020905b8154815290600101906020018083116101fb57829003601f168201915b5050505050905090565b60008061022d61036b565b905061023a81858561036f565b5060019392505050565b60025490565b60008061025561036b565b9050610262858285610423565b61026d85858561046d565b506001949350505050565b601290565b60008061028861036b565b905061023a81858561029a8589610340565b6102a491906108a5565b61036f565b6001600160a01b0381166000908152602081905260409020545b919050565b60606004805461019f906108c9565b6000806102e261036b565b905060006102f08286610340565b90508381101561031b5760405162461bcd60e51b815260040161031290610849565b60405180910390fd5b61026d828686840361036f565b60008061033361036b565b905061023a81858561046d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166103955760405162461bcd60e51b815260040161031290610805565b6001600160a01b0382166103bb5760405162461bcd60e51b815260040161031290610701565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061041690859061088e565b60405180910390a3505050565b600061042f8484610340565b90506000198114610467578181101561045a5760405162461bcd60e51b815260040161031290610743565b610467848484840361036f565b50505050565b6001600160a01b0383166104935760405162461bcd60e51b8152600401610312906107c0565b6001600160a01b0382166104b95760405162461bcd60e51b8152600401610312906106be565b6104c483838361058d565b6001600160a01b038316600090815260208190526040902054818110156104fd5760405162461bcd60e51b81526004016103129061077a565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906105349084906108a5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161057e919061088e565b60405180910390a36104678484845b505050565b80356001600160a01b03811681146102c357600080fd5b6000602082840312156105ba578081fd5b6105c382610592565b9392505050565b600080604083850312156105dc578081fd5b6105e583610592565b91506105f360208401610592565b90509250929050565b600080600060608486031215610610578081fd5b61061984610592565b925061062760208501610592565b9150604084013590509250925092565b60008060408385031215610649578182fd5b61065283610592565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156106975785810183015185820160400152820161067b565b818111156106a85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156108c457634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806108dd57607f821691505b602082108114156108fe57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122023282545a7898c198902bb5efde8e6656bdd624a1579561ab9abafe73f354cc264736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000a81546128c4304980000000000000000000000000000085782c9ae7aa98d32c13b2b90cced88cd207ebad00000000000000000000000000000000000000000000000000000000000000084f5244414441544100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f52444100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ORDADATA
Arg [1] : symbol (string): ORDA
Arg [2] : initialSupply (uint256): 12700000000000000000000000
Arg [3] : owner (address): 0x85782c9Ae7Aa98D32C13b2b90cced88Cd207EBAD

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000a81546128c43049800000
Arg [3] : 00000000000000000000000085782c9ae7aa98d32c13b2b90cced88cd207ebad
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4f52444144415441000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4f52444100000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17620:371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6768:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9119:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7888:108::-;;;:::i;:::-;;;;;;;:::i;9900:295::-;;;;;;:::i;:::-;;:::i;7730:93::-;;;:::i;:::-;;;;;;;:::i;10604:238::-;;;;;;:::i;:::-;;:::i;8059:127::-;;;;;;:::i;:::-;;:::i;6987:104::-;;;:::i;11345:436::-;;;;;;:::i;:::-;;:::i;8392:193::-;;;;;;:::i;:::-;;:::i;8648:151::-;;;;;;:::i;:::-;;:::i;6768:100::-;6822:13;6855:5;6848:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6768:100;:::o;9119:201::-;9202:4;9219:13;9235:12;:10;:12::i;:::-;9219:28;;9258:32;9267:5;9274:7;9283:6;9258:8;:32::i;:::-;-1:-1:-1;9308:4:0;;9119:201;-1:-1:-1;;;9119:201:0:o;7888:108::-;7976:12;;7888:108;:::o;9900:295::-;10031:4;10048:15;10066:12;:10;:12::i;:::-;10048:30;;10089:38;10105:4;10111:7;10120:6;10089:15;:38::i;:::-;10138:27;10148:4;10154:2;10158:6;10138:9;:27::i;:::-;-1:-1:-1;10183:4:0;;9900:295;-1:-1:-1;;;;9900:295:0:o;7730:93::-;7813:2;7730:93;:::o;10604:238::-;10692:4;10709:13;10725:12;:10;:12::i;:::-;10709:28;;10748:64;10757:5;10764:7;10801:10;10773:25;10783:5;10790:7;10773:9;:25::i;:::-;:38;;;;:::i;:::-;10748:8;:64::i;8059:127::-;-1:-1:-1;;;;;8160:18:0;;8133:7;8160:18;;;;;;;;;;;8059:127;;;;:::o;6987:104::-;7043:13;7076:7;7069:14;;;;;:::i;11345:436::-;11438:4;11455:13;11471:12;:10;:12::i;:::-;11455:28;;11494:24;11521:25;11531:5;11538:7;11521:9;:25::i;:::-;11494:52;;11585:15;11565:16;:35;;11557:85;;;;-1:-1:-1;;;11557:85:0;;;;;;;:::i;:::-;;;;;;;;;11678:60;11687:5;11694:7;11722:15;11703:16;:34;11678:8;:60::i;8392:193::-;8471:4;8488:13;8504:12;:10;:12::i;:::-;8488:28;;8527;8537:5;8544:2;8548:6;8527:9;:28::i;8648:151::-;-1:-1:-1;;;;;8764:18:0;;;8737:7;8764:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8648:151::o;4404:98::-;4484:10;4404:98;:::o;14979:380::-;-1:-1:-1;;;;;15115:19:0;;15107:68;;;;-1:-1:-1;;;15107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15194:21:0;;15186:68;;;;-1:-1:-1;;;15186:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15267:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15319:32;;;;;15297:6;;15319:32;:::i;:::-;;;;;;;;14979:380;;;:::o;15650:453::-;15785:24;15812:25;15822:5;15829:7;15812:9;:25::i;:::-;15785:52;;-1:-1:-1;;15852:16:0;:37;15848:248;;15934:6;15914:16;:26;;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;16018:51;16027:5;16034:7;16062:6;16043:16;:25;16018:8;:51::i;:::-;15650:453;;;;:::o;12260:671::-;-1:-1:-1;;;;;12391:18:0;;12383:68;;;;-1:-1:-1;;;12383:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12470:16:0;;12462:64;;;;-1:-1:-1;;;12462:64:0;;;;;;;:::i;:::-;12539:38;12560:4;12566:2;12570:6;12539:20;:38::i;:::-;-1:-1:-1;;;;;12612:15:0;;12590:19;12612:15;;;;;;;;;;;12646:21;;;;12638:72;;;;-1:-1:-1;;;12638:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12746:15:0;;;:9;:15;;;;;;;;;;;12764:20;;;12746:38;;12806:13;;;;;;;;:23;;12778:6;;12746:9;12806:23;;12778:6;;12806:23;:::i;:::-;;;;;;;;12862:2;-1:-1:-1;;;;;12847:26:0;12856:4;-1:-1:-1;;;;;12847:26:0;;12866:6;12847:26;;;;;;:::i;:::-;;;;;;;;12886:37;12906:4;12912:2;12916:6;16703:125;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:187::-;1459:14;;1452:22;1434:41;;1422:2;1407:18;;1389:92::o;1486:603::-;;1627:2;1656;1645:9;1638:21;1688:6;1682:13;1731:6;1726:2;1715:9;1711:18;1704:34;1756:4;1769:140;1783:6;1780:1;1777:13;1769:140;;;1878:14;;;1874:23;;1868:30;1844:17;;;1863:2;1840:26;1833:66;1798:10;;1769:140;;;1927:6;1924:1;1921:13;1918:2;;;1997:4;1992:2;1983:6;1972:9;1968:22;1964:31;1957:45;1918:2;-1:-1:-1;2073:2:1;2052:15;-1:-1:-1;;2048:29:1;2033:45;;;;2080:2;2029:54;;1607:482;-1:-1:-1;;;1607:482:1:o;2094:399::-;2296:2;2278:21;;;2335:2;2315:18;;;2308:30;2374:34;2369:2;2354:18;;2347:62;-1:-1:-1;;;2440:2:1;2425:18;;2418:33;2483:3;2468:19;;2268:225::o;2498:398::-;2700:2;2682:21;;;2739:2;2719:18;;;2712:30;2778:34;2773:2;2758:18;;2751:62;-1:-1:-1;;;2844:2:1;2829:18;;2822:32;2886:3;2871:19;;2672:224::o;2901:353::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:31;3176:2;3161:18;;3154:59;3245:2;3230:18;;3075:179::o;3259:402::-;3461:2;3443:21;;;3500:2;3480:18;;;3473:30;3539:34;3534:2;3519:18;;3512:62;-1:-1:-1;;;3605:2:1;3590:18;;3583:36;3651:3;3636:19;;3433:228::o;3666:401::-;3868:2;3850:21;;;3907:2;3887:18;;;3880:30;3946:34;3941:2;3926:18;;3919:62;-1:-1:-1;;;4012:2:1;3997:18;;3990:35;4057:3;4042:19;;3840:227::o;4072:400::-;4274:2;4256:21;;;4313:2;4293:18;;;4286:30;4352:34;4347:2;4332:18;;4325:62;-1:-1:-1;;;4418:2:1;4403:18;;4396:34;4462:3;4447:19;;4246:226::o;4477:401::-;4679:2;4661:21;;;4718:2;4698:18;;;4691:30;4757:34;4752:2;4737:18;;4730:62;-1:-1:-1;;;4823:2:1;4808:18;;4801:35;4868:3;4853:19;;4651:227::o;4883:177::-;5029:25;;;5017:2;5002:18;;4984:76::o;5065:184::-;5237:4;5225:17;;;;5207:36;;5195:2;5180:18;;5162:87::o;5254:229::-;;5325:1;5321:6;5318:1;5315:13;5312:2;;;-1:-1:-1;;;5351:33:1;;5407:4;5404:1;5397:15;5437:4;5358:3;5425:17;5312:2;-1:-1:-1;5468:9:1;;5302:181::o;5488:380::-;5573:1;5563:12;;5620:1;5610:12;;;5631:2;;5685:4;5677:6;5673:17;5663:27;;5631:2;5738;5730:6;5727:14;5707:18;5704:38;5701:2;;;5784:10;5779:3;5775:20;5772:1;5765:31;5819:4;5816:1;5809:15;5847:4;5844:1;5837:15;5701:2;;5543:325;;;:::o

Swarm Source

ipfs://23282545a7898c198902bb5efde8e6656bdd624a1579561ab9abafe73f354cc2

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.