ETH Price: $3,419.64 (-0.60%)
Gas: 12 Gwei

Contract

0x9eE904e7B92c872aC5d3Eff3e6c5ec4dbe3c26b4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer137947982021-12-13 4:58:29947 days ago1639371509IN
0x9eE904e7...dbe3c26b4
0 ETH0.0024725452.52789863
Transfer120365232021-03-14 11:56:051221 days ago1615722965IN
0x9eE904e7...dbe3c26b4
0 ETH0.00659001126.5
Transfer120365082021-03-14 11:53:271221 days ago1615722807IN
0x9eE904e7...dbe3c26b4
0 ETH0.00311097140.8
Transfer104599332020-07-14 21:04:191463 days ago1594760659IN
0x9eE904e7...dbe3c26b4
0 ETH0.000811622
Transfer104598342020-07-14 20:44:301463 days ago1594759470IN
0x9eE904e7...dbe3c26b4
0 ETH0.0009820326.62
Transfer104463692020-07-12 18:27:491466 days ago1594578469IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007747121
Transfer104463692020-07-12 18:27:491466 days ago1594578469IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007744521
Transfer104463562020-07-12 18:26:031466 days ago1594578363IN
0x9eE904e7...dbe3c26b4
0 ETH0.0004639921
Transfer104463132020-07-12 18:16:011466 days ago1594577761IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007744521
Transfer104463132020-07-12 18:16:011466 days ago1594577761IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007744521
Transfer104462982020-07-12 18:14:011466 days ago1594577641IN
0x9eE904e7...dbe3c26b4
0 ETH0.0004639921
Transfer103024122020-06-20 11:36:201488 days ago1592652980IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007789921.00000123
Transfer102778232020-06-16 16:17:141492 days ago1592324234IN
0x9eE904e7...dbe3c26b4
0 ETH0.0021280241
Transfer101347062020-05-25 11:38:031514 days ago1590406683IN
0x9eE904e7...dbe3c26b4
0 ETH0.0014694339.6
Transfer101339062020-05-25 8:36:141514 days ago1590395774IN
0x9eE904e7...dbe3c26b4
0 ETH0.0014243838.38590066
Transfer100257132020-05-08 13:00:261531 days ago1588942826IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007787421
Transfer100257042020-05-08 12:58:581531 days ago1588942738IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007787421
Transfer100256962020-05-08 12:57:341531 days ago1588942654IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007787421
Transfer100255012020-05-08 12:12:181531 days ago1588939938IN
0x9eE904e7...dbe3c26b4
0 ETH0.0007787421
Transfer100247592020-05-08 9:31:121531 days ago1588930272IN
0x9eE904e7...dbe3c26b4
0 ETH0.0005564215.00000123
Transfer100243742020-05-08 8:06:551531 days ago1588925215IN
0x9eE904e7...dbe3c26b4
0 ETH0.0008856117
Transfer100222572020-05-08 0:08:531531 days ago1588896533IN
0x9eE904e7...dbe3c26b4
0 ETH0.0010934921
Transfer100202092020-05-07 16:33:111532 days ago1588869191IN
0x9eE904e7...dbe3c26b4
0 ETH0.0010836220.801
Transfer100200762020-05-07 16:03:001532 days ago1588867380IN
0x9eE904e7...dbe3c26b4
0 ETH0.0011981823
Transfer100200232020-05-07 15:52:411532 days ago1588866761IN
0x9eE904e7...dbe3c26b4
0 ETH0.0011981823
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:
Amo1Coin

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^ 0.4.24;

