ETH Price: $3,147.44 (+1.80%)

Contract

0x865e3707a580F9db89304005CddD050Ade8873eB
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer190605722024-01-22 6:44:11299 days ago1705905851IN
0x865e3707...Ade8873eB
0 ETH0.0005816312.3197252
Transfer167812862023-03-08 4:53:11619 days ago1678251191IN
0x865e3707...Ade8873eB
0 ETH0.0009245719.5835385
Transfer166886702023-02-23 4:17:35632 days ago1677125855IN
0x865e3707...Ade8873eB
0 ETH0.0015155732.10151939
Transfer166869242023-02-22 22:24:47632 days ago1677104687IN
0x865e3707...Ade8873eB
0 ETH0.0018995740.23492213
Transfer166185142023-02-13 8:02:35642 days ago1676275355IN
0x865e3707...Ade8873eB
0 ETH0.0007717516.34664958
Transfer162728342022-12-27 1:34:23690 days ago1672104863IN
0x865e3707...Ade8873eB
0 ETH0.0011133723.58841898
Transfer136281672021-11-16 18:26:491096 days ago1637087209IN
0x865e3707...Ade8873eB
0 ETH0.00798692153.55918335
Transfer133158892021-09-28 18:32:021145 days ago1632853922IN
0x865e3707...Ade8873eB
0 ETH0.0043014882.7017444
Approve130942932021-08-25 11:26:291179 days ago1629890789IN
0x865e3707...Ade8873eB
0 ETH0.0025845855.70352901
Transfer128973692021-07-25 19:46:131210 days ago1627242373IN
0x865e3707...Ade8873eB
0 ETH0.0005181614
Transfer128060602021-07-11 12:43:501224 days ago1626007430IN
0x865e3707...Ade8873eB
0 ETH0.0003702410
Transfer123823162021-05-06 18:18:471290 days ago1620325127IN
0x865e3707...Ade8873eB
0 ETH0.0038497774
Transfer121570202021-04-02 0:58:471324 days ago1617325127IN
0x865e3707...Ade8873eB
0 ETH0.00569527153
Transfer120135902021-03-10 22:44:431346 days ago1615416283IN
0x865e3707...Ade8873eB
0 ETH0.0030141781
Transfer120113892021-03-10 14:43:151347 days ago1615387395IN
0x865e3707...Ade8873eB
0 ETH0.00413053111
Transfer119906542021-03-07 9:54:081350 days ago1615110848IN
0x865e3707...Ade8873eB
0 ETH0.00595216114
Transfer118439042021-02-12 20:08:041373 days ago1613160484IN
0x865e3707...Ade8873eB
0 ETH0.01048971200.86000149
Transfer118028642021-02-06 12:55:221379 days ago1612616122IN
0x865e3707...Ade8873eB
0 ETH0.0089303171
Transfer117404862021-01-27 22:10:521388 days ago1611785452IN
0x865e3707...Ade8873eB
0 ETH0.0041779280
Transfer116375552021-01-12 2:54:021404 days ago1610420042IN
0x865e3707...Ade8873eB
0 ETH0.001411249
Transfer116217012021-01-09 16:41:381407 days ago1610210498IN
0x865e3707...Ade8873eB
0 ETH0.001865884
Transfer115895062021-01-04 18:01:251412 days ago1609783285IN
0x865e3707...Ade8873eB
0 ETH0.00772915148
Transfer115895042021-01-04 18:00:451412 days ago1609783245IN
0x865e3707...Ade8873eB
0 ETH0.00633924170.3
Transfer110310362020-10-11 0:41:421497 days ago1602376902IN
0x865e3707...Ade8873eB
0 ETH0.0011174430
Approve109468312020-09-27 20:40:291510 days ago1601239229IN
0x865e3707...Ade8873eB
0 ETH0.0021263548
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Hire

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-12-05
*/

pragma solidity ^0.4.17;

