ETH Price: $2,735.63 (+4.23%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211178
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211178
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211178
Reword88471522019-10-31 15:01:141922 days ago1572534074IN
0x14890e5c...10D010a62
0 ETH0.000211688
View all transactions

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

Contract Source Code Verified (Exact Match)

Contract Name:
AutionRecord

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-09-19
*/

pragma solidity ^0.5.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.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @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(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _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 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract AutionRecord is Ownable{

    event Join(address owner, uint256 userid, uint256 amount, uint256 round );
    event Reword(address owner, uint256 userid, uint256 amount, uint256 round);
    event Auctoin(uint256 round, uint256 amount, uint256 bgtime, uint256 edtime, uint256 num);

    function join(address owner, uint256 userid, uint256 amount, uint256 round ) external onlyOwner{
        emit Join(owner, userid, amount, round );
    }

    function reword(address owner, uint256 userid, uint256 amount, uint256 round ) external onlyOwner{
        emit Reword(owner, userid, amount, round );
    }

    function auctoin(uint256 round, uint256 amount, uint256 bgtime, uint256 edtime, uint256 num) external onlyOwner{
        emit Auctoin(round, amount, bgtime, edtime, num);
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"userid","type":"uint256"},{"name":"amount","type":"uint256"},{"name":"round","type":"uint256"}],"name":"join","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"userid","type":"uint256"},{"name":"amount","type":"uint256"},{"name":"round","type":"uint256"}],"name":"reword","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"round","type":"uint256"},{"name":"amount","type":"uint256"},{"name":"bgtime","type":"uint256"},{"name":"edtime","type":"uint256"},{"name":"num","type":"uint256"}],"name":"auctoin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"userid","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"round","type":"uint256"}],"name":"Join","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"userid","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"round","type":"uint256"}],"name":"Reword","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"round","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"bgtime","type":"uint256"},{"indexed":false,"name":"edtime","type":"uint256"},{"indexed":false,"name":"num","type":"uint256"}],"name":"Auctoin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

6080604052336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36108f9806100cf6000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c80638da5cb5b1161005b5780638da5cb5b146101505780638f32d59b1461019a578063a3c2249b146101bc578063f2fde38b146102125761007d565b8063112e14001461008257806335eb53b0146100e4578063715018a614610146575b600080fd5b6100e26004803603608081101561009857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050610256565b005b610144600480360360808110156100fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050610351565b005b61014e61044c565b005b610158610585565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101a26105ae565b604051808215151515815260200191505060405180910390f35b610210600480360360a08110156101d257600080fd5b810190808035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190505050610605565b005b6102546004803603602081101561022857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106dd565b005b61025e6105ae565b6102d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7f06a53e219120c51ec80719fc276a64f9841a8d57e91393be6460249becc6307f84848484604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a150505050565b6103596105ae565b6103cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7f99643f9a4a2373de3864d75f5a927c47e940e165858ee3b03979ef23fa87e44d84848484604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a150505050565b6104546105ae565b6104c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b61060d6105ae565b61067f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7f83095cbeb801144d96a22d0b8af9f2aba7030aa0f3f22a97b2d6f5fb6c1d7b538585858585604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a15050505050565b6106e56105ae565b610757576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61076081610763565b50565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806108a86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a165627a7a723058201e782cb45d615a4104691170c16355785ee9f9e13f55c9fd7bbc8f358e4022830029

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80638da5cb5b1161005b5780638da5cb5b146101505780638f32d59b1461019a578063a3c2249b146101bc578063f2fde38b146102125761007d565b8063112e14001461008257806335eb53b0146100e4578063715018a614610146575b600080fd5b6100e26004803603608081101561009857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050610256565b005b610144600480360360808110156100fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050610351565b005b61014e61044c565b005b610158610585565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101a26105ae565b604051808215151515815260200191505060405180910390f35b610210600480360360a08110156101d257600080fd5b810190808035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190505050610605565b005b6102546004803603602081101561022857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106dd565b005b61025e6105ae565b6102d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7f06a53e219120c51ec80719fc276a64f9841a8d57e91393be6460249becc6307f84848484604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a150505050565b6103596105ae565b6103cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7f99643f9a4a2373de3864d75f5a927c47e940e165858ee3b03979ef23fa87e44d84848484604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a150505050565b6104546105ae565b6104c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b61060d6105ae565b61067f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7f83095cbeb801144d96a22d0b8af9f2aba7030aa0f3f22a97b2d6f5fb6c1d7b538585858585604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a15050505050565b6106e56105ae565b610757576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61076081610763565b50565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806108a86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a165627a7a723058201e782cb45d615a4104691170c16355785ee9f9e13f55c9fd7bbc8f358e4022830029

Deployed Bytecode Sourcemap

2398:809:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2398:809:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2698:154;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;2698:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2860:158;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;2860:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1652:140;;;:::i;:::-;;841:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1207:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3026:178;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;3026:178:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1947:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1947:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;2698:154;1053:9;:7;:9::i;:::-;1045:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2809:35;2814:5;2821:6;2829;2837:5;2809:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2698:154;;;;:::o;2860:158::-;1053:9;:7;:9::i;:::-;1045:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2973:37;2980:5;2987:6;2995;3003:5;2973:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2860:158;;;;:::o;1652:140::-;1053:9;:7;:9::i;:::-;1045:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1751:1;1714:40;;1735:6;;;;;;;;;;;1714:40;;;;;;;;;;;;1782:1;1765:6;;:19;;;;;;;;;;;;;;;;;;1652:140::o;841:79::-;879:7;906:6;;;;;;;;;;;899:13;;841:79;:::o;1207:92::-;1247:4;1285:6;;;;;;;;;;;1271:20;;:10;:20;;;1264:27;;1207:92;:::o;3026:178::-;1053:9;:7;:9::i;:::-;1045:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3153:43;3161:5;3168:6;3176;3184;3192:3;3153:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3026:178;;;;;:::o;1947:109::-;1053:9;:7;:9::i;:::-;1045:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020:28;2039:8;2020:18;:28::i;:::-;1947:109;:::o;2162:229::-;2256:1;2236:22;;:8;:22;;;;2228:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2346:8;2317:38;;2338:6;;;;;;;;;;;2317:38;;;;;;;;;;;;2375:8;2366:6;;:17;;;;;;;;;;;;;;;;;;2162:229;:::o

Swarm Source

bzzr://1e782cb45d615a4104691170c16355785ee9f9e13f55c9fd7bbc8f358e402283

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

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.