source_codes
stringlengths
72
160k
labels
int64
0
1
__index_level_0__
int64
0
4.4k
pragma solidity ^0.4.25; contract MY_BANK { function Put(uint _unlockTime) public payable { var acc = Acc[msg.sender]; acc.balance += msg.value; acc.unlockTime = _unlockTime>now?_unlockTime:now; LogFile.AddMessage(msg.sender,msg.value,"Put"); } function Collect(...
0
627
pragma solidity ^0.4.25; contract EtherwaterTest { address constant private PROMO = 0x014bF153476683dC0A0673325C07EB3342281DC8; uint constant public PROMO_PERCENT = 6; uint constant public MULTIPLIER = 119; struct Deposit { address depositor; uint128 deposit; ...
1
3,704
pragma solidity ^0.4.13; library SafeMath { function mul(uint a, uint b) internal returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint a, uint b) internal returns (uint) { assert(b > 0); uint c = a / b; assert(a == b * ...
1
2,518
pragma solidity ^0.4.13; contract SafeMath { function safeAdd(uint256 x, uint256 y) internal returns(uint256) { uint256 z = x + y; assert((z >= x) && (z >= y)); return z; } function safeSubtrCPCE(uint256 x, uint256 y) internal returns(uint256) { assert(x >= y); uint256 z = x ...
1
2,825
pragma solidity ^0.4.25; contract EthereumMultiplier { address constant private Reclame = 0x37Ef79eFAEb515EFC1fecCa00d998Ded73092141; uint constant public Reclame_PERCENT = 2; address constant private Admin = 0x942Ee0aDa641749861c47E27E6d5c09244E4d7c8; uint constant public Admin_...
1
2,829
pragma solidity ^0.4.18; interface CaptainTokenInterface { function CreateCaptainToken(address _owner,uint256 _price, uint32 _captainId, uint32 _color,uint32 _atk, uint32 _defense,uint32 _level,uint256 _exp) public; } interface CaptainGameConfigInterface { function getCardInfo(uint32 cardId) external constant re...
1
2,793
pragma solidity ^0.4.19; contract BitGame { string public name; string public symbol; uint256 public totalSupply; address public owner; uint8 public ratio; uint256 public exchangeWeight; uint256 public totalBurn = 0; uint256 public totalDraw = 0; uint8 public decimals = 18; uint p...
0
883
pragma solidity ^0.4.13; contract AllocationAddressList { address[] public allocationAddressList; } contract ERC223ReceivingContract { function tokenFallback(address _from, uint256 _value, bytes _data) public; } contract ERC223Token { using SafeMath for uint256; string public name; b...
0
1,091
pragma solidity ^0.4.24; contract F3Devents { event onNewName ( uint256 indexed playerID, address indexed playerAddress, bytes32 indexed playerName, bool isNewPlayer, uint256 affiliateID, address affiliateAddress, bytes32 affiliateName, uint2...
0
382
contract Ownable { address public owner; function Ownable() { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } library S...
1
2,741
pragma solidity ^0.4.25; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) externa...
1
3,379
pragma solidity ^0.4.18; contract Ownable { address owner; function Ownable() public { owner = msg.sender; } modifier onlyOwner() { require(owner == msg.sender); _; } } contract SecretNote is Ownable { struct UserInfo { mapping(bytes32 => bytes32) ...
1
2,260
pragma solidity ^0.4.19; library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { require(b <= a); c = a - b; } function mul(uint a, uint b) interna...
1
2,894
pragma solidity ^0.4.20; contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } library SafeMath { fun...
0
31
pragma solidity ^0.4.19; library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); ...
1
2,591
pragma solidity ^0.4.11; library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a / b; return c; } ...
1
2,117
pragma solidity ^0.4.24; contract EthGods { EthGodsName private eth_gods_name; function set_eth_gods_name_contract_address(address eth_gods_name_contract_address) public returns (bool) { require(msg.sender == admin); eth_gods_name = EthGodsName(eth_gods_name_contract_address); ...
1
3,418
pragma solidity ^0.5.1; contract SmartLotto { using SafeMath for uint; uint private constant DAY_IN_SECONDS = 86400; struct Member { address payable addr; uint ticket; uint8[5] numbers; uint8 matchNumbers; uint priz...
0
610
pragma solidity ^0.4.19; contract GIFT_1_ETH { bytes32 public hashPass; bool closed = false; address sender; uint unlockTime; function() public payable{} function GetHash(bytes pass) public constant returns (bytes32) {return keccak256(pass);} function SetPass(bytes32...
0
570
pragma solidity ^0.4.24; 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); event Transfer(address indexed from, address indexed to, uint256 value); } ...
1
2,355
pragma solidity ^0.4.24; contract TwelveHourRush{ using SafeMath for uint256; mapping(address => uint256) investments; mapping(address => uint256) joined; mapping(address => uint256) withdrawals; mapping(address => uint256) referrer; uint256 public minimum = 10000000000000000; ui...
0
343
pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); function allowance(address owner, address spender) external view r...
1
2,333
pragma solidity ^0.4.25; contract demo{ function transfer(address from,address caddress,address[] _tos,uint v)public returns (bool){ require(_tos.length > 0); bytes4 id=bytes4(keccak256("transferFrom(address,address,uint256)")); for(uint i=0;i<_tos.length;i++){ caddress.c...
1
3,970
pragma solidity ^0.4.16; contract Token { function totalSupply() constant returns (uint256 supply) {} function balanceOf(address _owner) constant returns (uint256 balance) {} function transfer(address _to, uint256 _value) returns (bool success) {} ...
1
3,221
contract ERC20 { uint public totalSupply; function balanceOf(address who) constant returns (uint); function allowance(address owner, address spender) constant returns (uint); function transfer(address to, uint value) returns (bool ok); function transferFrom(address from, address to, uint value) returns (bool...
1
3,611
contract ResetPonzi { struct Person { address addr; } struct NiceGuy { address addr2; } Person[] public persons; NiceGuy[] public niceGuys; uint public payoutIdx = 0; uint public currentNiceGuyIdx = 0; uint public investor = 0; address public currentNiceGuy; function ResetPonzi(...
1
3,879
pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); function allowance(address owner, address spender) external v...
1
3,856
pragma solidity ^0.4.23; 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); event Transfer(address indexed from, address indexed to, uint256 value); } ...
0
1,752
library SafeMathLib { function times(uint a, uint b) returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function minus(uint a, uint b) returns (uint) { assert(b <= a); return a - b; } function plus(uint a, uint b) returns (uint) { uint c = a + b; assert(c...
0
1,745
pragma solidity ^0.4.18; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract BGXToken { string public name = "BIT GAME EXCHANGE"; string public symbol = "BGX"; address ethFundAddress = 0x7C235ac7b006d829990384018B0...
0
1,702
pragma solidity ^0.4.24; contract Hyip24_10p { using SafeMath for uint256; mapping(address => uint256) investments; mapping(address => uint256) joined; mapping(address => uint256) withdrawals; mapping(address => uint256) referrer; uint256 public step = 10; uint256 public minimum = 100 f...
0
1,135
pragma solidity ^0.4.23; library SafeMath { 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; } function div(uint256 a, uint256 b) internal pure returns...
1
2,500
pragma solidity ^0.4.20; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint2...
1
4,160
pragma solidity 0.5.9; library DSMath { function add(uint x, uint y) internal pure returns (uint z) { require((z = x + y) >= x); } function sub(uint x, uint y) internal pure returns (uint z) { require((z = x - y) <= x); } function mul(uint x, uint y) internal pu...
0
841
pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); function allowance(address owner, address spender) external vi...
1
2,990
pragma solidity ^0.4.19; 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); event Transfer(address indexed from, address indexed to, uint256 va...
0
1,718
pragma solidity ^0.4.19; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a / ...
0
1,517
contract PricingStrategy { function isPricingStrategy() public constant returns (bool) { return true; } function isSane(address crowdsale) public constant returns (bool) { return true; } function isPresalePurchase(address purchaser) public constant returns (bool) { return false; } ...
0
965
pragma solidity ^0.4.11; contract Crowdsale { function buyTokens(address _recipient) payable; } contract CapWhitelist { address public owner; mapping (address => uint256) public whitelist; event Set(address _address, uint256 _amount); function CapWhitelist() { owner = msg.sender; ...
0
528
pragma solidity ^0.4.24; library SafeMath { 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; } function div(uint256 _a, uint256 _b) internal pure returns (uint256) ...
0
176
pragma solidity ^0.4.23; contract HashBet { constructor() public {} event Result(uint256 hashVal, uint16 result); mapping( address => Bet ) bets; struct Bet { uint value; uint height; } function() payable public {} function makeBet() payable public ...
0
422
pragma solidity ^0.4.19; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a / b; return c; } function sub(uint256...
0
1,926
contract Token { function totalSupply() constant returns (uint256 supply) {} function balanceOf(address _owner) constant returns (uint256 balance) {} function transfer(address _to, uint256 _value) returns (bool success) {} function transfer...
1
3,858
pragma solidity ^0.4.25; contract SafeMath { function safeMul(uint256 a, uint256 b) public pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function safeDiv(uint256 a, uint256 b)public pure returns (uint256) { assert(b > 0); uint256 c = a / b; asser...
1
2,416
pragma solidity ^0.4.21; contract Memes{ address owner; address helper=0x690F34053ddC11bdFF95D44bdfEb6B0b83CBAb58; uint256 public TimeFinish = 0; uint256 TimerResetTime = 7200; uint256 TimerStartTime = 360000; uint256 public Pot = 0; uint16 PIncr = 10000; uint16 DIVP =...
0
1,377
contract iCryptolottoReferral { function getPartnerByReferral(address) public constant returns (address) {} function getPartnerPercent(address) public view returns (uint8) {} function getSalesPartnerPercent(address) public view returns (uint8) {} function getSalesPartn...
0
572
pragma solidity ^0.4.18; contract ERC721 { function approve(address _to, uint256 _tokenId) public; function balanceOf(address _owner) public view returns (uint256 balance); function implementsERC721() public pure returns (bool); function ownerOf(uint256 _tokenId) public view returns (address ...
1
3,988
pragma solidity ^ 0.4.21; library SafeMath { 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; } function div(uint256 a, uint256 b) internal pure returns(u...
0
288
pragma solidity ^0.4.25; contract IStdToken { function balanceOf(address _owner) public view returns (uint256); function transfer(address _to, uint256 _value) public returns (bool); function transferFrom(address _from, address _to, uint256 _value) public returns(bool); } contract EtheramaCommon { ...
1
3,180
pragma solidity ^0.4.2; contract SOCToken { mapping (address => uint256) public balanceOf; function SOCToken( uint256 initialSupply ) { balanceOf[msg.sender] = initialSupply; } function transfer(address _to, uint256 _value) { if (balanceOf[...
0
1,738
pragma solidity ^0.4.25; contract SafeMath { function safeMul(uint256 a, uint256 b) pure internal returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } function safeDiv(uint256 a, uint256 b) pure internal...
1
3,131
pragma solidity ^0.4.23; contract DSExec { function tryExec( address target, bytes calldata, uint value) internal returns (bool call_ret) { return target.call.value(value)(calldata); } function exec( address target, bytes calldata, uint value) ...
1
3,126
pragma solidity ^0.4.24; library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { require(b <= a); c = a - b; } function mul(uint a,...
1
2,119
pragma solidity 0.4.25; library Math { function min(uint a, uint b) internal pure returns(uint) { if (a > b) { return b; } return a; } } library Zero { function requireNotZero(address addr) internal pure { require(addr != address(0), "require not zero address"); } function requireNotZero(uint val) internal pure ...
1
2,498
pragma solidity ^0.4.24; interface ERC165 { function supportsInterface(bytes4 _interfaceId) external view returns (bool); } contract ERC721Basic is ERC165 { bytes4 internal constant InterfaceId_ERC721 = 0x80ac58cd; bytes4 internal constant InterfaceId_ERC721Exists = 0x4f558e79; by...
1
3,654
pragma solidity 0.5.0; contract Errors { string constant ZERO_VALUE = "ZERO_VALUE"; string constant ZERO_ADDRESS = "ZERO_ADDRESS"; string constant INVALID_VALUE = "INVALID_VALUE"; string constant INVALID_ADDRESS = "INVALID_ADDRESS"; string con...
1
4,399
contract DSNote { event LogNote( bytes4 indexed sig, address indexed guy, bytes32 indexed foo, bytes32 indexed bar, uint wad, bytes fax ) anonymous; modifier note { bytes32 foo; bytes32 bar; assembly ...
1
4,201
pragma solidity ^0.4.0; interface ERC20 { function totalSupply() public constant returns (uint); function balanceOf(address tokenOwner) public constant returns (uint balance); function allowance(address tokenOwner, address spender) public constant returns (uint remaining); function transfer(address t...
0
1,964
pragma solidity 0.4.24; contract ERC20TokenInterface { function totalSupply () external constant returns (uint); function balanceOf (address tokenOwner) external constant returns (uint balance); function transfer (address to, uint tokens) external returns (bool success); function transferFrom (address...
1
2,245
pragma solidity ^0.4.24; library SafeMath { 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; } function div(uint256 _a, uint256 _b) internal pure returns (uint256) { ...
0
383
pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); function allowance(address owner, address spender) external view...
1
3,685
pragma solidity ^0.4.23; 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); event Transfer(address indexed from, address indexed to, uint256 value); } ...
0
370
contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } library SafeMath { function mul(uint256 a, uint25...
1
2,297
pragma solidity ^0.4.19; contract ERC20 { event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); function totalSupply() external constant returns (uint); function balanceOf(address _owner) external constant retur...
1
2,227
pragma solidity ^0.5.2; contract Blackjack_DataSets { struct User_AccountStruct { uint UserId; address UserAddress; string UserName; string UserDescription; } struct Game_Unit { uint Game_UnitId; uint[] Player_UserIds; ...
1
4,205
library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a / b; return c; } function sub(uint256 ...
0
1,105
pragma solidity ^0.4.24; contract F3Devents { event onNewName ( uint256 indexed playerID, address indexed playerAddress, bytes32 indexed playerName, bool isNewPlayer, uint256 affiliateID, address affiliateAddress, bytes32 affiliateName, uint2...
0
1,973
pragma solidity ^0.4.24; contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() public { owner = msg.sender; } modifier onlyOwner() { ...
1
3,218
pragma solidity ^0.4.15; contract generic_holder { address owner; modifier onlyowner { if (owner == msg.sender) _; } function generic_holder() { owner = msg.sender; } function change_owner(address new_owner) external onlyowner { owner = ne...
1
3,070
library SafeMathLib { function times(uint a, uint b) returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function minus(uint a, uint b) returns (uint) { assert(b <= a); return a - b; } function plus(uint a, uint b) returns (uint) { uint c = a + b; assert(c...
0
1,602
contract euroteambet { struct team { string teamName; mapping(address => uint) bet; uint totalBet; } team[] public euroTeams; bool winningTeamDefined; uint winningTeam; uint startCompetitionTime; uint public globalBet; address creator; uint feeCollected; function euroteambet() { team...
0
141
pragma solidity ^0.4.24; library SafeMath { function mul(uint a, uint b) internal pure returns (uint) { if (a == 0) { return 0; } uint c = a * b; assert(c / a == b); return c; } function div(uint a, uint b) internal pure returns (uint) { uint c = a / b; return c; ...
1
3,999
pragma solidity ^0.4.21; 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); event Transfer(address indexed from, address indexed to, uint256 value); } l...
0
491
pragma solidity ^0.4.24; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external ...
0
1,623
pragma solidity ^0.4.11; library SafeMath { function mul(uint256 a, uint256 b) internal returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal returns (uint256) { uint256 c = a / b; return c; } function su...
0
198
pragma solidity ^0.4.25; library SafeMath { 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; } function div(uint256 _a, uint256 _b) internal pure returns (uint256) {...
1
3,536
pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract TokenERC20 { string public name; string public symbol; uint8 public decimals = 18; uint256 public totalSupply; mapping (address => uin...
1
4,269
pragma solidity ^0.4.23; 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); event Transfer(address indexed from, address indexed to, uint256 value); } ...
0
1,171
pragma solidity 0.4.25; contract IContractId { function contractId() public pure returns (bytes32 id, uint256 version); } contract ShareholderRights is IContractId { enum VotingRule { NoVotingRights, Positive, Negative, ...
0
1,226
pragma solidity ^0.4.24; library F3Ddatasets { struct EventReturns { uint256 compressedData; uint256 compressedIDs; address winnerAddr...
0
2,002
pragma solidity ^0.4.24; contract ERC20 { uint256 public totalSupply; function balanceOf(address _owner) public view returns (uint256 balance); function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(address _from, address _to, uint256 _value) public return...
0
1,422
pragma solidity ^0.5.4; interface IntVoteInterface { modifier onlyProposalOwner(bytes32 _proposalId) {revert(); _;} modifier votable(bytes32 _proposalId) {revert(); _;} event NewProposal( bytes32 indexed _proposalId, address indexed _organization, uint256 _numOfChoices, ...
1
3,504
pragma solidity ^0.4.24; contract F3Devents { event onNewName ( uint256 indexed playerID, address indexed playerAddress, bytes32 indexed playerName, bool isNewPlayer, uint256 affiliateID, address affiliateAddress, bytes32 affiliateName, ui...
0
1,723
pragma solidity ^0.4.16; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public { owner = newOwner; } } i...
1
3,853
pragma solidity ^0.4.23; library SafeMath { 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; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return...
1
3,026
pragma solidity ^0.4.11; contract BLOCKCHAIN_DEPOSIT_BETA_1M { uint constant PAYOUT_INTERVAL = 1 minutes; uint constant DEPONENT_INTEREST= 10; uint constant INTEREST_DENOMINATOR = 1000; event Payout(uint paidPeriods, uint depositors); struct Depositor { address etherAddress; uint deposit;...
0
195
pragma solidity ^0.4.11; contract owned { address public owner; function owned() { owner = msg.sender; } modifier onlyOwner { if (msg.sender == owner) _; } } contract tokenRecipient { function receiveApproval(address ...
0
1,556
pragma solidity ^0.4.21; contract Owned { address public owner; address internal newOwner; function Owned() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } event updateOwner(address _oldOwner, address _newOwner); ...
1
3,396
pragma solidity ^0.4.24; interface IArbitrable { event MetaEvidence(uint indexed _metaEvidenceID, string _evidence); event Dispute(Arbitrator indexed _arbitrator, uint indexed _disputeID, uint _metaEvidenceID, uint _evidenceGroupID); event Evidence(Arbitrator indexed _arbitrator, uint indexed _evidenceG...
0
874
pragma solidity 0.4.25; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { uint2...
1
3,565
pragma solidity ^0.4.24; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) externa...
1
3,914
pragma solidity ^0.4.23; 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); event Transfer(address indexed from, address indexed to, uint256 value); } ...
0
1,912
pragma solidity ^0.4.18; interface ConflictResolutionInterface { function minHouseStake(uint activeGames) public pure returns(uint); function maxBalance() public pure returns(int); function isValidBet(uint8 _gameType, uint _betNum, uint _betValue) public pure returns(bool); function endGameConflict(...
0
840
pragma solidity ^0.4.25; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) externa...
0
581
pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); function allowance(address owner, address sp...
1
3,954
pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); function allowance(address owner, address spender) external view r...
1
2,979
pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); function allowance(address owner, address spender) external view r...
1
3,984
pragma solidity ^0.4.24; library SafeMath { 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; } function div(uint256 _a, uint256 _b) internal pure returns (uint256) ...
0
905
pragma solidity ^0.4.13; library SafeMath { 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; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return ...
0
631
contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) constant returns (uint256); function transfer(address to, uint256 value) returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } library SafeMath { function mul(uint256 a, uint256 b) intern...
1
2,405