{ "contractName": "Migrations", "abi": [ { "constant": true, "inputs": [], "name": "last_completed_migration", "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" }, { "inputs": [], "payable": false, "stateMutability": "nonpayable", "type": "constructor" }, { "constant": false, "inputs": [ { "name": "completed", "type": "uint256" } ], "name": "setCompleted", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }, { "constant": false, "inputs": [ { "name": "new_address", "type": "address" } ], "name": "upgrade", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" } ], "bytecode": "0x608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f8806100606000396000f300608060405260043610610062576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630900f01014610067578063445df0ac146100aa5780638da5cb5b146100d5578063fdacd5761461012c575b600080fd5b34801561007357600080fd5b506100a8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610159565b005b3480156100b657600080fd5b506100bf610241565b6040518082815260200191505060405180910390f35b3480156100e157600080fd5b506100ea610247565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561013857600080fd5b506101576004803603810190808035906020019092919050505061026c565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561023d578190508073ffffffffffffffffffffffffffffffffffffffff1663fdacd5766001546040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b15801561022457600080fd5b505af1158015610238573d6000803e3d6000fd5b505050505b5050565b60015481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102c957806001819055505b505600a165627a7a723058206ae04dab7842a035dafed67c3a7c6e4dba46f3f40b8fa0fd9a934fb2efadc85b0029", "deployedBytecode": "0x608060405260043610610062576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630900f01014610067578063445df0ac146100aa5780638da5cb5b146100d5578063fdacd5761461012c575b600080fd5b34801561007357600080fd5b506100a8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610159565b005b3480156100b657600080fd5b506100bf610241565b6040518082815260200191505060405180910390f35b3480156100e157600080fd5b506100ea610247565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561013857600080fd5b506101576004803603810190808035906020019092919050505061026c565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561023d578190508073ffffffffffffffffffffffffffffffffffffffff1663fdacd5766001546040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b15801561022457600080fd5b505af1158015610238573d6000803e3d6000fd5b505050505b5050565b60015481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102c957806001819055505b505600a165627a7a723058206ae04dab7842a035dafed67c3a7c6e4dba46f3f40b8fa0fd9a934fb2efadc85b0029", "sourceMap": "25:580:7:-;;;191:76;8:9:-1;5:2;;;30:1;27;20:12;5:2;191:76:7;250:10;242:5;;:18;;;;;;;;;;;;;;;;;;25:580;;;;;;", "deployedSourceMap": "25:580:7:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408:195;;8:9:-1;5:2;;;30:1;27;20:12;5:2;408:195:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;77:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;77:36:7;;;;;;;;;;;;;;;;;;;;;;;51:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51:20:7;;;;;;;;;;;;;;;;;;;;;;;;;;;273:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;273:129:7;;;;;;;;;;;;;;;;;;;;;;;;;;408:195;494:19;170:5;;;;;;;;;;;156:19;;:10;:19;;;152:26;;;527:11;494:45;;549:8;:21;;;571:24;;549:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;549:47:7;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;549:47:7;;;;152:26;408:195;;:::o;77:36::-;;;;:::o;51:20::-;;;;;;;;;;;;;:::o;273:129::-;170:5;;;;;;;;;;;156:19;;:10;:19;;;152:26;;;386:9;359:24;:36;;;;152:26;273:129;:::o", "source": "pragma solidity ^0.4.4;\n\ncontract Migrations {\n address public owner;\n uint public last_completed_migration;\n\n modifier restricted() {\n if (msg.sender == owner) _;\n }\n\n function Migrations()\n public\n {\n owner = msg.sender;\n }\n\n function setCompleted(uint completed)\n public\n restricted\n {\n last_completed_migration = completed;\n }\n\n function upgrade(address new_address)\n public\n restricted\n {\n Migrations upgraded = Migrations(new_address);\n upgraded.setCompleted(last_completed_migration);\n }\n}\n", "sourcePath": "/Users/apanizo/git/gnosis/safe-contracts/contracts/Migrations.sol", "ast": { "absolutePath": "/Users/apanizo/git/gnosis/safe-contracts/contracts/Migrations.sol", "exportedSymbols": { "Migrations": [ 836 ] }, "id": 837, "nodeType": "SourceUnit", "nodes": [ { "id": 781, "literals": [ "solidity", "^", "0.4", ".4" ], "nodeType": "PragmaDirective", "src": "0:23:7" }, { "baseContracts": [], "contractDependencies": [], "contractKind": "contract", "documentation": null, "fullyImplemented": true, "id": 836, "linearizedBaseContracts": [ 836 ], "name": "Migrations", "nodeType": "ContractDefinition", "nodes": [ { "constant": false, "id": 783, "name": "owner", "nodeType": "VariableDeclaration", "scope": 836, "src": "51:20:7", "stateVariable": true, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" }, "typeName": { "id": 782, "name": "address", "nodeType": "ElementaryTypeName", "src": "51:7:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "value": null, "visibility": "public" }, { "constant": false, "id": 785, "name": "last_completed_migration", "nodeType": "VariableDeclaration", "scope": 836, "src": "77:36:7", "stateVariable": true, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" }, "typeName": { "id": 784, "name": "uint", "nodeType": "ElementaryTypeName", "src": "77:4:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "value": null, "visibility": "public" }, { "body": { "id": 793, "nodeType": "Block", "src": "142:43:7", "statements": [ { "condition": { "argumentTypes": null, "commonType": { "typeIdentifier": "t_address", "typeString": "address" }, "id": 790, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { "argumentTypes": null, "expression": { "argumentTypes": null, "id": 787, "name": "msg", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 2465, "src": "156:3:7", "typeDescriptions": { "typeIdentifier": "t_magic_message", "typeString": "msg" } }, "id": 788, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "sender", "nodeType": "MemberAccess", "referencedDeclaration": null, "src": "156:10:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "nodeType": "BinaryOperation", "operator": "==", "rightExpression": { "argumentTypes": null, "id": 789, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 783, "src": "170:5:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "src": "156:19:7", "typeDescriptions": { "typeIdentifier": "t_bool", "typeString": "bool" } }, "falseBody": null, "id": 792, "nodeType": "IfStatement", "src": "152:26:7", "trueBody": { "id": 791, "nodeType": "PlaceholderStatement", "src": "177:1:7" } } ] }, "documentation": null, "id": 794, "name": "restricted", "nodeType": "ModifierDefinition", "parameters": { "id": 786, "nodeType": "ParameterList", "parameters": [], "src": "139:2:7" }, "src": "120:65:7", "visibility": "internal" }, { "body": { "id": 802, "nodeType": "Block", "src": "232:35:7", "statements": [ { "expression": { "argumentTypes": null, "id": 800, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "argumentTypes": null, "id": 797, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 783, "src": "242:5:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "nodeType": "Assignment", "operator": "=", "rightHandSide": { "argumentTypes": null, "expression": { "argumentTypes": null, "id": 798, "name": "msg", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 2465, "src": "250:3:7", "typeDescriptions": { "typeIdentifier": "t_magic_message", "typeString": "msg" } }, "id": 799, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "sender", "nodeType": "MemberAccess", "referencedDeclaration": null, "src": "250:10:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "src": "242:18:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "id": 801, "nodeType": "ExpressionStatement", "src": "242:18:7" } ] }, "documentation": null, "id": 803, "implemented": true, "isConstructor": true, "isDeclaredConst": false, "modifiers": [], "name": "Migrations", "nodeType": "FunctionDefinition", "parameters": { "id": 795, "nodeType": "ParameterList", "parameters": [], "src": "210:2:7" }, "payable": false, "returnParameters": { "id": 796, "nodeType": "ParameterList", "parameters": [], "src": "232:0:7" }, "scope": 836, "src": "191:76:7", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" }, { "body": { "id": 814, "nodeType": "Block", "src": "349:53:7", "statements": [ { "expression": { "argumentTypes": null, "id": 812, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "argumentTypes": null, "id": 810, "name": "last_completed_migration", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 785, "src": "359:24:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "nodeType": "Assignment", "operator": "=", "rightHandSide": { "argumentTypes": null, "id": 811, "name": "completed", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 805, "src": "386:9:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "src": "359:36:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "id": 813, "nodeType": "ExpressionStatement", "src": "359:36:7" } ] }, "documentation": null, "id": 815, "implemented": true, "isConstructor": false, "isDeclaredConst": false, "modifiers": [ { "arguments": null, "id": 808, "modifierName": { "argumentTypes": null, "id": 807, "name": "restricted", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 794, "src": "334:10:7", "typeDescriptions": { "typeIdentifier": "t_modifier$__$", "typeString": "modifier ()" } }, "nodeType": "ModifierInvocation", "src": "334:10:7" } ], "name": "setCompleted", "nodeType": "FunctionDefinition", "parameters": { "id": 806, "nodeType": "ParameterList", "parameters": [ { "constant": false, "id": 805, "name": "completed", "nodeType": "VariableDeclaration", "scope": 815, "src": "295:14:7", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" }, "typeName": { "id": 804, "name": "uint", "nodeType": "ElementaryTypeName", "src": "295:4:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "value": null, "visibility": "internal" } ], "src": "294:16:7" }, "payable": false, "returnParameters": { "id": 809, "nodeType": "ParameterList", "parameters": [], "src": "349:0:7" }, "scope": 836, "src": "273:129:7", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" }, { "body": { "id": 834, "nodeType": "Block", "src": "484:119:7", "statements": [ { "assignments": [ 823 ], "declarations": [ { "constant": false, "id": 823, "name": "upgraded", "nodeType": "VariableDeclaration", "scope": 835, "src": "494:19:7", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$836", "typeString": "contract Migrations" }, "typeName": { "contractScope": null, "id": 822, "name": "Migrations", "nodeType": "UserDefinedTypeName", "referencedDeclaration": 836, "src": "494:10:7", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$836", "typeString": "contract Migrations" } }, "value": null, "visibility": "internal" } ], "id": 827, "initialValue": { "argumentTypes": null, "arguments": [ { "argumentTypes": null, "id": 825, "name": "new_address", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 817, "src": "527:11:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } } ], "expression": { "argumentTypes": [ { "typeIdentifier": "t_address", "typeString": "address" } ], "id": 824, "name": "Migrations", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 836, "src": "516:10:7", "typeDescriptions": { "typeIdentifier": "t_type$_t_contract$_Migrations_$836_$", "typeString": "type(contract Migrations)" } }, "id": 826, "isConstant": false, "isLValue": false, "isPure": false, "kind": "typeConversion", "lValueRequested": false, "names": [], "nodeType": "FunctionCall", "src": "516:23:7", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$836", "typeString": "contract Migrations" } }, "nodeType": "VariableDeclarationStatement", "src": "494:45:7" }, { "expression": { "argumentTypes": null, "arguments": [ { "argumentTypes": null, "id": 831, "name": "last_completed_migration", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 785, "src": "571:24:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } } ], "expression": { "argumentTypes": [ { "typeIdentifier": "t_uint256", "typeString": "uint256" } ], "expression": { "argumentTypes": null, "id": 828, "name": "upgraded", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 823, "src": "549:8:7", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$836", "typeString": "contract Migrations" } }, "id": 830, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "setCompleted", "nodeType": "MemberAccess", "referencedDeclaration": 815, "src": "549:21:7", "typeDescriptions": { "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$returns$__$", "typeString": "function (uint256) external" } }, "id": 832, "isConstant": false, "isLValue": false, "isPure": false, "kind": "functionCall", "lValueRequested": false, "names": [], "nodeType": "FunctionCall", "src": "549:47:7", "typeDescriptions": { "typeIdentifier": "t_tuple$__$", "typeString": "tuple()" } }, "id": 833, "nodeType": "ExpressionStatement", "src": "549:47:7" } ] }, "documentation": null, "id": 835, "implemented": true, "isConstructor": false, "isDeclaredConst": false, "modifiers": [ { "arguments": null, "id": 820, "modifierName": { "argumentTypes": null, "id": 819, "name": "restricted", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 794, "src": "469:10:7", "typeDescriptions": { "typeIdentifier": "t_modifier$__$", "typeString": "modifier ()" } }, "nodeType": "ModifierInvocation", "src": "469:10:7" } ], "name": "upgrade", "nodeType": "FunctionDefinition", "parameters": { "id": 818, "nodeType": "ParameterList", "parameters": [ { "constant": false, "id": 817, "name": "new_address", "nodeType": "VariableDeclaration", "scope": 835, "src": "425:19:7", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" }, "typeName": { "id": 816, "name": "address", "nodeType": "ElementaryTypeName", "src": "425:7:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "value": null, "visibility": "internal" } ], "src": "424:21:7" }, "payable": false, "returnParameters": { "id": 821, "nodeType": "ParameterList", "parameters": [], "src": "484:0:7" }, "scope": 836, "src": "408:195:7", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" } ], "scope": 837, "src": "25:580:7" } ], "src": "0:606:7" }, "legacyAST": { "absolutePath": "/Users/apanizo/git/gnosis/safe-contracts/contracts/Migrations.sol", "exportedSymbols": { "Migrations": [ 836 ] }, "id": 837, "nodeType": "SourceUnit", "nodes": [ { "id": 781, "literals": [ "solidity", "^", "0.4", ".4" ], "nodeType": "PragmaDirective", "src": "0:23:7" }, { "baseContracts": [], "contractDependencies": [], "contractKind": "contract", "documentation": null, "fullyImplemented": true, "id": 836, "linearizedBaseContracts": [ 836 ], "name": "Migrations", "nodeType": "ContractDefinition", "nodes": [ { "constant": false, "id": 783, "name": "owner", "nodeType": "VariableDeclaration", "scope": 836, "src": "51:20:7", "stateVariable": true, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" }, "typeName": { "id": 782, "name": "address", "nodeType": "ElementaryTypeName", "src": "51:7:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "value": null, "visibility": "public" }, { "constant": false, "id": 785, "name": "last_completed_migration", "nodeType": "VariableDeclaration", "scope": 836, "src": "77:36:7", "stateVariable": true, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" }, "typeName": { "id": 784, "name": "uint", "nodeType": "ElementaryTypeName", "src": "77:4:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "value": null, "visibility": "public" }, { "body": { "id": 793, "nodeType": "Block", "src": "142:43:7", "statements": [ { "condition": { "argumentTypes": null, "commonType": { "typeIdentifier": "t_address", "typeString": "address" }, "id": 790, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { "argumentTypes": null, "expression": { "argumentTypes": null, "id": 787, "name": "msg", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 2465, "src": "156:3:7", "typeDescriptions": { "typeIdentifier": "t_magic_message", "typeString": "msg" } }, "id": 788, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "sender", "nodeType": "MemberAccess", "referencedDeclaration": null, "src": "156:10:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "nodeType": "BinaryOperation", "operator": "==", "rightExpression": { "argumentTypes": null, "id": 789, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 783, "src": "170:5:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "src": "156:19:7", "typeDescriptions": { "typeIdentifier": "t_bool", "typeString": "bool" } }, "falseBody": null, "id": 792, "nodeType": "IfStatement", "src": "152:26:7", "trueBody": { "id": 791, "nodeType": "PlaceholderStatement", "src": "177:1:7" } } ] }, "documentation": null, "id": 794, "name": "restricted", "nodeType": "ModifierDefinition", "parameters": { "id": 786, "nodeType": "ParameterList", "parameters": [], "src": "139:2:7" }, "src": "120:65:7", "visibility": "internal" }, { "body": { "id": 802, "nodeType": "Block", "src": "232:35:7", "statements": [ { "expression": { "argumentTypes": null, "id": 800, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "argumentTypes": null, "id": 797, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 783, "src": "242:5:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "nodeType": "Assignment", "operator": "=", "rightHandSide": { "argumentTypes": null, "expression": { "argumentTypes": null, "id": 798, "name": "msg", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 2465, "src": "250:3:7", "typeDescriptions": { "typeIdentifier": "t_magic_message", "typeString": "msg" } }, "id": 799, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "sender", "nodeType": "MemberAccess", "referencedDeclaration": null, "src": "250:10:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "src": "242:18:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "id": 801, "nodeType": "ExpressionStatement", "src": "242:18:7" } ] }, "documentation": null, "id": 803, "implemented": true, "isConstructor": true, "isDeclaredConst": false, "modifiers": [], "name": "Migrations", "nodeType": "FunctionDefinition", "parameters": { "id": 795, "nodeType": "ParameterList", "parameters": [], "src": "210:2:7" }, "payable": false, "returnParameters": { "id": 796, "nodeType": "ParameterList", "parameters": [], "src": "232:0:7" }, "scope": 836, "src": "191:76:7", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" }, { "body": { "id": 814, "nodeType": "Block", "src": "349:53:7", "statements": [ { "expression": { "argumentTypes": null, "id": 812, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "argumentTypes": null, "id": 810, "name": "last_completed_migration", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 785, "src": "359:24:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "nodeType": "Assignment", "operator": "=", "rightHandSide": { "argumentTypes": null, "id": 811, "name": "completed", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 805, "src": "386:9:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "src": "359:36:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "id": 813, "nodeType": "ExpressionStatement", "src": "359:36:7" } ] }, "documentation": null, "id": 815, "implemented": true, "isConstructor": false, "isDeclaredConst": false, "modifiers": [ { "arguments": null, "id": 808, "modifierName": { "argumentTypes": null, "id": 807, "name": "restricted", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 794, "src": "334:10:7", "typeDescriptions": { "typeIdentifier": "t_modifier$__$", "typeString": "modifier ()" } }, "nodeType": "ModifierInvocation", "src": "334:10:7" } ], "name": "setCompleted", "nodeType": "FunctionDefinition", "parameters": { "id": 806, "nodeType": "ParameterList", "parameters": [ { "constant": false, "id": 805, "name": "completed", "nodeType": "VariableDeclaration", "scope": 815, "src": "295:14:7", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" }, "typeName": { "id": 804, "name": "uint", "nodeType": "ElementaryTypeName", "src": "295:4:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "value": null, "visibility": "internal" } ], "src": "294:16:7" }, "payable": false, "returnParameters": { "id": 809, "nodeType": "ParameterList", "parameters": [], "src": "349:0:7" }, "scope": 836, "src": "273:129:7", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" }, { "body": { "id": 834, "nodeType": "Block", "src": "484:119:7", "statements": [ { "assignments": [ 823 ], "declarations": [ { "constant": false, "id": 823, "name": "upgraded", "nodeType": "VariableDeclaration", "scope": 835, "src": "494:19:7", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$836", "typeString": "contract Migrations" }, "typeName": { "contractScope": null, "id": 822, "name": "Migrations", "nodeType": "UserDefinedTypeName", "referencedDeclaration": 836, "src": "494:10:7", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$836", "typeString": "contract Migrations" } }, "value": null, "visibility": "internal" } ], "id": 827, "initialValue": { "argumentTypes": null, "arguments": [ { "argumentTypes": null, "id": 825, "name": "new_address", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 817, "src": "527:11:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } } ], "expression": { "argumentTypes": [ { "typeIdentifier": "t_address", "typeString": "address" } ], "id": 824, "name": "Migrations", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 836, "src": "516:10:7", "typeDescriptions": { "typeIdentifier": "t_type$_t_contract$_Migrations_$836_$", "typeString": "type(contract Migrations)" } }, "id": 826, "isConstant": false, "isLValue": false, "isPure": false, "kind": "typeConversion", "lValueRequested": false, "names": [], "nodeType": "FunctionCall", "src": "516:23:7", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$836", "typeString": "contract Migrations" } }, "nodeType": "VariableDeclarationStatement", "src": "494:45:7" }, { "expression": { "argumentTypes": null, "arguments": [ { "argumentTypes": null, "id": 831, "name": "last_completed_migration", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 785, "src": "571:24:7", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } } ], "expression": { "argumentTypes": [ { "typeIdentifier": "t_uint256", "typeString": "uint256" } ], "expression": { "argumentTypes": null, "id": 828, "name": "upgraded", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 823, "src": "549:8:7", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$836", "typeString": "contract Migrations" } }, "id": 830, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "setCompleted", "nodeType": "MemberAccess", "referencedDeclaration": 815, "src": "549:21:7", "typeDescriptions": { "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$returns$__$", "typeString": "function (uint256) external" } }, "id": 832, "isConstant": false, "isLValue": false, "isPure": false, "kind": "functionCall", "lValueRequested": false, "names": [], "nodeType": "FunctionCall", "src": "549:47:7", "typeDescriptions": { "typeIdentifier": "t_tuple$__$", "typeString": "tuple()" } }, "id": 833, "nodeType": "ExpressionStatement", "src": "549:47:7" } ] }, "documentation": null, "id": 835, "implemented": true, "isConstructor": false, "isDeclaredConst": false, "modifiers": [ { "arguments": null, "id": 820, "modifierName": { "argumentTypes": null, "id": 819, "name": "restricted", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 794, "src": "469:10:7", "typeDescriptions": { "typeIdentifier": "t_modifier$__$", "typeString": "modifier ()" } }, "nodeType": "ModifierInvocation", "src": "469:10:7" } ], "name": "upgrade", "nodeType": "FunctionDefinition", "parameters": { "id": 818, "nodeType": "ParameterList", "parameters": [ { "constant": false, "id": 817, "name": "new_address", "nodeType": "VariableDeclaration", "scope": 835, "src": "425:19:7", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" }, "typeName": { "id": 816, "name": "address", "nodeType": "ElementaryTypeName", "src": "425:7:7", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "value": null, "visibility": "internal" } ], "src": "424:21:7" }, "payable": false, "returnParameters": { "id": 821, "nodeType": "ParameterList", "parameters": [], "src": "484:0:7" }, "scope": 836, "src": "408:195:7", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" } ], "scope": 837, "src": "25:580:7" } ], "src": "0:606:7" }, "compiler": { "name": "solc", "version": "0.4.23+commit.124ca40d.Emscripten.clang" }, "networks": { "4": { "events": {}, "links": {}, "address": "0xcf171a1fe7e24ac529ec0436cd51543469488a30", "transactionHash": "0x52b1aad2d523bc57e2729516009b2dc46c58b5287c72ca9fa2faf949ad3ed32a" }, "42": { "events": {}, "links": {}, "address": "0x304f68cf0ca47b08d6bbf23c6f82d92bacf5378e", "transactionHash": "0xa1edbc493e7f59db46fe904a775189a9fcdca9efabeea55db94f09fd64d37461" }, "1525950336085": { "events": {}, "links": {}, "address": "0xb97a46b50b9e38d540e9701d3d4afe71a65c09df", "transactionHash": "0x137111f15934455430bea53bd8a6721561285af6a431f174f090257877635ab6" }, "1526283540628": { "events": {}, "links": {}, "address": "0x3b293b12ee278dba3d4350cd5b4434c228bad69b", "transactionHash": "0x137111f15934455430bea53bd8a6721561285af6a431f174f090257877635ab6" } }, "schemaVersion": "2.0.0", "updatedAt": "2018-05-14T07:39:37.978Z" }