library SafeMath {
    
    /**
     *  Sub function asserts that b is less than or equal to a.
     * */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * Add function avoids overflow.
    * */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) constant public returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) constant public returns (uint256);
    function transferFrom(address from, address to, uint256 value) public  returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract BasicToken is ERC20Basic {

    using SafeMath for uint256;

    //keeps a record of the total balances of each ETH address.
    mapping (address => uint256) balances;

    modifier onlyPayloadSize(uint size) {
        if (msg.data.length < size + 4) {
        revert();
        }
        _;
    }

    /**
     * Transfer function makes it possible for users to transfer their Hire tokens to another
     * ETH address.
     * 
     * @param _to the address of the recipient.
     * @param _amount the amount of Hire tokens to be sent.
     * */
    function transfer(address _to, uint256 _amount) public onlyPayloadSize(2 * 32) returns (bool) {
        require(balances[msg.sender] >= _amount);
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(msg.sender, _to, _amount);
        return true;
    }

    /**
     * BalanceOf function returns the total balance of the queried address.
     * 
     * @param _addr the address which is being queried.
     * */
    function balanceOf(address _addr) public constant returns (uint256) {
        return balances[_addr];
    }
}

contract AdvancedToken is BasicToken, ERC20 {
    
    //keeps a record of all the allowances from one ETH address to another.
    mapping (address => mapping (address => uint256)) allowances; 
    
    /**
     * TransferFrom function allows users to spend ETH on another's behalf, given that the _owner
     * has allowed them to. 
     * 
     * @param _from the address of the owner.
     * @param _to the address of the recipient.
     * @param _amount the total amount of tokens to be sent. '
     * */
    function transferFrom(address _from, address _to, uint256 _amount) public onlyPayloadSize(3 * 32) returns (bool) {
        require(allowances[_from][msg.sender] >= _amount && balances[_from] >= _amount);
        allowances[_from][msg.sender] = allowances[_from][msg.sender].sub(_amount);
        balances[_from] = balances[_from].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(_from, _to, _amount);
        return true;
    }

    /**
     * Approve function allows users to allow others to spend a specified amount tokens on
     * their behalf.
     * 
     * @param _spender the address of the spended who is being granted permission to spend tokens.
     * @param _amount the total amount of tokens the spender is allowed to spend.
     * */
    function approve(address _spender, uint256 _amount) public returns (bool) {
        allowances[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
        return true;
    }

    /**
     * Allowance function returns the total allowance from one address to another.
     * 
     * @param _owner the address of the owner of the token.
     * @param _spender the address of the spender who has or has not been allowed to spend
     * the owners tokens.
     * */
    function allowance(address _owner, address _spender) public constant returns (uint256) {
        return allowances[_owner][_spender];
    }

}

contract Hire is AdvancedToken {

    uint8 public decimals;
    string public name;
    string public symbol;
    address public owner;

    /**
    * Constructor initializes the total supply to 100,000,000, the token name to
    * Hire, the token symbol to HIRE, sets the decimals to 18 and automatically 
    * sends all tokens to the owner of the contract upon deployment.
    * */
    function Hire() public {
        totalSupply = 100000000e18;
        decimals = 18;
        name = "Hire";
        symbol = "HIRE";
        owner = 0xaAa34A22Bd3F496b3A8648367CeeA9c03B130A30;
        balances[owner] = totalSupply;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

6060604052341561000f57600080fd5b6a52b7d2dcc80cd2e40000006000556003805460ff191660121790556040805190810160405260048082527f48697265000000000000000000000000000000000000000000000000000000006020830152908051610071929160200190610103565b5060408051908101604052600481527f4849524500000000000000000000000000000000000000000000000000000000602082015260059080516100b9929160200190610103565b5060068054600160a060020a03191673aaa34a22bd3f496b3a8648367ceea9c03b130a30179081905560008054600160a060020a039290921681526001602052604090205561019e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014457805160ff1916838001178555610171565b82800160010185558215610171579182015b82811115610171578251825591602001919060010190610156565b5061017d929150610181565b5090565b61019b91905b8082111561017d5760008155600101610187565b90565b61072d806101ad6000396000f3006060604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461016857806323b872dd1461018d578063313ce567146101b557806370a08231146101de5780638da5cb5b146101fd57806395d89b411461022c578063a9059cbb1461023f578063dd62ed3e14610261575b600080fd5b34156100b357600080fd5b6100bb610286565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100f75780820151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013d57600080fd5b610154600160a060020a0360043516602435610324565b604051901515815260200160405180910390f35b341561017357600080fd5b61017b610390565b60405190815260200160405180910390f35b341561019857600080fd5b610154600160a060020a0360043581169060243516604435610396565b34156101c057600080fd5b6101c8610518565b60405160ff909116815260200160405180910390f35b34156101e957600080fd5b61017b600160a060020a0360043516610521565b341561020857600080fd5b61021061053c565b604051600160a060020a03909116815260200160405180910390f35b341561023757600080fd5b6100bb61054b565b341561024a57600080fd5b610154600160a060020a03600435166024356105b6565b341561026c57600080fd5b61017b600160a060020a03600435811690602435166106ae565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561031c5780601f106102f15761010080835404028352916020019161031c565b820191906000526020600020905b8154815290600101906020018083116102ff57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000606060643610156103a857600080fd5b600160a060020a03808616600090815260026020908152604080832033909416835292905220548390108015906103f85750600160a060020a038516600090815260016020526040902054839010155b151561040357600080fd5b600160a060020a038086166000908152600260209081526040808320339094168352929052205461043a908463ffffffff6106d916565b600160a060020a038087166000818152600260209081526040808320339095168352938152838220949094559081526001909252902054610481908463ffffffff6106d916565b600160a060020a0380871660009081526001602052604080822093909355908616815220546104b6908463ffffffff6106eb16565b600160a060020a03808616600081815260016020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60035460ff1681565b600160a060020a031660009081526001602052604090205490565b600654600160a060020a031681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561031c5780601f106102f15761010080835404028352916020019161031c565b6000604060443610156105c857600080fd5b600160a060020a033316600090815260016020526040902054839010156105ee57600080fd5b600160a060020a033316600090815260016020526040902054610617908463ffffffff6106d916565b600160a060020a03338116600090815260016020526040808220939093559086168152205461064c908463ffffffff6106eb16565b600160a060020a0380861660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35060019392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156106e557fe5b50900390565b6000828201838110156106fa57fe5b93925050505600a165627a7a7230582077e95292c89f002b652c07efc4aef7db7f4acb2de9129fef5da13690573559000029

Deployed Bytecode

0x6060604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461016857806323b872dd1461018d578063313ce567146101b557806370a08231146101de5780638da5cb5b146101fd57806395d89b411461022c578063a9059cbb1461023f578063dd62ed3e14610261575b600080fd5b34156100b357600080fd5b6100bb610286565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100f75780820151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013d57600080fd5b610154600160a060020a0360043516602435610324565b604051901515815260200160405180910390f35b341561017357600080fd5b61017b610390565b60405190815260200160405180910390f35b341561019857600080fd5b610154600160a060020a0360043581169060243516604435610396565b34156101c057600080fd5b6101c8610518565b60405160ff909116815260200160405180910390f35b34156101e957600080fd5b61017b600160a060020a0360043516610521565b341561020857600080fd5b61021061053c565b604051600160a060020a03909116815260200160405180910390f35b341561023757600080fd5b6100bb61054b565b341561024a57600080fd5b610154600160a060020a03600435166024356105b6565b341561026c57600080fd5b61017b600160a060020a03600435811690602435166106ae565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561031c5780601f106102f15761010080835404028352916020019161031c565b820191906000526020600020905b8154815290600101906020018083116102ff57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000606060643610156103a857600080fd5b600160a060020a03808616600090815260026020908152604080832033909416835292905220548390108015906103f85750600160a060020a038516600090815260016020526040902054839010155b151561040357600080fd5b600160a060020a038086166000908152600260209081526040808320339094168352929052205461043a908463ffffffff6106d916565b600160a060020a038087166000818152600260209081526040808320339095168352938152838220949094559081526001909252902054610481908463ffffffff6106d916565b600160a060020a0380871660009081526001602052604080822093909355908616815220546104b6908463ffffffff6106eb16565b600160a060020a03808616600081815260016020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60035460ff1681565b600160a060020a031660009081526001602052604090205490565b600654600160a060020a031681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561031c5780601f106102f15761010080835404028352916020019161031c565b6000604060443610156105c857600080fd5b600160a060020a033316600090815260016020526040902054839010156105ee57600080fd5b600160a060020a033316600090815260016020526040902054610617908463ffffffff6106d916565b600160a060020a03338116600090815260016020526040808220939093559086168152205461064c908463ffffffff6106eb16565b600160a060020a0380861660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35060019392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156106e557fe5b50900390565b6000828201838110156106fa57fe5b93925050505600a165627a7a7230582077e95292c89f002b652c07efc4aef7db7f4acb2de9129fef5da13690573559000029

Swarm Source

bzzr://77e95292c89f002b652c07efc4aef7db7f4acb2de9129fef5da1369057355900

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.