tokenboost-solidity-erc20sale
Version:
Solidity contracts for TokenBoost (ERC20Sale)
1,237 lines • 39.6 kB
JSON
{
"contractName": "ERC20",
"abi": [
{
"constant": true,
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "_who",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"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"
},
{
"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"
},
{
"constant": true,
"inputs": [
{
"name": "_owner",
"type": "address"
},
{
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_from",
"type": "address"
},
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_spender",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
],
"bytecode": "0x",
"deployedBytecode": "0x",
"sourceMap": "",
"deployedSourceMap": "",
"source": "pragma solidity ^0.4.24;\n\nimport \"./ERC20Basic.sol\";\n\n\n/**\n * @title ERC20 interface\n * @dev see https://github.com/ethereum/EIPs/issues/20\n */\ncontract ERC20 is ERC20Basic {\n function allowance(address _owner, address _spender)\n public view returns (uint256);\n\n function transferFrom(address _from, address _to, uint256 _value)\n public returns (bool);\n\n function approve(address _spender, uint256 _value) public returns (bool);\n event Approval(\n address indexed owner,\n address indexed spender,\n uint256 value\n );\n}\n",
"sourcePath": "zeppelin-solidity/contracts/token/ERC20/ERC20.sol",
"ast": {
"absolutePath": "zeppelin-solidity/contracts/token/ERC20/ERC20.sol",
"exportedSymbols": {
"ERC20": [
5398
]
},
"id": 5399,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 5357,
"literals": [
"solidity",
"^",
"0.4",
".24"
],
"nodeType": "PragmaDirective",
"src": "0:24:28"
},
{
"absolutePath": "zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol",
"file": "./ERC20Basic.sol",
"id": 5358,
"nodeType": "ImportDirective",
"scope": 5399,
"sourceUnit": 5431,
"src": "26:26:28",
"symbolAliases": [],
"unitAlias": ""
},
{
"baseContracts": [
{
"arguments": null,
"baseName": {
"contractScope": null,
"id": 5359,
"name": "ERC20Basic",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 5430,
"src": "162:10:28",
"typeDescriptions": {
"typeIdentifier": "t_contract$_ERC20Basic_$5430",
"typeString": "contract ERC20Basic"
}
},
"id": 5360,
"nodeType": "InheritanceSpecifier",
"src": "162:10:28"
}
],
"contractDependencies": [
5430
],
"contractKind": "contract",
"documentation": "@title ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/20",
"fullyImplemented": false,
"id": 5398,
"linearizedBaseContracts": [
5398,
5430
],
"name": "ERC20",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": null,
"documentation": null,
"id": 5369,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": true,
"modifiers": [],
"name": "allowance",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5365,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5362,
"name": "_owner",
"nodeType": "VariableDeclaration",
"scope": 5369,
"src": "196:14:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5361,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "196:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5364,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5369,
"src": "212:16:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5363,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "212:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "195:34:28"
},
"payable": false,
"returnParameters": {
"id": 5368,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5367,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5369,
"src": "255:7:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5366,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "255:7:28",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "254:9:28"
},
"scope": 5398,
"src": "177:87:28",
"stateMutability": "view",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5380,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "transferFrom",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5376,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5371,
"name": "_from",
"nodeType": "VariableDeclaration",
"scope": 5380,
"src": "290:13:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5370,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "290:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5373,
"name": "_to",
"nodeType": "VariableDeclaration",
"scope": 5380,
"src": "305:11:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5372,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "305:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5375,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5380,
"src": "318:14:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5374,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "318:7:28",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "289:44:28"
},
"payable": false,
"returnParameters": {
"id": 5379,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5378,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5380,
"src": "354:4:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5377,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "354:4:28",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "353:6:28"
},
"scope": 5398,
"src": "268:92:28",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5389,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "approve",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5385,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5382,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5389,
"src": "381:16:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5381,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "381:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5384,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5389,
"src": "399:14:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5383,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "399:7:28",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "380:34:28"
},
"payable": false,
"returnParameters": {
"id": 5388,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5387,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5389,
"src": "431:4:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5386,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "431:4:28",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "430:6:28"
},
"scope": 5398,
"src": "364:73:28",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"anonymous": false,
"documentation": null,
"id": 5397,
"name": "Approval",
"nodeType": "EventDefinition",
"parameters": {
"id": 5396,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5391,
"indexed": true,
"name": "owner",
"nodeType": "VariableDeclaration",
"scope": 5397,
"src": "460:21:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5390,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "460:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5393,
"indexed": true,
"name": "spender",
"nodeType": "VariableDeclaration",
"scope": 5397,
"src": "487:23:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5392,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "487:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5395,
"indexed": false,
"name": "value",
"nodeType": "VariableDeclaration",
"scope": 5397,
"src": "516:13:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5394,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "516:7:28",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "454:79:28"
},
"src": "440:94:28"
}
],
"scope": 5399,
"src": "144:392:28"
}
],
"src": "0:537:28"
},
"legacyAST": {
"absolutePath": "zeppelin-solidity/contracts/token/ERC20/ERC20.sol",
"exportedSymbols": {
"ERC20": [
5398
]
},
"id": 5399,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 5357,
"literals": [
"solidity",
"^",
"0.4",
".24"
],
"nodeType": "PragmaDirective",
"src": "0:24:28"
},
{
"absolutePath": "zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol",
"file": "./ERC20Basic.sol",
"id": 5358,
"nodeType": "ImportDirective",
"scope": 5399,
"sourceUnit": 5431,
"src": "26:26:28",
"symbolAliases": [],
"unitAlias": ""
},
{
"baseContracts": [
{
"arguments": null,
"baseName": {
"contractScope": null,
"id": 5359,
"name": "ERC20Basic",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 5430,
"src": "162:10:28",
"typeDescriptions": {
"typeIdentifier": "t_contract$_ERC20Basic_$5430",
"typeString": "contract ERC20Basic"
}
},
"id": 5360,
"nodeType": "InheritanceSpecifier",
"src": "162:10:28"
}
],
"contractDependencies": [
5430
],
"contractKind": "contract",
"documentation": "@title ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/20",
"fullyImplemented": false,
"id": 5398,
"linearizedBaseContracts": [
5398,
5430
],
"name": "ERC20",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": null,
"documentation": null,
"id": 5369,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": true,
"modifiers": [],
"name": "allowance",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5365,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5362,
"name": "_owner",
"nodeType": "VariableDeclaration",
"scope": 5369,
"src": "196:14:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5361,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "196:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5364,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5369,
"src": "212:16:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5363,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "212:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "195:34:28"
},
"payable": false,
"returnParameters": {
"id": 5368,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5367,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5369,
"src": "255:7:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5366,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "255:7:28",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "254:9:28"
},
"scope": 5398,
"src": "177:87:28",
"stateMutability": "view",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5380,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "transferFrom",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5376,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5371,
"name": "_from",
"nodeType": "VariableDeclaration",
"scope": 5380,
"src": "290:13:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5370,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "290:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5373,
"name": "_to",
"nodeType": "VariableDeclaration",
"scope": 5380,
"src": "305:11:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5372,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "305:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5375,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5380,
"src": "318:14:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5374,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "318:7:28",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "289:44:28"
},
"payable": false,
"returnParameters": {
"id": 5379,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5378,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5380,
"src": "354:4:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5377,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "354:4:28",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "353:6:28"
},
"scope": 5398,
"src": "268:92:28",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5389,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "approve",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5385,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5382,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5389,
"src": "381:16:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5381,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "381:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5384,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5389,
"src": "399:14:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5383,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "399:7:28",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "380:34:28"
},
"payable": false,
"returnParameters": {
"id": 5388,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5387,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5389,
"src": "431:4:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5386,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "431:4:28",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "430:6:28"
},
"scope": 5398,
"src": "364:73:28",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"anonymous": false,
"documentation": null,
"id": 5397,
"name": "Approval",
"nodeType": "EventDefinition",
"parameters": {
"id": 5396,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5391,
"indexed": true,
"name": "owner",
"nodeType": "VariableDeclaration",
"scope": 5397,
"src": "460:21:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5390,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "460:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5393,
"indexed": true,
"name": "spender",
"nodeType": "VariableDeclaration",
"scope": 5397,
"src": "487:23:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5392,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "487:7:28",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5395,
"indexed": false,
"name": "value",
"nodeType": "VariableDeclaration",
"scope": 5397,
"src": "516:13:28",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5394,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "516:7:28",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "454:79:28"
},
"src": "440:94:28"
}
],
"scope": 5399,
"src": "144:392:28"
}
],
"src": "0:537:28"
},
"compiler": {
"name": "solc",
"version": "0.4.24+commit.e67f0147.Emscripten.clang"
},
"networks": {},
"schemaVersion": "2.0.1",
"updatedAt": "2018-11-01T09:01:02.408Z"
}