{ "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": "0x608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f8806100606000396000f300608060405260043610610062576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630900f01014610067578063445df0ac146100aa5780638da5cb5b146100d5578063fdacd5761461012c575b600080fd5b34801561007357600080fd5b506100a8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610159565b005b3480156100b657600080fd5b506100bf610241565b6040518082815260200191505060405180910390f35b3480156100e157600080fd5b506100ea610247565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561013857600080fd5b506101576004803603810190808035906020019092919050505061026c565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561023d578190508073ffffffffffffffffffffffffffffffffffffffff1663fdacd5766001546040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b15801561022457600080fd5b505af1158015610238573d6000803e3d6000fd5b505050505b5050565b60015481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102c957806001819055505b505600a165627a7a72305820395a1faf61b0f17e3924c1d3e3b1152739b523adb57dd5b79bb0bea6897a5ff70029", "deployedBytecode": "0x608060405260043610610062576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630900f01014610067578063445df0ac146100aa5780638da5cb5b146100d5578063fdacd5761461012c575b600080fd5b34801561007357600080fd5b506100a8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610159565b005b3480156100b657600080fd5b506100bf610241565b6040518082815260200191505060405180910390f35b3480156100e157600080fd5b506100ea610247565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561013857600080fd5b506101576004803603810190808035906020019092919050505061026c565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561023d578190508073ffffffffffffffffffffffffffffffffffffffff1663fdacd5766001546040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b15801561022457600080fd5b505af1158015610238573d6000803e3d6000fd5b505050505b5050565b60015481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102c957806001819055505b505600a165627a7a72305820395a1faf61b0f17e3924c1d3e3b1152739b523adb57dd5b79bb0bea6897a5ff70029", "sourceMap": "25:572:1:-;;;191:68;8:9:-1;5:2;;;30:1;27;20:12;5:2;191:68:1;242:10;234:5;;:18;;;;;;;;;;;;;;;;;;25:572;;;;;;", "deployedSourceMap": "25:572:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400:195;;8:9:-1;5:2;;;30:1;27;20:12;5:2;400:195:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;77:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;77:36:1;;;;;;;;;;;;;;;;;;;;;;;51:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51:20:1;;;;;;;;;;;;;;;;;;;;;;;;;;;265:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;265:129:1;;;;;;;;;;;;;;;;;;;;;;;;;;400:195;486:19;170:5;;;;;;;;;;;156:19;;:10;:19;;;152:26;;;519:11;486:45;;541:8;:21;;;563:24;;541:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;541:47:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;541:47:1;;;;152:26;400:195;;:::o;77:36::-;;;;:::o;51:20::-;;;;;;;;;;;;;:::o;265:129::-;170:5;;;;;;;;;;;156:19;;:10;:19;;;152:26;;;378:9;351:24;:36;;;;152:26;265: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 constructor()\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": [ 749 ] }, "id": 750, "nodeType": "SourceUnit", "nodes": [ { "id": 694, "literals": [ "solidity", "^", "0.4", ".4" ], "nodeType": "PragmaDirective", "src": "0:23:1" }, { "baseContracts": [], "contractDependencies": [], "contractKind": "contract", "documentation": null, "fullyImplemented": true, "id": 749, "linearizedBaseContracts": [ 749 ], "name": "Migrations", "nodeType": "ContractDefinition", "nodes": [ { "constant": false, "id": 696, "name": "owner", "nodeType": "VariableDeclaration", "scope": 749, "src": "51:20:1", "stateVariable": true, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" }, "typeName": { "id": 695, "name": "address", "nodeType": "ElementaryTypeName", "src": "51:7:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "value": null, "visibility": "public" }, { "constant": false, "id": 698, "name": "last_completed_migration", "nodeType": "VariableDeclaration", "scope": 749, "src": "77:36:1", "stateVariable": true, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" }, "typeName": { "id": 697, "name": "uint", "nodeType": "ElementaryTypeName", "src": "77:4:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "value": null, "visibility": "public" }, { "body": { "id": 706, "nodeType": "Block", "src": "142:43:1", "statements": [ { "condition": { "argumentTypes": null, "commonType": { "typeIdentifier": "t_address", "typeString": "address" }, "id": 703, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { "argumentTypes": null, "expression": { "argumentTypes": null, "id": 700, "name": "msg", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 4015, "src": "156:3:1", "typeDescriptions": { "typeIdentifier": "t_magic_message", "typeString": "msg" } }, "id": 701, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "sender", "nodeType": "MemberAccess", "referencedDeclaration": null, "src": "156:10:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "nodeType": "BinaryOperation", "operator": "==", "rightExpression": { "argumentTypes": null, "id": 702, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 696, "src": "170:5:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "src": "156:19:1", "typeDescriptions": { "typeIdentifier": "t_bool", "typeString": "bool" } }, "falseBody": null, "id": 705, "nodeType": "IfStatement", "src": "152:26:1", "trueBody": { "id": 704, "nodeType": "PlaceholderStatement", "src": "177:1:1" } } ] }, "documentation": null, "id": 707, "name": "restricted", "nodeType": "ModifierDefinition", "parameters": { "id": 699, "nodeType": "ParameterList", "parameters": [], "src": "139:2:1" }, "src": "120:65:1", "visibility": "internal" }, { "body": { "id": 715, "nodeType": "Block", "src": "224:35:1", "statements": [ { "expression": { "argumentTypes": null, "id": 713, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "argumentTypes": null, "id": 710, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 696, "src": "234:5:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "nodeType": "Assignment", "operator": "=", "rightHandSide": { "argumentTypes": null, "expression": { "argumentTypes": null, "id": 711, "name": "msg", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 4015, "src": "242:3:1", "typeDescriptions": { "typeIdentifier": "t_magic_message", "typeString": "msg" } }, "id": 712, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "sender", "nodeType": "MemberAccess", "referencedDeclaration": null, "src": "242:10:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "src": "234:18:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "id": 714, "nodeType": "ExpressionStatement", "src": "234:18:1" } ] }, "documentation": null, "id": 716, "implemented": true, "isConstructor": true, "isDeclaredConst": false, "modifiers": [], "name": "", "nodeType": "FunctionDefinition", "parameters": { "id": 708, "nodeType": "ParameterList", "parameters": [], "src": "202:2:1" }, "payable": false, "returnParameters": { "id": 709, "nodeType": "ParameterList", "parameters": [], "src": "224:0:1" }, "scope": 749, "src": "191:68:1", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" }, { "body": { "id": 727, "nodeType": "Block", "src": "341:53:1", "statements": [ { "expression": { "argumentTypes": null, "id": 725, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "argumentTypes": null, "id": 723, "name": "last_completed_migration", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 698, "src": "351:24:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "nodeType": "Assignment", "operator": "=", "rightHandSide": { "argumentTypes": null, "id": 724, "name": "completed", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 718, "src": "378:9:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "src": "351:36:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "id": 726, "nodeType": "ExpressionStatement", "src": "351:36:1" } ] }, "documentation": null, "id": 728, "implemented": true, "isConstructor": false, "isDeclaredConst": false, "modifiers": [ { "arguments": null, "id": 721, "modifierName": { "argumentTypes": null, "id": 720, "name": "restricted", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 707, "src": "326:10:1", "typeDescriptions": { "typeIdentifier": "t_modifier$__$", "typeString": "modifier ()" } }, "nodeType": "ModifierInvocation", "src": "326:10:1" } ], "name": "setCompleted", "nodeType": "FunctionDefinition", "parameters": { "id": 719, "nodeType": "ParameterList", "parameters": [ { "constant": false, "id": 718, "name": "completed", "nodeType": "VariableDeclaration", "scope": 728, "src": "287:14:1", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" }, "typeName": { "id": 717, "name": "uint", "nodeType": "ElementaryTypeName", "src": "287:4:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "value": null, "visibility": "internal" } ], "src": "286:16:1" }, "payable": false, "returnParameters": { "id": 722, "nodeType": "ParameterList", "parameters": [], "src": "341:0:1" }, "scope": 749, "src": "265:129:1", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" }, { "body": { "id": 747, "nodeType": "Block", "src": "476:119:1", "statements": [ { "assignments": [ 736 ], "declarations": [ { "constant": false, "id": 736, "name": "upgraded", "nodeType": "VariableDeclaration", "scope": 748, "src": "486:19:1", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$749", "typeString": "contract Migrations" }, "typeName": { "contractScope": null, "id": 735, "name": "Migrations", "nodeType": "UserDefinedTypeName", "referencedDeclaration": 749, "src": "486:10:1", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$749", "typeString": "contract Migrations" } }, "value": null, "visibility": "internal" } ], "id": 740, "initialValue": { "argumentTypes": null, "arguments": [ { "argumentTypes": null, "id": 738, "name": "new_address", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 730, "src": "519:11:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } } ], "expression": { "argumentTypes": [ { "typeIdentifier": "t_address", "typeString": "address" } ], "id": 737, "name": "Migrations", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 749, "src": "508:10:1", "typeDescriptions": { "typeIdentifier": "t_type$_t_contract$_Migrations_$749_$", "typeString": "type(contract Migrations)" } }, "id": 739, "isConstant": false, "isLValue": false, "isPure": false, "kind": "typeConversion", "lValueRequested": false, "names": [], "nodeType": "FunctionCall", "src": "508:23:1", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$749", "typeString": "contract Migrations" } }, "nodeType": "VariableDeclarationStatement", "src": "486:45:1" }, { "expression": { "argumentTypes": null, "arguments": [ { "argumentTypes": null, "id": 744, "name": "last_completed_migration", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 698, "src": "563:24:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } } ], "expression": { "argumentTypes": [ { "typeIdentifier": "t_uint256", "typeString": "uint256" } ], "expression": { "argumentTypes": null, "id": 741, "name": "upgraded", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 736, "src": "541:8:1", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$749", "typeString": "contract Migrations" } }, "id": 743, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "setCompleted", "nodeType": "MemberAccess", "referencedDeclaration": 728, "src": "541:21:1", "typeDescriptions": { "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$returns$__$", "typeString": "function (uint256) external" } }, "id": 745, "isConstant": false, "isLValue": false, "isPure": false, "kind": "functionCall", "lValueRequested": false, "names": [], "nodeType": "FunctionCall", "src": "541:47:1", "typeDescriptions": { "typeIdentifier": "t_tuple$__$", "typeString": "tuple()" } }, "id": 746, "nodeType": "ExpressionStatement", "src": "541:47:1" } ] }, "documentation": null, "id": 748, "implemented": true, "isConstructor": false, "isDeclaredConst": false, "modifiers": [ { "arguments": null, "id": 733, "modifierName": { "argumentTypes": null, "id": 732, "name": "restricted", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 707, "src": "461:10:1", "typeDescriptions": { "typeIdentifier": "t_modifier$__$", "typeString": "modifier ()" } }, "nodeType": "ModifierInvocation", "src": "461:10:1" } ], "name": "upgrade", "nodeType": "FunctionDefinition", "parameters": { "id": 731, "nodeType": "ParameterList", "parameters": [ { "constant": false, "id": 730, "name": "new_address", "nodeType": "VariableDeclaration", "scope": 748, "src": "417:19:1", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" }, "typeName": { "id": 729, "name": "address", "nodeType": "ElementaryTypeName", "src": "417:7:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "value": null, "visibility": "internal" } ], "src": "416:21:1" }, "payable": false, "returnParameters": { "id": 734, "nodeType": "ParameterList", "parameters": [], "src": "476:0:1" }, "scope": 749, "src": "400:195:1", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" } ], "scope": 750, "src": "25:572:1" } ], "src": "0:598:1" }, "legacyAST": { "absolutePath": "/Users/apanizo/git/gnosis/safe-contracts/contracts/Migrations.sol", "exportedSymbols": { "Migrations": [ 749 ] }, "id": 750, "nodeType": "SourceUnit", "nodes": [ { "id": 694, "literals": [ "solidity", "^", "0.4", ".4" ], "nodeType": "PragmaDirective", "src": "0:23:1" }, { "baseContracts": [], "contractDependencies": [], "contractKind": "contract", "documentation": null, "fullyImplemented": true, "id": 749, "linearizedBaseContracts": [ 749 ], "name": "Migrations", "nodeType": "ContractDefinition", "nodes": [ { "constant": false, "id": 696, "name": "owner", "nodeType": "VariableDeclaration", "scope": 749, "src": "51:20:1", "stateVariable": true, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" }, "typeName": { "id": 695, "name": "address", "nodeType": "ElementaryTypeName", "src": "51:7:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "value": null, "visibility": "public" }, { "constant": false, "id": 698, "name": "last_completed_migration", "nodeType": "VariableDeclaration", "scope": 749, "src": "77:36:1", "stateVariable": true, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" }, "typeName": { "id": 697, "name": "uint", "nodeType": "ElementaryTypeName", "src": "77:4:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "value": null, "visibility": "public" }, { "body": { "id": 706, "nodeType": "Block", "src": "142:43:1", "statements": [ { "condition": { "argumentTypes": null, "commonType": { "typeIdentifier": "t_address", "typeString": "address" }, "id": 703, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { "argumentTypes": null, "expression": { "argumentTypes": null, "id": 700, "name": "msg", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 4015, "src": "156:3:1", "typeDescriptions": { "typeIdentifier": "t_magic_message", "typeString": "msg" } }, "id": 701, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "sender", "nodeType": "MemberAccess", "referencedDeclaration": null, "src": "156:10:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "nodeType": "BinaryOperation", "operator": "==", "rightExpression": { "argumentTypes": null, "id": 702, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 696, "src": "170:5:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "src": "156:19:1", "typeDescriptions": { "typeIdentifier": "t_bool", "typeString": "bool" } }, "falseBody": null, "id": 705, "nodeType": "IfStatement", "src": "152:26:1", "trueBody": { "id": 704, "nodeType": "PlaceholderStatement", "src": "177:1:1" } } ] }, "documentation": null, "id": 707, "name": "restricted", "nodeType": "ModifierDefinition", "parameters": { "id": 699, "nodeType": "ParameterList", "parameters": [], "src": "139:2:1" }, "src": "120:65:1", "visibility": "internal" }, { "body": { "id": 715, "nodeType": "Block", "src": "224:35:1", "statements": [ { "expression": { "argumentTypes": null, "id": 713, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "argumentTypes": null, "id": 710, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 696, "src": "234:5:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "nodeType": "Assignment", "operator": "=", "rightHandSide": { "argumentTypes": null, "expression": { "argumentTypes": null, "id": 711, "name": "msg", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 4015, "src": "242:3:1", "typeDescriptions": { "typeIdentifier": "t_magic_message", "typeString": "msg" } }, "id": 712, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "sender", "nodeType": "MemberAccess", "referencedDeclaration": null, "src": "242:10:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "src": "234:18:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "id": 714, "nodeType": "ExpressionStatement", "src": "234:18:1" } ] }, "documentation": null, "id": 716, "implemented": true, "isConstructor": true, "isDeclaredConst": false, "modifiers": [], "name": "", "nodeType": "FunctionDefinition", "parameters": { "id": 708, "nodeType": "ParameterList", "parameters": [], "src": "202:2:1" }, "payable": false, "returnParameters": { "id": 709, "nodeType": "ParameterList", "parameters": [], "src": "224:0:1" }, "scope": 749, "src": "191:68:1", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" }, { "body": { "id": 727, "nodeType": "Block", "src": "341:53:1", "statements": [ { "expression": { "argumentTypes": null, "id": 725, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "argumentTypes": null, "id": 723, "name": "last_completed_migration", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 698, "src": "351:24:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "nodeType": "Assignment", "operator": "=", "rightHandSide": { "argumentTypes": null, "id": 724, "name": "completed", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 718, "src": "378:9:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "src": "351:36:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "id": 726, "nodeType": "ExpressionStatement", "src": "351:36:1" } ] }, "documentation": null, "id": 728, "implemented": true, "isConstructor": false, "isDeclaredConst": false, "modifiers": [ { "arguments": null, "id": 721, "modifierName": { "argumentTypes": null, "id": 720, "name": "restricted", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 707, "src": "326:10:1", "typeDescriptions": { "typeIdentifier": "t_modifier$__$", "typeString": "modifier ()" } }, "nodeType": "ModifierInvocation", "src": "326:10:1" } ], "name": "setCompleted", "nodeType": "FunctionDefinition", "parameters": { "id": 719, "nodeType": "ParameterList", "parameters": [ { "constant": false, "id": 718, "name": "completed", "nodeType": "VariableDeclaration", "scope": 728, "src": "287:14:1", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" }, "typeName": { "id": 717, "name": "uint", "nodeType": "ElementaryTypeName", "src": "287:4:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, "value": null, "visibility": "internal" } ], "src": "286:16:1" }, "payable": false, "returnParameters": { "id": 722, "nodeType": "ParameterList", "parameters": [], "src": "341:0:1" }, "scope": 749, "src": "265:129:1", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" }, { "body": { "id": 747, "nodeType": "Block", "src": "476:119:1", "statements": [ { "assignments": [ 736 ], "declarations": [ { "constant": false, "id": 736, "name": "upgraded", "nodeType": "VariableDeclaration", "scope": 748, "src": "486:19:1", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$749", "typeString": "contract Migrations" }, "typeName": { "contractScope": null, "id": 735, "name": "Migrations", "nodeType": "UserDefinedTypeName", "referencedDeclaration": 749, "src": "486:10:1", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$749", "typeString": "contract Migrations" } }, "value": null, "visibility": "internal" } ], "id": 740, "initialValue": { "argumentTypes": null, "arguments": [ { "argumentTypes": null, "id": 738, "name": "new_address", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 730, "src": "519:11:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } } ], "expression": { "argumentTypes": [ { "typeIdentifier": "t_address", "typeString": "address" } ], "id": 737, "name": "Migrations", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 749, "src": "508:10:1", "typeDescriptions": { "typeIdentifier": "t_type$_t_contract$_Migrations_$749_$", "typeString": "type(contract Migrations)" } }, "id": 739, "isConstant": false, "isLValue": false, "isPure": false, "kind": "typeConversion", "lValueRequested": false, "names": [], "nodeType": "FunctionCall", "src": "508:23:1", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$749", "typeString": "contract Migrations" } }, "nodeType": "VariableDeclarationStatement", "src": "486:45:1" }, { "expression": { "argumentTypes": null, "arguments": [ { "argumentTypes": null, "id": 744, "name": "last_completed_migration", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 698, "src": "563:24:1", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } } ], "expression": { "argumentTypes": [ { "typeIdentifier": "t_uint256", "typeString": "uint256" } ], "expression": { "argumentTypes": null, "id": 741, "name": "upgraded", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 736, "src": "541:8:1", "typeDescriptions": { "typeIdentifier": "t_contract$_Migrations_$749", "typeString": "contract Migrations" } }, "id": 743, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "memberName": "setCompleted", "nodeType": "MemberAccess", "referencedDeclaration": 728, "src": "541:21:1", "typeDescriptions": { "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$returns$__$", "typeString": "function (uint256) external" } }, "id": 745, "isConstant": false, "isLValue": false, "isPure": false, "kind": "functionCall", "lValueRequested": false, "names": [], "nodeType": "FunctionCall", "src": "541:47:1", "typeDescriptions": { "typeIdentifier": "t_tuple$__$", "typeString": "tuple()" } }, "id": 746, "nodeType": "ExpressionStatement", "src": "541:47:1" } ] }, "documentation": null, "id": 748, "implemented": true, "isConstructor": false, "isDeclaredConst": false, "modifiers": [ { "arguments": null, "id": 733, "modifierName": { "argumentTypes": null, "id": 732, "name": "restricted", "nodeType": "Identifier", "overloadedDeclarations": [], "referencedDeclaration": 707, "src": "461:10:1", "typeDescriptions": { "typeIdentifier": "t_modifier$__$", "typeString": "modifier ()" } }, "nodeType": "ModifierInvocation", "src": "461:10:1" } ], "name": "upgrade", "nodeType": "FunctionDefinition", "parameters": { "id": 731, "nodeType": "ParameterList", "parameters": [ { "constant": false, "id": 730, "name": "new_address", "nodeType": "VariableDeclaration", "scope": 748, "src": "417:19:1", "stateVariable": false, "storageLocation": "default", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" }, "typeName": { "id": 729, "name": "address", "nodeType": "ElementaryTypeName", "src": "417:7:1", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, "value": null, "visibility": "internal" } ], "src": "416:21:1" }, "payable": false, "returnParameters": { "id": 734, "nodeType": "ParameterList", "parameters": [], "src": "476:0:1" }, "scope": 749, "src": "400:195:1", "stateMutability": "nonpayable", "superFunction": null, "visibility": "public" } ], "scope": 750, "src": "25:572:1" } ], "src": "0:598:1" }, "compiler": { "name": "solc", "version": "0.4.24+commit.e67f0147.Emscripten.clang" }, "networks": { "4": { "events": {}, "links": {}, "address": "0x047349c3f4b2c430c4e9f56be4089dee0e4e0a53", "transactionHash": "0x2fb02eb9fe8f01ee1cacffad5f8f9799b16ab8dd24526154ddace9274181d30b" }, "1538739975997": { "events": {}, "links": {}, "address": "0xe78a0f7e598cc8b0bb87894b0f60dd2a88d6a8ab", "transactionHash": "0xaedda9523231e6436096a02f29777285f5b45e35532d888872fa86d24e3d854d" } }, "schemaVersion": "2.0.0", "updatedAt": "2018-10-05T14:43:41.425Z" }