library SafeMath {
    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns(uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns(uint256 c) {
        if (a == 0) {
            return 0;
        }
        c = a * b;
        assert(c / a == b);
        return c;
    }
}
contract ERC20Basic {
    function totalSupply() public view returns(uint256);

    function balanceOf(address who) public view returns(uint256);

    function transfer(address to, uint256 value) public returns(bool);

    function batchTransfer(address[] receivers, uint256[] values)
    public returns(bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}
contract BasicToken is ERC20Basic {
    using SafeMath
    for uint256;
    mapping(address => uint256) internal balances;
    uint256 internal totalSupply_;

    function totalSupply() public view returns(uint256) {
        return totalSupply_;
    }

    function balanceOf(address _owner) public view returns(uint256) {
        return balances[_owner];
    }

    function transfer(address _to, uint256 _value) public returns(bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    function batchTransfer(address[] _receivers, uint256[] _values) public returns(bool) {
        require(_receivers.length > 0);
        require(_receivers.length < 100000);
        require(_receivers.length == _values.length);
        uint256 sum;
        for (uint i = 0; i < _values.length; i++) {
            sum = sum.add(_values[i]);
            require(_receivers[i] != address(0));
        }
        require(sum <= balances[msg.sender]);
        balances[msg.sender] = balances[msg.sender].sub(sum);
        for (uint j = 0; j < _receivers.length; j++) {
            balances[_receivers[j]] = balances[_receivers[j]].add(_values[j]);
            emit Transfer(msg.sender, _receivers[j], _values[j]);
        }
        return true;
    }
}
contract Amo1Coin is BasicToken {
    string public name;
    string public symbol;
    uint8 public decimals;
    constructor() public {
        name = "Amodule Network";
        symbol = "AMO1";
        decimals = 18;
        totalSupply_ = 1e27;
        balances[msg.sender] = totalSupply_;
        emit Transfer(address(0), msg.sender, totalSupply_);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_receivers","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

608060405234801561001057600080fd5b5060408051808201909152600f8082527f416d6f64756c65204e6574776f726b0000000000000000000000000000000000602090920191825261005591600291610106565b506040805180820190915260048082527f414d4f3100000000000000000000000000000000000000000000000000000000602090920191825261009a91600391610106565b506004805460ff191660121790556b033b2e3c9fd0803ce8000000600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36101a1565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014757805160ff1916838001178555610174565b82800160010185558215610174579182015b82811115610174578251825591602001919060010190610159565b50610180929150610184565b5090565b61019e91905b80821115610180576000815560010161018a565b90565b6106c6806101b06000396000f3006080604052600436106100825763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461008757806318160ddd14610111578063313ce5671461013857806370a082311461016357806388d695b21461018457806395d89b4114610226578063a9059cbb1461023b575b600080fd5b34801561009357600080fd5b5061009c61025f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100d65781810151838201526020016100be565b50505050905090810190601f1680156101035780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561011d57600080fd5b506101266102ea565b60408051918252519081900360200190f35b34801561014457600080fd5b5061014d6102f0565b6040805160ff9092168252519081900360200190f35b34801561016f57600080fd5b50610126600160a060020a03600435166102f9565b34801561019057600080fd5b506040805160206004803580820135838102808601850190965280855261021295369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506103149650505050505050565b604080519115158252519081900360200190f35b34801561023257600080fd5b5061009c610539565b34801561024757600080fd5b50610212600160a060020a0360043516602435610594565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b505050505081565b60015490565b60045460ff1681565b600160a060020a031660009081526020819052604090205490565b6000806000806000865111151561032a57600080fd5b8551620186a01161033a57600080fd5b845186511461034857600080fd5b600091505b84518210156103c25761037e858381518110151561036757fe5b60209081029091010151849063ffffffff61067516565b92506000600160a060020a0316868381518110151561039957fe5b60209081029091010151600160a060020a031614156103b757600080fd5b60019091019061034d565b336000908152602081905260409020548311156103de57600080fd5b336000908152602081905260409020546103fe908463ffffffff61068816565b3360009081526020819052604081209190915590505b855181101561052d57610478858281518110151561042e57fe5b90602001906020020151600080898581518110151561044957fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61067516565b600080888481518110151561048957fe5b6020908102909101810151600160a060020a031682528101919091526040016000205585518690829081106104ba57fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef878481518110151561050657fe5b906020019060200201516040518082815260200191505060405180910390a3600101610414565b50600195945050505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102e25780601f106102b7576101008083540402835291602001916102e2565b6000600160a060020a03831615156105ab57600080fd5b336000908152602081905260409020548211156105c757600080fd5b336000908152602081905260409020546105e7908363ffffffff61068816565b3360009081526020819052604080822092909255600160a060020a03851681522054610619908363ffffffff61067516565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b8181018281101561068257fe5b92915050565b60008282111561069457fe5b509003905600a165627a7a72305820dfa401ab5d190c6fc9e2a2432e9b3dca3fd67a89037ba928362e551884869c260029

Deployed Bytecode

0x6080604052600436106100825763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461008757806318160ddd14610111578063313ce5671461013857806370a082311461016357806388d695b21461018457806395d89b4114610226578063a9059cbb1461023b575b600080fd5b34801561009357600080fd5b5061009c61025f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100d65781810151838201526020016100be565b50505050905090810190601f1680156101035780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561011d57600080fd5b506101266102ea565b60408051918252519081900360200190f35b34801561014457600080fd5b5061014d6102f0565b6040805160ff9092168252519081900360200190f35b34801561016f57600080fd5b50610126600160a060020a03600435166102f9565b34801561019057600080fd5b506040805160206004803580820135838102808601850190965280855261021295369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506103149650505050505050565b604080519115158252519081900360200190f35b34801561023257600080fd5b5061009c610539565b34801561024757600080fd5b50610212600160a060020a0360043516602435610594565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b505050505081565b60015490565b60045460ff1681565b600160a060020a031660009081526020819052604090205490565b6000806000806000865111151561032a57600080fd5b8551620186a01161033a57600080fd5b845186511461034857600080fd5b600091505b84518210156103c25761037e858381518110151561036757fe5b60209081029091010151849063ffffffff61067516565b92506000600160a060020a0316868381518110151561039957fe5b60209081029091010151600160a060020a031614156103b757600080fd5b60019091019061034d565b336000908152602081905260409020548311156103de57600080fd5b336000908152602081905260409020546103fe908463ffffffff61068816565b3360009081526020819052604081209190915590505b855181101561052d57610478858281518110151561042e57fe5b90602001906020020151600080898581518110151561044957fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61067516565b600080888481518110151561048957fe5b6020908102909101810151600160a060020a031682528101919091526040016000205585518690829081106104ba57fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef878481518110151561050657fe5b906020019060200201516040518082815260200191505060405180910390a3600101610414565b50600195945050505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102e25780601f106102b7576101008083540402835291602001916102e2565b6000600160a060020a03831615156105ab57600080fd5b336000908152602081905260409020548211156105c757600080fd5b336000908152602081905260409020546105e7908363ffffffff61068816565b3360009081526020819052604080822092909255600160a060020a03851681522054610619908363ffffffff61067516565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b8181018281101561068257fe5b92915050565b60008282111561069457fe5b509003905600a165627a7a72305820dfa401ab5d190c6fc9e2a2432e9b3dca3fd67a89037ba928362e551884869c260029

Deployed Bytecode Sourcemap

2442:374:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2481:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2481:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2481:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107:90;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1107:90:0;;;;;;;;;;;;;;;;;;;;2533:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2533:21:0;;;;;;;;;;;;;;;;;;;;;;;1205:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1205:106:0;-1:-1:-1;;;;;1205:106:0;;;;;1679:758;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1679:758:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1679:758:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1679:758:0;;;;-1:-1:-1;1679:758:0;-1:-1:-1;1679:758:0;;-1:-1:-1;1679:758:0;;;;;;;;;-1:-1:-1;1679:758:0;;-1:-1:-1;1679:758:0;;-1:-1:-1;;;;;;;1679:758:0;;;;;;;;;;;;;;;;;;;2506:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2506:20:0;;;;1319:352;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1319:352:0;-1:-1:-1;;;;;1319:352:0;;;;;;;2481:18;;;;;;;;;;;;;;-1:-1:-1;;2481:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1107:90::-;1177:12;;1107:90;:::o;2533:21::-;;;;;;:::o;1205:106::-;-1:-1:-1;;;;;1287:16:0;1260:7;1287:16;;;;;;;;;;;;1205:106::o;1679:758::-;1758:4;1917:11;1944:6;2209;1803:1;1783:10;:17;:21;1775:30;;;;;;;;1824:17;;1844:6;-1:-1:-1;1816:35:0;;;;;;1891:14;;1870:17;;:35;1862:44;;;;;;1953:1;1944:10;;1939:145;1960:7;:14;1956:1;:18;1939:145;;;2002:19;2010:7;2018:1;2010:10;;;;;;;;;;;;;;;;;;;2002:3;;:19;:7;:19;:::i;:::-;1996:25;;2069:1;-1:-1:-1;;;;;2044:27:0;:10;2055:1;2044:13;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2044:27:0;;;2036:36;;;;;;1976:3;;;;;1939:145;;;2118:10;2109:8;:20;;;;;;;;;;;2102:27;;;2094:36;;;;;;2173:10;2164:8;:20;;;;;;;;;;;:29;;2189:3;2164:29;:24;:29;:::i;:::-;2150:10;2141:8;:20;;;;;;;;;;:52;;;;:8;-1:-1:-1;2204:204:0;2225:10;:17;2221:1;:21;2204:204;;;2290:39;2318:7;2326:1;2318:10;;;;;;;;;;;;;;;;;;2290:8;:23;2299:10;2310:1;2299:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2290:23:0;;;;;;;;;;;-1:-1:-1;2290:23:0;;;:39;:27;:39;:::i;:::-;2264:8;:23;2273:10;2284:1;2273:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2264:23:0;;;;;;;;;;;-1:-1:-1;2264:23:0;:65;2370:13;;:10;;2381:1;;2370:13;;;;;;;;;;;;;;-1:-1:-1;;;;;2349:47:0;2358:10;-1:-1:-1;;;;;2349:47:0;;2385:7;2393:1;2385:10;;;;;;;;;;;;;;;;;;2349:47;;;;;;;;;;;;;;;;;;2244:3;;2204:204;;;-1:-1:-1;2425:4:0;;1679:758;-1:-1:-1;;;;;1679:758:0:o;2506:20::-;;;;;;;;;;;;;;;-1:-1:-1;;2506:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1319:352;1381:4;-1:-1:-1;;;;;1406:17:0;;;;1398:26;;;;;;1462:10;1453:8;:20;;;;;;;;;;;1443:30;;;1435:39;;;;;;1517:10;1508:8;:20;;;;;;;;;;;:32;;1533:6;1508:32;:24;:32;:::i;:::-;1494:10;1485:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;1567:13:0;;;;;;:25;;1585:6;1567:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;1551:13:0;;:8;:13;;;;;;;;;;;;:41;;;;1608:33;;;;;;;1551:13;;1617:10;;1608:33;;;;;;;;;;-1:-1:-1;1659:4:0;1319:352;;;;:::o;183:140::-;266:5;;;289:6;;;;282:14;;;;183:140;;;;:::o;53:122::-;110:7;137:6;;;;130:14;;;;-1:-1:-1;162:5:0;;;53:122::o

Swarm Source

bzzr://dfa401ab5d190c6fc9e2a2432e9b3dca3fd67a89037ba928362e551884869c26

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.