2018-05-04 14:04:04 +00:00
{
"contractName" : "Proxy" ,
"abi" : [
{
"inputs" : [
{
"name" : "_masterCopy" ,
"type" : "address"
}
] ,
"payable" : false ,
"stateMutability" : "nonpayable" ,
"type" : "constructor"
} ,
{
"payable" : true ,
"stateMutability" : "payable" ,
"type" : "fallback"
2018-05-10 11:12:13 +00:00
} ,
{
"constant" : true ,
"inputs" : [ ] ,
"name" : "implementation" ,
"outputs" : [
{
"name" : "" ,
"type" : "address"
}
] ,
"payable" : false ,
"stateMutability" : "view" ,
"type" : "function"
} ,
{
"constant" : true ,
"inputs" : [ ] ,
"name" : "proxyType" ,
"outputs" : [
{
"name" : "" ,
"type" : "uint256"
}
] ,
"payable" : false ,
"stateMutability" : "pure" ,
"type" : "function"
2018-05-04 14:04:04 +00:00
}
] ,
2018-05-27 11:24:10 +00:00
"bytecode" : "0x608060405234801561001057600080fd5b506040516020806102148339810180604052810190808051906020019092919050505060008173ffffffffffffffffffffffffffffffffffffffff161415151561005957600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505061016b806100a96000396000f30060806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634555d5c91461008b5780635c60da1b146100b6575b73ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e6000811415610086573d6000fd5b3d6000f35b34801561009757600080fd5b506100a061010d565b6040518082815260200191505060405180910390f35b3480156100c257600080fd5b506100cb610116565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b60006002905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050905600a165627a7a72305820cd7d1e9dd84eb221f79b1c8f72a39fad7d9f8ab7239d25c1fc563147abcaf4150029" ,
"deployedBytecode" : "0x60806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634555d5c91461008b5780635c60da1b146100b6575b73ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e6000811415610086573d6000fd5b3d6000f35b34801561009757600080fd5b506100a061010d565b6040518082815260200191505060405180910390f35b3480156100c257600080fd5b506100cb610116565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b60006002905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050905600a165627a7a72305820cd7d1e9dd84eb221f79b1c8f72a39fad7d9f8ab7239d25c1fc563147abcaf4150029" ,
"sourceMap" : "190:1302:11:-;;;508:128;8:9:-1;5:2;;;30:1;27;20:12;5:2;508:128:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;593:1;578:11;:16;;;;570:25;;;;;;;;618:11;605:10;;:24;;;;;;;;;;;;;;;;;;508:128;190:1302;;;;;;" ,
"deployedSourceMap" : "190:1302:11:-;;;;;;;;;;;;;;;;;;;;;;;;;;915:42;911:1;905:8;901:57;990:14;987:1;984;971:34;1085:1;1082;1066:14;1063:1;1051:10;1046:3;1033:54;1121:16;1118:1;1115;1100:38;1166:1;1157:7;1154:14;1151:2;;;1181:16;1178:1;1171:27;1151:2;1223:16;1220:1;1213:27;1386:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1386:104:11;;;;;;;;;;;;;;;;;;;;;;;1262:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1262:118:11;;;;;;;;;;;;;;;;;;;;;;;;;;;1386:104;1452:7;1482:1;1475:8;;1386:104;:::o;1262:118::-;1333:7;1363:10;;;;;;;;;;;1356:17;;1262:118;:::o" ,
"source" : "pragma solidity 0.4.24;\n\n\n/// @title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.\n/// @author Stefan George - <stefan@gnosis.pm>\ncontract Proxy {\n\n // masterCopy always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.\n address masterCopy;\n\n /// @dev Constructor function sets address of master copy contract.\n /// @param _masterCopy Master copy address.\n constructor(address _masterCopy)\n public\n {\n require(_masterCopy != 0);\n masterCopy = _masterCopy;\n }\n\n /// @dev Fallback function forwards all transactions and returns all received return data.\n function ()\n external\n payable\n {\n // solium-disable-next-line security/no-inline-assembly\n assembly {\n let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)\n calldatacopy(0, 0, calldatasize())\n let success := delegatecall(gas, masterCopy, 0, calldatasize(), 0, 0)\n returndatacopy(0, 0, returndatasize())\n if eq(success, 0) { revert(0, returndatasize()) }\n return(0, returndatasize())\n }\n }\n\n function implementation()\n public\n view\n returns (address)\n {\n return masterCopy;\n }\n\n function proxyType()\n public\n pure\n returns (uint256)\n {\n return 2;\n }\n}\n" ,
2018-05-04 14:04:04 +00:00
"sourcePath" : "/Users/apanizo/git/gnosis/safe-contracts/contracts/Proxy.sol" ,
"ast" : {
"absolutePath" : "/Users/apanizo/git/gnosis/safe-contracts/contracts/Proxy.sol" ,
"exportedSymbols" : {
"Proxy" : [
2018-05-27 11:24:10 +00:00
1568
2018-05-04 14:04:04 +00:00
]
} ,
2018-05-27 11:24:10 +00:00
"id" : 1569 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "SourceUnit" ,
"nodes" : [
{
2018-05-27 11:24:10 +00:00
"id" : 1528 ,
2018-05-04 14:04:04 +00:00
"literals" : [
"solidity" ,
"0.4" ,
2018-05-27 11:24:10 +00:00
".24"
2018-05-04 14:04:04 +00:00
] ,
"nodeType" : "PragmaDirective" ,
2018-05-27 11:24:10 +00:00
"src" : "0:23:11"
2018-05-04 14:04:04 +00:00
} ,
{
"baseContracts" : [ ] ,
"contractDependencies" : [ ] ,
"contractKind" : "contract" ,
"documentation" : "@title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.\n @author Stefan George - <stefan@gnosis.pm>" ,
"fullyImplemented" : true ,
2018-05-27 11:24:10 +00:00
"id" : 1568 ,
2018-05-04 14:04:04 +00:00
"linearizedBaseContracts" : [
2018-05-27 11:24:10 +00:00
1568
2018-05-04 14:04:04 +00:00
] ,
"name" : "Proxy" ,
"nodeType" : "ContractDefinition" ,
"nodes" : [
{
"constant" : false ,
2018-05-27 11:24:10 +00:00
"id" : 1530 ,
2018-05-04 14:04:04 +00:00
"name" : "masterCopy" ,
"nodeType" : "VariableDeclaration" ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "363:18:11" ,
2018-05-04 14:04:04 +00:00
"stateVariable" : true ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
"typeName" : {
2018-05-27 11:24:10 +00:00
"id" : 1529 ,
2018-05-04 14:04:04 +00:00
"name" : "address" ,
"nodeType" : "ElementaryTypeName" ,
2018-05-27 11:24:10 +00:00
"src" : "363:7:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"value" : null ,
"visibility" : "internal"
} ,
{
"body" : {
2018-05-27 11:24:10 +00:00
"id" : 1545 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "Block" ,
2018-05-27 11:24:10 +00:00
"src" : "560:76:11" ,
2018-05-04 14:04:04 +00:00
"statements" : [
{
"expression" : {
"argumentTypes" : null ,
"arguments" : [
{
"argumentTypes" : null ,
"commonType" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
2018-05-27 11:24:10 +00:00
"id" : 1538 ,
2018-05-04 14:04:04 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"leftExpression" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1536 ,
2018-05-04 14:04:04 +00:00
"name" : "_masterCopy" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 1532 ,
"src" : "578:11:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"nodeType" : "BinaryOperation" ,
"operator" : "!=" ,
"rightExpression" : {
"argumentTypes" : null ,
"hexValue" : "30" ,
2018-05-27 11:24:10 +00:00
"id" : 1537 ,
2018-05-04 14:04:04 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : true ,
"kind" : "number" ,
"lValueRequested" : false ,
"nodeType" : "Literal" ,
2018-05-27 11:24:10 +00:00
"src" : "593:1:11" ,
2018-05-04 14:04:04 +00:00
"subdenomination" : null ,
"typeDescriptions" : {
"typeIdentifier" : "t_rational_0_by_1" ,
"typeString" : "int_const 0"
} ,
"value" : "0"
} ,
2018-05-27 11:24:10 +00:00
"src" : "578:16:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_bool" ,
"typeString" : "bool"
}
}
] ,
"expression" : {
"argumentTypes" : [
{
"typeIdentifier" : "t_bool" ,
"typeString" : "bool"
}
] ,
2018-05-27 11:24:10 +00:00
"id" : 1535 ,
2018-05-04 14:04:04 +00:00
"name" : "require" ,
"nodeType" : "Identifier" ,
2018-05-10 11:12:13 +00:00
"overloadedDeclarations" : [
2018-05-27 11:24:10 +00:00
2601 ,
2602
2018-05-10 11:12:13 +00:00
] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 2601 ,
"src" : "570:7:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_function_require_pure$_t_bool_$returns$__$" ,
"typeString" : "function (bool) pure"
}
} ,
2018-05-27 11:24:10 +00:00
"id" : 1539 ,
2018-05-04 14:04:04 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"kind" : "functionCall" ,
"lValueRequested" : false ,
"names" : [ ] ,
"nodeType" : "FunctionCall" ,
2018-05-27 11:24:10 +00:00
"src" : "570:25:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_tuple$__$" ,
"typeString" : "tuple()"
}
} ,
2018-05-27 11:24:10 +00:00
"id" : 1540 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ExpressionStatement" ,
2018-05-27 11:24:10 +00:00
"src" : "570:25:11"
2018-05-04 14:04:04 +00:00
} ,
{
"expression" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1543 ,
2018-05-04 14:04:04 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"leftHandSide" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1541 ,
2018-05-04 14:04:04 +00:00
"name" : "masterCopy" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 1530 ,
"src" : "605:10:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"nodeType" : "Assignment" ,
"operator" : "=" ,
"rightHandSide" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1542 ,
2018-05-04 14:04:04 +00:00
"name" : "_masterCopy" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 1532 ,
"src" : "618:11:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
2018-05-27 11:24:10 +00:00
"src" : "605:24:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
2018-05-27 11:24:10 +00:00
"id" : 1544 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ExpressionStatement" ,
2018-05-27 11:24:10 +00:00
"src" : "605:24:11"
2018-05-04 14:04:04 +00:00
}
]
} ,
2018-05-10 11:12:13 +00:00
"documentation" : "@dev Constructor function sets address of master copy contract.\n @param _masterCopy Master copy address." ,
2018-05-27 11:24:10 +00:00
"id" : 1546 ,
2018-05-04 14:04:04 +00:00
"implemented" : true ,
"isConstructor" : true ,
"isDeclaredConst" : false ,
"modifiers" : [ ] ,
2018-05-10 11:12:13 +00:00
"name" : "" ,
2018-05-04 14:04:04 +00:00
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1533 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-05-27 11:24:10 +00:00
"id" : 1532 ,
2018-05-04 14:04:04 +00:00
"name" : "_masterCopy" ,
"nodeType" : "VariableDeclaration" ,
2018-05-27 11:24:10 +00:00
"scope" : 1546 ,
"src" : "520:19:11" ,
2018-05-04 14:04:04 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
"typeName" : {
2018-05-27 11:24:10 +00:00
"id" : 1531 ,
2018-05-04 14:04:04 +00:00
"name" : "address" ,
"nodeType" : "ElementaryTypeName" ,
2018-05-27 11:24:10 +00:00
"src" : "520:7:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-05-27 11:24:10 +00:00
"src" : "519:21:11"
2018-05-04 14:04:04 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1534 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "560:0:11"
2018-05-04 14:04:04 +00:00
} ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "508:128:11" ,
2018-05-04 14:04:04 +00:00
"stateMutability" : "nonpayable" ,
"superFunction" : null ,
"visibility" : "public"
} ,
{
"body" : {
2018-05-27 11:24:10 +00:00
"id" : 1550 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "Block" ,
2018-05-27 11:24:10 +00:00
"src" : "786:470:11" ,
2018-05-04 14:04:04 +00:00
"statements" : [
{
"externalReferences" : [ ] ,
2018-05-27 11:24:10 +00:00
"id" : 1549 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "InlineAssembly" ,
2018-05-10 11:12:13 +00:00
"operations" : "{\n let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)\n calldatacopy(0, 0, calldatasize())\n let success := delegatecall(gas(), masterCopy, 0, calldatasize(), 0, 0)\n returndatacopy(0, 0, returndatasize())\n if eq(success, 0)\n {\n revert(0, returndatasize())\n }\n return(0, returndatasize())\n}" ,
2018-05-27 11:24:10 +00:00
"src" : "860:396:11"
2018-05-04 14:04:04 +00:00
}
]
} ,
2018-05-10 11:12:13 +00:00
"documentation" : "@dev Fallback function forwards all transactions and returns all received return data." ,
2018-05-27 11:24:10 +00:00
"id" : 1551 ,
2018-05-04 14:04:04 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : false ,
"modifiers" : [ ] ,
"name" : "" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1547 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "746:2:11"
2018-05-04 14:04:04 +00:00
} ,
"payable" : true ,
"returnParameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1548 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "786:0:11"
2018-05-04 14:04:04 +00:00
} ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "737:519:11" ,
2018-05-04 14:04:04 +00:00
"stateMutability" : "payable" ,
"superFunction" : null ,
"visibility" : "external"
2018-05-10 11:12:13 +00:00
} ,
{
"body" : {
2018-05-27 11:24:10 +00:00
"id" : 1558 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "Block" ,
2018-05-27 11:24:10 +00:00
"src" : "1346:34:11" ,
2018-05-10 11:12:13 +00:00
"statements" : [
{
"expression" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1556 ,
2018-05-10 11:12:13 +00:00
"name" : "masterCopy" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 1530 ,
"src" : "1363:10:11" ,
2018-05-10 11:12:13 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
2018-05-27 11:24:10 +00:00
"functionReturnParameters" : 1555 ,
"id" : 1557 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "Return" ,
2018-05-27 11:24:10 +00:00
"src" : "1356:17:11"
2018-05-10 11:12:13 +00:00
}
]
} ,
"documentation" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1559 ,
2018-05-10 11:12:13 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : true ,
"modifiers" : [ ] ,
"name" : "implementation" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1552 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "1285:2:11"
2018-05-10 11:12:13 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1555 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-05-27 11:24:10 +00:00
"id" : 1554 ,
2018-05-10 11:12:13 +00:00
"name" : "" ,
"nodeType" : "VariableDeclaration" ,
2018-05-27 11:24:10 +00:00
"scope" : 1559 ,
"src" : "1333:7:11" ,
2018-05-10 11:12:13 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
"typeName" : {
2018-05-27 11:24:10 +00:00
"id" : 1553 ,
2018-05-10 11:12:13 +00:00
"name" : "address" ,
"nodeType" : "ElementaryTypeName" ,
2018-05-27 11:24:10 +00:00
"src" : "1333:7:11" ,
2018-05-10 11:12:13 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-05-27 11:24:10 +00:00
"src" : "1332:9:11"
2018-05-10 11:12:13 +00:00
} ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "1262:118:11" ,
2018-05-10 11:12:13 +00:00
"stateMutability" : "view" ,
"superFunction" : null ,
"visibility" : "public"
} ,
{
"body" : {
2018-05-27 11:24:10 +00:00
"id" : 1566 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "Block" ,
2018-05-27 11:24:10 +00:00
"src" : "1465:25:11" ,
2018-05-10 11:12:13 +00:00
"statements" : [
{
"expression" : {
"argumentTypes" : null ,
"hexValue" : "32" ,
2018-05-27 11:24:10 +00:00
"id" : 1564 ,
2018-05-10 11:12:13 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : true ,
"kind" : "number" ,
"lValueRequested" : false ,
"nodeType" : "Literal" ,
2018-05-27 11:24:10 +00:00
"src" : "1482:1:11" ,
2018-05-10 11:12:13 +00:00
"subdenomination" : null ,
"typeDescriptions" : {
"typeIdentifier" : "t_rational_2_by_1" ,
"typeString" : "int_const 2"
} ,
"value" : "2"
} ,
2018-05-27 11:24:10 +00:00
"functionReturnParameters" : 1563 ,
"id" : 1565 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "Return" ,
2018-05-27 11:24:10 +00:00
"src" : "1475:8:11"
2018-05-10 11:12:13 +00:00
}
]
} ,
"documentation" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1567 ,
2018-05-10 11:12:13 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : true ,
"modifiers" : [ ] ,
"name" : "proxyType" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1560 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "1404:2:11"
2018-05-10 11:12:13 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1563 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-05-27 11:24:10 +00:00
"id" : 1562 ,
2018-05-10 11:12:13 +00:00
"name" : "" ,
"nodeType" : "VariableDeclaration" ,
2018-05-27 11:24:10 +00:00
"scope" : 1567 ,
"src" : "1452:7:11" ,
2018-05-10 11:12:13 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
} ,
"typeName" : {
2018-05-27 11:24:10 +00:00
"id" : 1561 ,
2018-05-10 11:12:13 +00:00
"name" : "uint256" ,
"nodeType" : "ElementaryTypeName" ,
2018-05-27 11:24:10 +00:00
"src" : "1452:7:11" ,
2018-05-10 11:12:13 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-05-27 11:24:10 +00:00
"src" : "1451:9:11"
2018-05-10 11:12:13 +00:00
} ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "1386:104:11" ,
2018-05-10 11:12:13 +00:00
"stateMutability" : "pure" ,
"superFunction" : null ,
"visibility" : "public"
2018-05-04 14:04:04 +00:00
}
] ,
2018-05-27 11:24:10 +00:00
"scope" : 1569 ,
"src" : "190:1302:11"
2018-05-04 14:04:04 +00:00
}
] ,
2018-05-27 11:24:10 +00:00
"src" : "0:1493:11"
2018-05-04 14:04:04 +00:00
} ,
"legacyAST" : {
"absolutePath" : "/Users/apanizo/git/gnosis/safe-contracts/contracts/Proxy.sol" ,
"exportedSymbols" : {
"Proxy" : [
2018-05-27 11:24:10 +00:00
1568
2018-05-04 14:04:04 +00:00
]
} ,
2018-05-27 11:24:10 +00:00
"id" : 1569 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "SourceUnit" ,
"nodes" : [
{
2018-05-27 11:24:10 +00:00
"id" : 1528 ,
2018-05-04 14:04:04 +00:00
"literals" : [
"solidity" ,
"0.4" ,
2018-05-27 11:24:10 +00:00
".24"
2018-05-04 14:04:04 +00:00
] ,
"nodeType" : "PragmaDirective" ,
2018-05-27 11:24:10 +00:00
"src" : "0:23:11"
2018-05-04 14:04:04 +00:00
} ,
{
"baseContracts" : [ ] ,
"contractDependencies" : [ ] ,
"contractKind" : "contract" ,
"documentation" : "@title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.\n @author Stefan George - <stefan@gnosis.pm>" ,
"fullyImplemented" : true ,
2018-05-27 11:24:10 +00:00
"id" : 1568 ,
2018-05-04 14:04:04 +00:00
"linearizedBaseContracts" : [
2018-05-27 11:24:10 +00:00
1568
2018-05-04 14:04:04 +00:00
] ,
"name" : "Proxy" ,
"nodeType" : "ContractDefinition" ,
"nodes" : [
{
"constant" : false ,
2018-05-27 11:24:10 +00:00
"id" : 1530 ,
2018-05-04 14:04:04 +00:00
"name" : "masterCopy" ,
"nodeType" : "VariableDeclaration" ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "363:18:11" ,
2018-05-04 14:04:04 +00:00
"stateVariable" : true ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
"typeName" : {
2018-05-27 11:24:10 +00:00
"id" : 1529 ,
2018-05-04 14:04:04 +00:00
"name" : "address" ,
"nodeType" : "ElementaryTypeName" ,
2018-05-27 11:24:10 +00:00
"src" : "363:7:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"value" : null ,
"visibility" : "internal"
} ,
{
"body" : {
2018-05-27 11:24:10 +00:00
"id" : 1545 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "Block" ,
2018-05-27 11:24:10 +00:00
"src" : "560:76:11" ,
2018-05-04 14:04:04 +00:00
"statements" : [
{
"expression" : {
"argumentTypes" : null ,
"arguments" : [
{
"argumentTypes" : null ,
"commonType" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
2018-05-27 11:24:10 +00:00
"id" : 1538 ,
2018-05-04 14:04:04 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"leftExpression" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1536 ,
2018-05-04 14:04:04 +00:00
"name" : "_masterCopy" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 1532 ,
"src" : "578:11:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"nodeType" : "BinaryOperation" ,
"operator" : "!=" ,
"rightExpression" : {
"argumentTypes" : null ,
"hexValue" : "30" ,
2018-05-27 11:24:10 +00:00
"id" : 1537 ,
2018-05-04 14:04:04 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : true ,
"kind" : "number" ,
"lValueRequested" : false ,
"nodeType" : "Literal" ,
2018-05-27 11:24:10 +00:00
"src" : "593:1:11" ,
2018-05-04 14:04:04 +00:00
"subdenomination" : null ,
"typeDescriptions" : {
"typeIdentifier" : "t_rational_0_by_1" ,
"typeString" : "int_const 0"
} ,
"value" : "0"
} ,
2018-05-27 11:24:10 +00:00
"src" : "578:16:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_bool" ,
"typeString" : "bool"
}
}
] ,
"expression" : {
"argumentTypes" : [
{
"typeIdentifier" : "t_bool" ,
"typeString" : "bool"
}
] ,
2018-05-27 11:24:10 +00:00
"id" : 1535 ,
2018-05-04 14:04:04 +00:00
"name" : "require" ,
"nodeType" : "Identifier" ,
2018-05-10 11:12:13 +00:00
"overloadedDeclarations" : [
2018-05-27 11:24:10 +00:00
2601 ,
2602
2018-05-10 11:12:13 +00:00
] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 2601 ,
"src" : "570:7:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_function_require_pure$_t_bool_$returns$__$" ,
"typeString" : "function (bool) pure"
}
} ,
2018-05-27 11:24:10 +00:00
"id" : 1539 ,
2018-05-04 14:04:04 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"kind" : "functionCall" ,
"lValueRequested" : false ,
"names" : [ ] ,
"nodeType" : "FunctionCall" ,
2018-05-27 11:24:10 +00:00
"src" : "570:25:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_tuple$__$" ,
"typeString" : "tuple()"
}
} ,
2018-05-27 11:24:10 +00:00
"id" : 1540 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ExpressionStatement" ,
2018-05-27 11:24:10 +00:00
"src" : "570:25:11"
2018-05-04 14:04:04 +00:00
} ,
{
"expression" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1543 ,
2018-05-04 14:04:04 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"leftHandSide" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1541 ,
2018-05-04 14:04:04 +00:00
"name" : "masterCopy" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 1530 ,
"src" : "605:10:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"nodeType" : "Assignment" ,
"operator" : "=" ,
"rightHandSide" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1542 ,
2018-05-04 14:04:04 +00:00
"name" : "_masterCopy" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 1532 ,
"src" : "618:11:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
2018-05-27 11:24:10 +00:00
"src" : "605:24:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
2018-05-27 11:24:10 +00:00
"id" : 1544 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ExpressionStatement" ,
2018-05-27 11:24:10 +00:00
"src" : "605:24:11"
2018-05-04 14:04:04 +00:00
}
]
} ,
2018-05-10 11:12:13 +00:00
"documentation" : "@dev Constructor function sets address of master copy contract.\n @param _masterCopy Master copy address." ,
2018-05-27 11:24:10 +00:00
"id" : 1546 ,
2018-05-04 14:04:04 +00:00
"implemented" : true ,
"isConstructor" : true ,
"isDeclaredConst" : false ,
"modifiers" : [ ] ,
2018-05-10 11:12:13 +00:00
"name" : "" ,
2018-05-04 14:04:04 +00:00
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1533 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-05-27 11:24:10 +00:00
"id" : 1532 ,
2018-05-04 14:04:04 +00:00
"name" : "_masterCopy" ,
"nodeType" : "VariableDeclaration" ,
2018-05-27 11:24:10 +00:00
"scope" : 1546 ,
"src" : "520:19:11" ,
2018-05-04 14:04:04 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
"typeName" : {
2018-05-27 11:24:10 +00:00
"id" : 1531 ,
2018-05-04 14:04:04 +00:00
"name" : "address" ,
"nodeType" : "ElementaryTypeName" ,
2018-05-27 11:24:10 +00:00
"src" : "520:7:11" ,
2018-05-04 14:04:04 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-05-27 11:24:10 +00:00
"src" : "519:21:11"
2018-05-04 14:04:04 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1534 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "560:0:11"
2018-05-04 14:04:04 +00:00
} ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "508:128:11" ,
2018-05-04 14:04:04 +00:00
"stateMutability" : "nonpayable" ,
"superFunction" : null ,
"visibility" : "public"
} ,
{
"body" : {
2018-05-27 11:24:10 +00:00
"id" : 1550 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "Block" ,
2018-05-27 11:24:10 +00:00
"src" : "786:470:11" ,
2018-05-04 14:04:04 +00:00
"statements" : [
{
"externalReferences" : [ ] ,
2018-05-27 11:24:10 +00:00
"id" : 1549 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "InlineAssembly" ,
2018-05-10 11:12:13 +00:00
"operations" : "{\n let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)\n calldatacopy(0, 0, calldatasize())\n let success := delegatecall(gas(), masterCopy, 0, calldatasize(), 0, 0)\n returndatacopy(0, 0, returndatasize())\n if eq(success, 0)\n {\n revert(0, returndatasize())\n }\n return(0, returndatasize())\n}" ,
2018-05-27 11:24:10 +00:00
"src" : "860:396:11"
2018-05-04 14:04:04 +00:00
}
]
} ,
2018-05-10 11:12:13 +00:00
"documentation" : "@dev Fallback function forwards all transactions and returns all received return data." ,
2018-05-27 11:24:10 +00:00
"id" : 1551 ,
2018-05-04 14:04:04 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : false ,
"modifiers" : [ ] ,
"name" : "" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1547 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "746:2:11"
2018-05-04 14:04:04 +00:00
} ,
"payable" : true ,
"returnParameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1548 ,
2018-05-04 14:04:04 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "786:0:11"
2018-05-04 14:04:04 +00:00
} ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "737:519:11" ,
2018-05-04 14:04:04 +00:00
"stateMutability" : "payable" ,
"superFunction" : null ,
"visibility" : "external"
2018-05-10 11:12:13 +00:00
} ,
{
"body" : {
2018-05-27 11:24:10 +00:00
"id" : 1558 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "Block" ,
2018-05-27 11:24:10 +00:00
"src" : "1346:34:11" ,
2018-05-10 11:12:13 +00:00
"statements" : [
{
"expression" : {
"argumentTypes" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1556 ,
2018-05-10 11:12:13 +00:00
"name" : "masterCopy" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-05-27 11:24:10 +00:00
"referencedDeclaration" : 1530 ,
"src" : "1363:10:11" ,
2018-05-10 11:12:13 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
2018-05-27 11:24:10 +00:00
"functionReturnParameters" : 1555 ,
"id" : 1557 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "Return" ,
2018-05-27 11:24:10 +00:00
"src" : "1356:17:11"
2018-05-10 11:12:13 +00:00
}
]
} ,
"documentation" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1559 ,
2018-05-10 11:12:13 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : true ,
"modifiers" : [ ] ,
"name" : "implementation" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1552 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "1285:2:11"
2018-05-10 11:12:13 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1555 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-05-27 11:24:10 +00:00
"id" : 1554 ,
2018-05-10 11:12:13 +00:00
"name" : "" ,
"nodeType" : "VariableDeclaration" ,
2018-05-27 11:24:10 +00:00
"scope" : 1559 ,
"src" : "1333:7:11" ,
2018-05-10 11:12:13 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
"typeName" : {
2018-05-27 11:24:10 +00:00
"id" : 1553 ,
2018-05-10 11:12:13 +00:00
"name" : "address" ,
"nodeType" : "ElementaryTypeName" ,
2018-05-27 11:24:10 +00:00
"src" : "1333:7:11" ,
2018-05-10 11:12:13 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-05-27 11:24:10 +00:00
"src" : "1332:9:11"
2018-05-10 11:12:13 +00:00
} ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "1262:118:11" ,
2018-05-10 11:12:13 +00:00
"stateMutability" : "view" ,
"superFunction" : null ,
"visibility" : "public"
} ,
{
"body" : {
2018-05-27 11:24:10 +00:00
"id" : 1566 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "Block" ,
2018-05-27 11:24:10 +00:00
"src" : "1465:25:11" ,
2018-05-10 11:12:13 +00:00
"statements" : [
{
"expression" : {
"argumentTypes" : null ,
"hexValue" : "32" ,
2018-05-27 11:24:10 +00:00
"id" : 1564 ,
2018-05-10 11:12:13 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : true ,
"kind" : "number" ,
"lValueRequested" : false ,
"nodeType" : "Literal" ,
2018-05-27 11:24:10 +00:00
"src" : "1482:1:11" ,
2018-05-10 11:12:13 +00:00
"subdenomination" : null ,
"typeDescriptions" : {
"typeIdentifier" : "t_rational_2_by_1" ,
"typeString" : "int_const 2"
} ,
"value" : "2"
} ,
2018-05-27 11:24:10 +00:00
"functionReturnParameters" : 1563 ,
"id" : 1565 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "Return" ,
2018-05-27 11:24:10 +00:00
"src" : "1475:8:11"
2018-05-10 11:12:13 +00:00
}
]
} ,
"documentation" : null ,
2018-05-27 11:24:10 +00:00
"id" : 1567 ,
2018-05-10 11:12:13 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : true ,
"modifiers" : [ ] ,
"name" : "proxyType" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1560 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-05-27 11:24:10 +00:00
"src" : "1404:2:11"
2018-05-10 11:12:13 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-05-27 11:24:10 +00:00
"id" : 1563 ,
2018-05-10 11:12:13 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-05-27 11:24:10 +00:00
"id" : 1562 ,
2018-05-10 11:12:13 +00:00
"name" : "" ,
"nodeType" : "VariableDeclaration" ,
2018-05-27 11:24:10 +00:00
"scope" : 1567 ,
"src" : "1452:7:11" ,
2018-05-10 11:12:13 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
} ,
"typeName" : {
2018-05-27 11:24:10 +00:00
"id" : 1561 ,
2018-05-10 11:12:13 +00:00
"name" : "uint256" ,
"nodeType" : "ElementaryTypeName" ,
2018-05-27 11:24:10 +00:00
"src" : "1452:7:11" ,
2018-05-10 11:12:13 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-05-27 11:24:10 +00:00
"src" : "1451:9:11"
2018-05-10 11:12:13 +00:00
} ,
2018-05-27 11:24:10 +00:00
"scope" : 1568 ,
"src" : "1386:104:11" ,
2018-05-10 11:12:13 +00:00
"stateMutability" : "pure" ,
"superFunction" : null ,
"visibility" : "public"
2018-05-04 14:04:04 +00:00
}
] ,
2018-05-27 11:24:10 +00:00
"scope" : 1569 ,
"src" : "190:1302:11"
2018-05-04 14:04:04 +00:00
}
] ,
2018-05-27 11:24:10 +00:00
"src" : "0:1493:11"
2018-05-04 14:04:04 +00:00
} ,
"compiler" : {
"name" : "solc" ,
2018-05-27 11:24:10 +00:00
"version" : "0.4.24+commit.e67f0147.Emscripten.clang"
2018-05-04 14:04:04 +00:00
} ,
"networks" : { } ,
"schemaVersion" : "2.0.0" ,
2018-05-27 11:24:10 +00:00
"updatedAt" : "2018-05-27T11:12:45.583Z"
2018-05-04 14:04:04 +00:00
}