tokenboost-solidity
Version:
Solidity contracts for TokenBoost
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": [
5057
]
},
"id": 5058,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 5016,
"literals": [
"solidity",
"^",
"0.4",
".24"
],
"nodeType": "PragmaDirective",
"src": "0:24:25"
},
{
"absolutePath": "zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol",
"file": "./ERC20Basic.sol",
"id": 5017,
"nodeType": "ImportDirective",
"scope": 5058,
"sourceUnit": 5090,
"src": "26:26:25",
"symbolAliases": [],
"unitAlias": ""
},
{
"baseContracts": [
{
"arguments": null,
"baseName": {
"contractScope": null,
"id": 5018,
"name": "ERC20Basic",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 5089,
"src": "162:10:25",
"typeDescriptions": {
"typeIdentifier": "t_contract$_ERC20Basic_$5089",
"typeString": "contract ERC20Basic"
}
},
"id": 5019,
"nodeType": "InheritanceSpecifier",
"src": "162:10:25"
}
],
"contractDependencies": [
5089
],
"contractKind": "contract",
"documentation": "@title ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/20",
"fullyImplemented": false,
"id": 5057,
"linearizedBaseContracts": [
5057,
5089
],
"name": "ERC20",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": null,
"documentation": null,
"id": 5028,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": true,
"modifiers": [],
"name": "allowance",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5024,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5021,
"name": "_owner",
"nodeType": "VariableDeclaration",
"scope": 5028,
"src": "196:14:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5020,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "196:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5023,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5028,
"src": "212:16:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5022,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "212:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "195:34:25"
},
"payable": false,
"returnParameters": {
"id": 5027,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5026,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5028,
"src": "255:7:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5025,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "255:7:25",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "254:9:25"
},
"scope": 5057,
"src": "177:87:25",
"stateMutability": "view",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5039,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "transferFrom",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5035,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5030,
"name": "_from",
"nodeType": "VariableDeclaration",
"scope": 5039,
"src": "290:13:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5029,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "290:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5032,
"name": "_to",
"nodeType": "VariableDeclaration",
"scope": 5039,
"src": "305:11:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5031,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "305:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5034,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5039,
"src": "318:14:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5033,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "318:7:25",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "289:44:25"
},
"payable": false,
"returnParameters": {
"id": 5038,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5037,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5039,
"src": "354:4:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5036,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "354:4:25",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "353:6:25"
},
"scope": 5057,
"src": "268:92:25",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5048,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "approve",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5044,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5041,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5048,
"src": "381:16:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5040,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "381:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5043,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5048,
"src": "399:14:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5042,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "399:7:25",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "380:34:25"
},
"payable": false,
"returnParameters": {
"id": 5047,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5046,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5048,
"src": "431:4:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5045,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "431:4:25",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "430:6:25"
},
"scope": 5057,
"src": "364:73:25",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"anonymous": false,
"documentation": null,
"id": 5056,
"name": "Approval",
"nodeType": "EventDefinition",
"parameters": {
"id": 5055,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5050,
"indexed": true,
"name": "owner",
"nodeType": "VariableDeclaration",
"scope": 5056,
"src": "460:21:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5049,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "460:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5052,
"indexed": true,
"name": "spender",
"nodeType": "VariableDeclaration",
"scope": 5056,
"src": "487:23:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5051,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "487:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5054,
"indexed": false,
"name": "value",
"nodeType": "VariableDeclaration",
"scope": 5056,
"src": "516:13:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5053,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "516:7:25",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "454:79:25"
},
"src": "440:94:25"
}
],
"scope": 5058,
"src": "144:392:25"
}
],
"src": "0:537:25"
},
"legacyAST": {
"absolutePath": "zeppelin-solidity/contracts/token/ERC20/ERC20.sol",
"exportedSymbols": {
"ERC20": [
5057
]
},
"id": 5058,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 5016,
"literals": [
"solidity",
"^",
"0.4",
".24"
],
"nodeType": "PragmaDirective",
"src": "0:24:25"
},
{
"absolutePath": "zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol",
"file": "./ERC20Basic.sol",
"id": 5017,
"nodeType": "ImportDirective",
"scope": 5058,
"sourceUnit": 5090,
"src": "26:26:25",
"symbolAliases": [],
"unitAlias": ""
},
{
"baseContracts": [
{
"arguments": null,
"baseName": {
"contractScope": null,
"id": 5018,
"name": "ERC20Basic",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 5089,
"src": "162:10:25",
"typeDescriptions": {
"typeIdentifier": "t_contract$_ERC20Basic_$5089",
"typeString": "contract ERC20Basic"
}
},
"id": 5019,
"nodeType": "InheritanceSpecifier",
"src": "162:10:25"
}
],
"contractDependencies": [
5089
],
"contractKind": "contract",
"documentation": "@title ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/20",
"fullyImplemented": false,
"id": 5057,
"linearizedBaseContracts": [
5057,
5089
],
"name": "ERC20",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": null,
"documentation": null,
"id": 5028,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": true,
"modifiers": [],
"name": "allowance",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5024,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5021,
"name": "_owner",
"nodeType": "VariableDeclaration",
"scope": 5028,
"src": "196:14:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5020,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "196:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5023,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5028,
"src": "212:16:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5022,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "212:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "195:34:25"
},
"payable": false,
"returnParameters": {
"id": 5027,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5026,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5028,
"src": "255:7:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5025,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "255:7:25",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "254:9:25"
},
"scope": 5057,
"src": "177:87:25",
"stateMutability": "view",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5039,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "transferFrom",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5035,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5030,
"name": "_from",
"nodeType": "VariableDeclaration",
"scope": 5039,
"src": "290:13:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5029,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "290:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5032,
"name": "_to",
"nodeType": "VariableDeclaration",
"scope": 5039,
"src": "305:11:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5031,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "305:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5034,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5039,
"src": "318:14:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5033,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "318:7:25",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "289:44:25"
},
"payable": false,
"returnParameters": {
"id": 5038,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5037,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5039,
"src": "354:4:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5036,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "354:4:25",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "353:6:25"
},
"scope": 5057,
"src": "268:92:25",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5048,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "approve",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5044,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5041,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5048,
"src": "381:16:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5040,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "381:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5043,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5048,
"src": "399:14:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5042,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "399:7:25",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "380:34:25"
},
"payable": false,
"returnParameters": {
"id": 5047,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5046,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5048,
"src": "431:4:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5045,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "431:4:25",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "430:6:25"
},
"scope": 5057,
"src": "364:73:25",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"anonymous": false,
"documentation": null,
"id": 5056,
"name": "Approval",
"nodeType": "EventDefinition",
"parameters": {
"id": 5055,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5050,
"indexed": true,
"name": "owner",
"nodeType": "VariableDeclaration",
"scope": 5056,
"src": "460:21:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5049,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "460:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5052,
"indexed": true,
"name": "spender",
"nodeType": "VariableDeclaration",
"scope": 5056,
"src": "487:23:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5051,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "487:7:25",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5054,
"indexed": false,
"name": "value",
"nodeType": "VariableDeclaration",
"scope": 5056,
"src": "516:13:25",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5053,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "516:7:25",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "454:79:25"
},
"src": "440:94:25"
}
],
"scope": 5058,
"src": "144:392:25"
}
],
"src": "0:537:25"
},
"compiler": {
"name": "solc",
"version": "0.4.24+commit.e67f0147.Emscripten.clang"
},
"networks": {},
"schemaVersion": "2.0.1",
"updatedAt": "2018-10-31T09:02:05.441Z"
}