2018-05-31 13:01:02 +00:00
{
"contractName" : "CreateAndAddModules" ,
"abi" : [
{
"constant" : false ,
"inputs" : [
{
"name" : "module" ,
"type" : "address"
}
] ,
"name" : "enableModule" ,
"outputs" : [ ] ,
"payable" : false ,
"stateMutability" : "nonpayable" ,
"type" : "function"
} ,
{
"constant" : false ,
"inputs" : [
{
"name" : "proxyFactory" ,
"type" : "address"
} ,
{
"name" : "data" ,
"type" : "bytes"
}
] ,
"name" : "createAndAddModules" ,
"outputs" : [ ] ,
"payable" : false ,
"stateMutability" : "nonpayable" ,
"type" : "function"
}
] ,
2018-06-20 08:09:14 +00:00
"bytecode" : "0x608060405234801561001057600080fd5b50610275806100206000396000f30060806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806360df7f5814610051578063610b5925146100da575b600080fd5b34801561005d57600080fd5b506100d8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919291929050505061011d565b005b3480156100e657600080fd5b5061011b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610244565b005b600080600083519250600090505b8281101561023d5780840160200151818501604001604051600060208285858c5af4141561015857600080fd5b73ffffffffffffffffffffffffffffffffffffffff8151169450602080601f85010402602001840193505050503073ffffffffffffffffffffffffffffffffffffffff1663610b5925836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561022057600080fd5b505af1158015610234573d6000803e3d6000fd5b5050505061012b565b5050505050565b600080fd00a165627a7a7230582057d5a08ea9098bcaf70b44e6f52a22772fc87649049797162acff984c02e83a40029" ,
"deployedBytecode" : "0x60806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806360df7f5814610051578063610b5925146100da575b600080fd5b34801561005d57600080fd5b506100d8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919291929050505061011d565b005b3480156100e657600080fd5b5061011b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610244565b005b600080600083519250600090505b8281101561023d5780840160200151818501604001604051600060208285858c5af4141561015857600080fd5b73ffffffffffffffffffffffffffffffffffffffff8151169450602080601f85010402602001840193505050503073ffffffffffffffffffffffffffffffffffffffff1663610b5925836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561022057600080fd5b505af1158015610234573d6000803e3d6000fd5b5050505061012b565b5050505050565b600080fd00a165627a7a7230582057d5a08ea9098bcaf70b44e6f52a22772fc87649049797162acff984c02e83a40029" ,
"sourceMap" : "245:1457:16:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;245:1457:16;;;;;;;" ,
"deployedSourceMap" : "245:1457:16:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815:885;;8:9:-1;5:2;;;30:1;27;20:12;5:2;815:885:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;405:81:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;815:885;907:14;945:13;968:9;924:4;:11;907:28;;980:1;968:13;;991:703;1002:6;998:1;:10;991:703;;;1170:1;1164:4;1160:12;1154:4;1150:23;1144:30;1230:1;1224:4;1220:12;1214:4;1210:23;1271:4;1265:11;1378:1;1371:4;1363:6;1344:17;1331:11;1317:12;1312:3;1299:77;1296:84;1293:2;;;1393:1;1390;1383:12;1293:2;1443:42;1434:6;1428:13;1424:62;1414:72;;1624:4;1617;1610;1591:17;1587:28;1583:39;1579:50;1573:4;1569:61;1566:1;1562:69;1557:74;;1101:544;;;1658:4;:17;;;1676:6;1658:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1658:25:16;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1658:25:16;;;;991:703;;;815:885;;;;;:::o;405:81::-;471:8;;" ,
2018-05-31 13:01:02 +00:00
"source" : "pragma solidity 0.4.24;\nimport \"../Module.sol\";\n\n\n/// @title Create and Add Modules - Allows to create and add multiple module in one transaction.\n/// @author Stefan George - <stefan@gnosis.pm>\n/// @author Richard Meissner - <richard@gnosis.pm>\ncontract CreateAndAddModules {\n\n /// @dev Function required to compile contract. Gnosis Safe function is called instead.\n /// @param module Not used.\n function enableModule(Module module)\n public\n {\n revert();\n }\n\n /// @dev Allows to create and add multiple module in one transaction.\n /// @param proxyFactory Module proxy factory contract.\n /// @param data Modules constructor payload. This is the data for each proxy factory call concatinated. (e.g. <byte_array_len_1><byte_array_data_1><byte_array_len_2><byte_array_data_2>)\n function createAndAddModules(address proxyFactory, bytes data)\n public\n {\n uint256 length = data.length;\n Module module;\n uint256 i = 0;\n while (i < length) {\n // solium-disable-next-line security/no-inline-assembly\n assembly {\n let createBytesLength := mload(add(0x20, add(data, i)))\n let createBytes := add(0x40, add(data, i))\n\n let output := mload(0x40)\n if eq(delegatecall(gas, proxyFactory, createBytes, createBytesLength, output, 0x20), 0) { revert(0, 0) }\n module := and(mload(output), 0xffffffffffffffffffffffffffffffffffffffff)\n\n // Data is always padded to 32 bytes\n i := add(i, add(0x20, mul(div(add(createBytesLength, 0x1f), 0x20), 0x20)))\n }\n this.enableModule(module);\n }\n }\n}\n" ,
"sourcePath" : "/Users/apanizo/git/gnosis/safe-contracts/contracts/libraries/CreateAndAddModules.sol" ,
"ast" : {
"absolutePath" : "/Users/apanizo/git/gnosis/safe-contracts/contracts/libraries/CreateAndAddModules.sol" ,
"exportedSymbols" : {
"CreateAndAddModules" : [
2018-06-20 08:09:14 +00:00
1830
2018-05-31 13:01:02 +00:00
]
} ,
2018-06-20 08:09:14 +00:00
"id" : 1831 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "SourceUnit" ,
"nodes" : [
{
2018-06-20 08:09:14 +00:00
"id" : 1787 ,
2018-05-31 13:01:02 +00:00
"literals" : [
"solidity" ,
"0.4" ,
".24"
] ,
"nodeType" : "PragmaDirective" ,
2018-06-20 08:09:14 +00:00
"src" : "0:23:16"
2018-05-31 13:01:02 +00:00
} ,
{
"absolutePath" : "/Users/apanizo/git/gnosis/safe-contracts/contracts/Module.sol" ,
"file" : "../Module.sol" ,
2018-06-20 08:09:14 +00:00
"id" : 1788 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ImportDirective" ,
2018-06-20 08:09:14 +00:00
"scope" : 1831 ,
"sourceUnit" : 733 ,
"src" : "24:23:16" ,
2018-05-31 13:01:02 +00:00
"symbolAliases" : [ ] ,
"unitAlias" : ""
} ,
{
"baseContracts" : [ ] ,
"contractDependencies" : [ ] ,
"contractKind" : "contract" ,
"documentation" : "@title Create and Add Modules - Allows to create and add multiple module in one transaction.\n @author Stefan George - <stefan@gnosis.pm>\n @author Richard Meissner - <richard@gnosis.pm>" ,
"fullyImplemented" : true ,
2018-06-20 08:09:14 +00:00
"id" : 1830 ,
2018-05-31 13:01:02 +00:00
"linearizedBaseContracts" : [
2018-06-20 08:09:14 +00:00
1830
2018-05-31 13:01:02 +00:00
] ,
"name" : "CreateAndAddModules" ,
"nodeType" : "ContractDefinition" ,
"nodes" : [
{
"body" : {
2018-06-20 08:09:14 +00:00
"id" : 1796 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "Block" ,
2018-06-20 08:09:14 +00:00
"src" : "461:25:16" ,
2018-05-31 13:01:02 +00:00
"statements" : [
{
"expression" : {
"argumentTypes" : null ,
"arguments" : [ ] ,
"expression" : {
"argumentTypes" : [ ] ,
2018-06-20 08:09:14 +00:00
"id" : 1793 ,
2018-05-31 13:01:02 +00:00
"name" : "revert" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [
2018-06-20 08:09:14 +00:00
2705 ,
2706
2018-05-31 13:01:02 +00:00
] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 2705 ,
"src" : "471:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_function_revert_pure$__$returns$__$" ,
"typeString" : "function () pure"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1794 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"kind" : "functionCall" ,
"lValueRequested" : false ,
"names" : [ ] ,
"nodeType" : "FunctionCall" ,
2018-06-20 08:09:14 +00:00
"src" : "471:8:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_tuple$__$" ,
"typeString" : "tuple()"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1795 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ExpressionStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "471:8:16"
2018-05-31 13:01:02 +00:00
}
]
} ,
"documentation" : "@dev Function required to compile contract. Gnosis Safe function is called instead.\n @param module Not used." ,
2018-06-20 08:09:14 +00:00
"id" : 1797 ,
2018-05-31 13:01:02 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : false ,
"modifiers" : [ ] ,
"name" : "enableModule" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-06-20 08:09:14 +00:00
"id" : 1791 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1790 ,
2018-05-31 13:01:02 +00:00
"name" : "module" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1797 ,
"src" : "427:13:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
} ,
"typeName" : {
"contractScope" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1789 ,
2018-05-31 13:01:02 +00:00
"name" : "Module" ,
"nodeType" : "UserDefinedTypeName" ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 732 ,
"src" : "427:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"src" : "426:15:16"
2018-05-31 13:01:02 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-06-20 08:09:14 +00:00
"id" : 1792 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-06-20 08:09:14 +00:00
"src" : "461:0:16"
2018-05-31 13:01:02 +00:00
} ,
2018-06-20 08:09:14 +00:00
"scope" : 1830 ,
"src" : "405:81:16" ,
2018-05-31 13:01:02 +00:00
"stateMutability" : "nonpayable" ,
"superFunction" : null ,
"visibility" : "public"
} ,
{
"body" : {
2018-06-20 08:09:14 +00:00
"id" : 1828 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "Block" ,
2018-06-20 08:09:14 +00:00
"src" : "897:803:16" ,
2018-05-31 13:01:02 +00:00
"statements" : [
{
"assignments" : [
2018-06-20 08:09:14 +00:00
1805
2018-05-31 13:01:02 +00:00
] ,
"declarations" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1805 ,
2018-05-31 13:01:02 +00:00
"name" : "length" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "907:14:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
} ,
"typeName" : {
2018-06-20 08:09:14 +00:00
"id" : 1804 ,
2018-05-31 13:01:02 +00:00
"name" : "uint256" ,
"nodeType" : "ElementaryTypeName" ,
2018-06-20 08:09:14 +00:00
"src" : "907:7:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"id" : 1808 ,
2018-05-31 13:01:02 +00:00
"initialValue" : {
"argumentTypes" : null ,
"expression" : {
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1806 ,
2018-05-31 13:01:02 +00:00
"name" : "data" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1801 ,
"src" : "924:4:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_bytes_memory_ptr" ,
"typeString" : "bytes memory"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1807 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"memberName" : "length" ,
"nodeType" : "MemberAccess" ,
"referencedDeclaration" : null ,
2018-06-20 08:09:14 +00:00
"src" : "924:11:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"nodeType" : "VariableDeclarationStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "907:28:16"
2018-05-31 13:01:02 +00:00
} ,
{
"assignments" : [ ] ,
"declarations" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1810 ,
2018-05-31 13:01:02 +00:00
"name" : "module" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "945:13:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
} ,
"typeName" : {
"contractScope" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1809 ,
2018-05-31 13:01:02 +00:00
"name" : "Module" ,
"nodeType" : "UserDefinedTypeName" ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 732 ,
"src" : "945:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"id" : 1811 ,
2018-05-31 13:01:02 +00:00
"initialValue" : null ,
"nodeType" : "VariableDeclarationStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "945:13:16"
2018-05-31 13:01:02 +00:00
} ,
{
"assignments" : [
2018-06-20 08:09:14 +00:00
1813
2018-05-31 13:01:02 +00:00
] ,
"declarations" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1813 ,
2018-05-31 13:01:02 +00:00
"name" : "i" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "968:9:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
} ,
"typeName" : {
2018-06-20 08:09:14 +00:00
"id" : 1812 ,
2018-05-31 13:01:02 +00:00
"name" : "uint256" ,
"nodeType" : "ElementaryTypeName" ,
2018-06-20 08:09:14 +00:00
"src" : "968:7:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"id" : 1815 ,
2018-05-31 13:01:02 +00:00
"initialValue" : {
"argumentTypes" : null ,
"hexValue" : "30" ,
2018-06-20 08:09:14 +00:00
"id" : 1814 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : true ,
"kind" : "number" ,
"lValueRequested" : false ,
"nodeType" : "Literal" ,
2018-06-20 08:09:14 +00:00
"src" : "980:1:16" ,
2018-05-31 13:01:02 +00:00
"subdenomination" : null ,
"typeDescriptions" : {
"typeIdentifier" : "t_rational_0_by_1" ,
"typeString" : "int_const 0"
} ,
"value" : "0"
} ,
"nodeType" : "VariableDeclarationStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "968:13:16"
2018-05-31 13:01:02 +00:00
} ,
{
"body" : {
2018-06-20 08:09:14 +00:00
"id" : 1826 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "Block" ,
2018-06-20 08:09:14 +00:00
"src" : "1010:684:16" ,
2018-05-31 13:01:02 +00:00
"statements" : [
{
"externalReferences" : [
{
"module" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1810 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1414:6:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"data" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1801 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1164:4:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"i" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1813 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1170:1:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"data" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1801 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1224:4:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"i" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1813 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1230:1:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"i" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1813 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1557:1:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"proxyFactory" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1799 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1317:12:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"i" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1813 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1566:1:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
}
] ,
2018-06-20 08:09:14 +00:00
"id" : 1819 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "InlineAssembly" ,
"operations" : "{\n let createBytesLength := mload(add(0x20, add(data, i)))\n let createBytes := add(0x40, add(data, i))\n let output := mload(0x40)\n if eq(delegatecall(gas(), proxyFactory, createBytes, createBytesLength, output, 0x20), 0)\n {\n revert(0, 0)\n }\n module := and(mload(output), 0xffffffffffffffffffffffffffffffffffffffff)\n i := add(i, add(0x20, mul(div(add(createBytesLength, 0x1f), 0x20), 0x20)))\n}" ,
2018-06-20 08:09:14 +00:00
"src" : "1092:570:16"
2018-05-31 13:01:02 +00:00
} ,
{
"expression" : {
"argumentTypes" : null ,
"arguments" : [
{
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1823 ,
2018-05-31 13:01:02 +00:00
"name" : "module" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1810 ,
"src" : "1676:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
}
}
] ,
"expression" : {
"argumentTypes" : [
{
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
}
] ,
"expression" : {
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1820 ,
2018-05-31 13:01:02 +00:00
"name" : "this" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 2745 ,
"src" : "1658:4:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_CreateAndAddModules_$1830" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract CreateAndAddModules"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1822 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"memberName" : "enableModule" ,
"nodeType" : "MemberAccess" ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1797 ,
"src" : "1658:17:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_function_external_nonpayable$_t_contract$_Module_$732_$returns$__$" ,
2018-05-31 13:01:02 +00:00
"typeString" : "function (contract Module) external"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1824 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"kind" : "functionCall" ,
"lValueRequested" : false ,
"names" : [ ] ,
"nodeType" : "FunctionCall" ,
2018-06-20 08:09:14 +00:00
"src" : "1658:25:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_tuple$__$" ,
"typeString" : "tuple()"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1825 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ExpressionStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "1658:25:16"
2018-05-31 13:01:02 +00:00
}
]
} ,
"condition" : {
"argumentTypes" : null ,
"commonType" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
} ,
2018-06-20 08:09:14 +00:00
"id" : 1818 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"leftExpression" : {
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1816 ,
2018-05-31 13:01:02 +00:00
"name" : "i" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1813 ,
"src" : "998:1:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"nodeType" : "BinaryOperation" ,
"operator" : "<" ,
"rightExpression" : {
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1817 ,
2018-05-31 13:01:02 +00:00
"name" : "length" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1805 ,
"src" : "1002:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
2018-06-20 08:09:14 +00:00
"src" : "998:10:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_bool" ,
"typeString" : "bool"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1827 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "WhileStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "991:703:16"
2018-05-31 13:01:02 +00:00
}
]
} ,
"documentation" : "@dev Allows to create and add multiple module in one transaction.\n @param proxyFactory Module proxy factory contract.\n @param data Modules constructor payload. This is the data for each proxy factory call concatinated. (e.g. <byte_array_len_1><byte_array_data_1><byte_array_len_2><byte_array_data_2>)" ,
2018-06-20 08:09:14 +00:00
"id" : 1829 ,
2018-05-31 13:01:02 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : false ,
"modifiers" : [ ] ,
"name" : "createAndAddModules" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-06-20 08:09:14 +00:00
"id" : 1802 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1799 ,
2018-05-31 13:01:02 +00:00
"name" : "proxyFactory" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "844:20:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
"typeName" : {
2018-06-20 08:09:14 +00:00
"id" : 1798 ,
2018-05-31 13:01:02 +00:00
"name" : "address" ,
"nodeType" : "ElementaryTypeName" ,
2018-06-20 08:09:14 +00:00
"src" : "844:7:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"value" : null ,
"visibility" : "internal"
} ,
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1801 ,
2018-05-31 13:01:02 +00:00
"name" : "data" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "866:10:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_bytes_memory_ptr" ,
"typeString" : "bytes"
} ,
"typeName" : {
2018-06-20 08:09:14 +00:00
"id" : 1800 ,
2018-05-31 13:01:02 +00:00
"name" : "bytes" ,
"nodeType" : "ElementaryTypeName" ,
2018-06-20 08:09:14 +00:00
"src" : "866:5:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_bytes_storage_ptr" ,
"typeString" : "bytes"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"src" : "843:34:16"
2018-05-31 13:01:02 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-06-20 08:09:14 +00:00
"id" : 1803 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-06-20 08:09:14 +00:00
"src" : "897:0:16"
2018-05-31 13:01:02 +00:00
} ,
2018-06-20 08:09:14 +00:00
"scope" : 1830 ,
"src" : "815:885:16" ,
2018-05-31 13:01:02 +00:00
"stateMutability" : "nonpayable" ,
"superFunction" : null ,
"visibility" : "public"
}
] ,
2018-06-20 08:09:14 +00:00
"scope" : 1831 ,
"src" : "245:1457:16"
2018-05-31 13:01:02 +00:00
}
] ,
2018-06-20 08:09:14 +00:00
"src" : "0:1703:16"
2018-05-31 13:01:02 +00:00
} ,
"legacyAST" : {
"absolutePath" : "/Users/apanizo/git/gnosis/safe-contracts/contracts/libraries/CreateAndAddModules.sol" ,
"exportedSymbols" : {
"CreateAndAddModules" : [
2018-06-20 08:09:14 +00:00
1830
2018-05-31 13:01:02 +00:00
]
} ,
2018-06-20 08:09:14 +00:00
"id" : 1831 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "SourceUnit" ,
"nodes" : [
{
2018-06-20 08:09:14 +00:00
"id" : 1787 ,
2018-05-31 13:01:02 +00:00
"literals" : [
"solidity" ,
"0.4" ,
".24"
] ,
"nodeType" : "PragmaDirective" ,
2018-06-20 08:09:14 +00:00
"src" : "0:23:16"
2018-05-31 13:01:02 +00:00
} ,
{
"absolutePath" : "/Users/apanizo/git/gnosis/safe-contracts/contracts/Module.sol" ,
"file" : "../Module.sol" ,
2018-06-20 08:09:14 +00:00
"id" : 1788 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ImportDirective" ,
2018-06-20 08:09:14 +00:00
"scope" : 1831 ,
"sourceUnit" : 733 ,
"src" : "24:23:16" ,
2018-05-31 13:01:02 +00:00
"symbolAliases" : [ ] ,
"unitAlias" : ""
} ,
{
"baseContracts" : [ ] ,
"contractDependencies" : [ ] ,
"contractKind" : "contract" ,
"documentation" : "@title Create and Add Modules - Allows to create and add multiple module in one transaction.\n @author Stefan George - <stefan@gnosis.pm>\n @author Richard Meissner - <richard@gnosis.pm>" ,
"fullyImplemented" : true ,
2018-06-20 08:09:14 +00:00
"id" : 1830 ,
2018-05-31 13:01:02 +00:00
"linearizedBaseContracts" : [
2018-06-20 08:09:14 +00:00
1830
2018-05-31 13:01:02 +00:00
] ,
"name" : "CreateAndAddModules" ,
"nodeType" : "ContractDefinition" ,
"nodes" : [
{
"body" : {
2018-06-20 08:09:14 +00:00
"id" : 1796 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "Block" ,
2018-06-20 08:09:14 +00:00
"src" : "461:25:16" ,
2018-05-31 13:01:02 +00:00
"statements" : [
{
"expression" : {
"argumentTypes" : null ,
"arguments" : [ ] ,
"expression" : {
"argumentTypes" : [ ] ,
2018-06-20 08:09:14 +00:00
"id" : 1793 ,
2018-05-31 13:01:02 +00:00
"name" : "revert" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [
2018-06-20 08:09:14 +00:00
2705 ,
2706
2018-05-31 13:01:02 +00:00
] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 2705 ,
"src" : "471:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_function_revert_pure$__$returns$__$" ,
"typeString" : "function () pure"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1794 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"kind" : "functionCall" ,
"lValueRequested" : false ,
"names" : [ ] ,
"nodeType" : "FunctionCall" ,
2018-06-20 08:09:14 +00:00
"src" : "471:8:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_tuple$__$" ,
"typeString" : "tuple()"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1795 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ExpressionStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "471:8:16"
2018-05-31 13:01:02 +00:00
}
]
} ,
"documentation" : "@dev Function required to compile contract. Gnosis Safe function is called instead.\n @param module Not used." ,
2018-06-20 08:09:14 +00:00
"id" : 1797 ,
2018-05-31 13:01:02 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : false ,
"modifiers" : [ ] ,
"name" : "enableModule" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-06-20 08:09:14 +00:00
"id" : 1791 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1790 ,
2018-05-31 13:01:02 +00:00
"name" : "module" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1797 ,
"src" : "427:13:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
} ,
"typeName" : {
"contractScope" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1789 ,
2018-05-31 13:01:02 +00:00
"name" : "Module" ,
"nodeType" : "UserDefinedTypeName" ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 732 ,
"src" : "427:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"src" : "426:15:16"
2018-05-31 13:01:02 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-06-20 08:09:14 +00:00
"id" : 1792 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-06-20 08:09:14 +00:00
"src" : "461:0:16"
2018-05-31 13:01:02 +00:00
} ,
2018-06-20 08:09:14 +00:00
"scope" : 1830 ,
"src" : "405:81:16" ,
2018-05-31 13:01:02 +00:00
"stateMutability" : "nonpayable" ,
"superFunction" : null ,
"visibility" : "public"
} ,
{
"body" : {
2018-06-20 08:09:14 +00:00
"id" : 1828 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "Block" ,
2018-06-20 08:09:14 +00:00
"src" : "897:803:16" ,
2018-05-31 13:01:02 +00:00
"statements" : [
{
"assignments" : [
2018-06-20 08:09:14 +00:00
1805
2018-05-31 13:01:02 +00:00
] ,
"declarations" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1805 ,
2018-05-31 13:01:02 +00:00
"name" : "length" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "907:14:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
} ,
"typeName" : {
2018-06-20 08:09:14 +00:00
"id" : 1804 ,
2018-05-31 13:01:02 +00:00
"name" : "uint256" ,
"nodeType" : "ElementaryTypeName" ,
2018-06-20 08:09:14 +00:00
"src" : "907:7:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"id" : 1808 ,
2018-05-31 13:01:02 +00:00
"initialValue" : {
"argumentTypes" : null ,
"expression" : {
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1806 ,
2018-05-31 13:01:02 +00:00
"name" : "data" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1801 ,
"src" : "924:4:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_bytes_memory_ptr" ,
"typeString" : "bytes memory"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1807 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"memberName" : "length" ,
"nodeType" : "MemberAccess" ,
"referencedDeclaration" : null ,
2018-06-20 08:09:14 +00:00
"src" : "924:11:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"nodeType" : "VariableDeclarationStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "907:28:16"
2018-05-31 13:01:02 +00:00
} ,
{
"assignments" : [ ] ,
"declarations" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1810 ,
2018-05-31 13:01:02 +00:00
"name" : "module" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "945:13:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
} ,
"typeName" : {
"contractScope" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1809 ,
2018-05-31 13:01:02 +00:00
"name" : "Module" ,
"nodeType" : "UserDefinedTypeName" ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 732 ,
"src" : "945:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"id" : 1811 ,
2018-05-31 13:01:02 +00:00
"initialValue" : null ,
"nodeType" : "VariableDeclarationStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "945:13:16"
2018-05-31 13:01:02 +00:00
} ,
{
"assignments" : [
2018-06-20 08:09:14 +00:00
1813
2018-05-31 13:01:02 +00:00
] ,
"declarations" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1813 ,
2018-05-31 13:01:02 +00:00
"name" : "i" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "968:9:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
} ,
"typeName" : {
2018-06-20 08:09:14 +00:00
"id" : 1812 ,
2018-05-31 13:01:02 +00:00
"name" : "uint256" ,
"nodeType" : "ElementaryTypeName" ,
2018-06-20 08:09:14 +00:00
"src" : "968:7:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"id" : 1815 ,
2018-05-31 13:01:02 +00:00
"initialValue" : {
"argumentTypes" : null ,
"hexValue" : "30" ,
2018-06-20 08:09:14 +00:00
"id" : 1814 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : true ,
"kind" : "number" ,
"lValueRequested" : false ,
"nodeType" : "Literal" ,
2018-06-20 08:09:14 +00:00
"src" : "980:1:16" ,
2018-05-31 13:01:02 +00:00
"subdenomination" : null ,
"typeDescriptions" : {
"typeIdentifier" : "t_rational_0_by_1" ,
"typeString" : "int_const 0"
} ,
"value" : "0"
} ,
"nodeType" : "VariableDeclarationStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "968:13:16"
2018-05-31 13:01:02 +00:00
} ,
{
"body" : {
2018-06-20 08:09:14 +00:00
"id" : 1826 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "Block" ,
2018-06-20 08:09:14 +00:00
"src" : "1010:684:16" ,
2018-05-31 13:01:02 +00:00
"statements" : [
{
"externalReferences" : [
{
"module" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1810 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1414:6:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"data" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1801 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1164:4:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"i" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1813 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1170:1:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"data" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1801 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1224:4:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"i" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1813 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1230:1:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"i" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1813 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1557:1:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"proxyFactory" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1799 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1317:12:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
} ,
{
"i" : {
2018-06-20 08:09:14 +00:00
"declaration" : 1813 ,
2018-05-31 13:01:02 +00:00
"isOffset" : false ,
"isSlot" : false ,
2018-06-20 08:09:14 +00:00
"src" : "1566:1:16" ,
2018-05-31 13:01:02 +00:00
"valueSize" : 1
}
}
] ,
2018-06-20 08:09:14 +00:00
"id" : 1819 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "InlineAssembly" ,
"operations" : "{\n let createBytesLength := mload(add(0x20, add(data, i)))\n let createBytes := add(0x40, add(data, i))\n let output := mload(0x40)\n if eq(delegatecall(gas(), proxyFactory, createBytes, createBytesLength, output, 0x20), 0)\n {\n revert(0, 0)\n }\n module := and(mload(output), 0xffffffffffffffffffffffffffffffffffffffff)\n i := add(i, add(0x20, mul(div(add(createBytesLength, 0x1f), 0x20), 0x20)))\n}" ,
2018-06-20 08:09:14 +00:00
"src" : "1092:570:16"
2018-05-31 13:01:02 +00:00
} ,
{
"expression" : {
"argumentTypes" : null ,
"arguments" : [
{
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1823 ,
2018-05-31 13:01:02 +00:00
"name" : "module" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1810 ,
"src" : "1676:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
}
}
] ,
"expression" : {
"argumentTypes" : [
{
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_Module_$732" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract Module"
}
] ,
"expression" : {
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1820 ,
2018-05-31 13:01:02 +00:00
"name" : "this" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 2745 ,
"src" : "1658:4:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_contract$_CreateAndAddModules_$1830" ,
2018-05-31 13:01:02 +00:00
"typeString" : "contract CreateAndAddModules"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1822 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"memberName" : "enableModule" ,
"nodeType" : "MemberAccess" ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1797 ,
"src" : "1658:17:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
2018-06-20 08:09:14 +00:00
"typeIdentifier" : "t_function_external_nonpayable$_t_contract$_Module_$732_$returns$__$" ,
2018-05-31 13:01:02 +00:00
"typeString" : "function (contract Module) external"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1824 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"kind" : "functionCall" ,
"lValueRequested" : false ,
"names" : [ ] ,
"nodeType" : "FunctionCall" ,
2018-06-20 08:09:14 +00:00
"src" : "1658:25:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_tuple$__$" ,
"typeString" : "tuple()"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1825 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ExpressionStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "1658:25:16"
2018-05-31 13:01:02 +00:00
}
]
} ,
"condition" : {
"argumentTypes" : null ,
"commonType" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
} ,
2018-06-20 08:09:14 +00:00
"id" : 1818 ,
2018-05-31 13:01:02 +00:00
"isConstant" : false ,
"isLValue" : false ,
"isPure" : false ,
"lValueRequested" : false ,
"leftExpression" : {
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1816 ,
2018-05-31 13:01:02 +00:00
"name" : "i" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1813 ,
"src" : "998:1:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
"nodeType" : "BinaryOperation" ,
"operator" : "<" ,
"rightExpression" : {
"argumentTypes" : null ,
2018-06-20 08:09:14 +00:00
"id" : 1817 ,
2018-05-31 13:01:02 +00:00
"name" : "length" ,
"nodeType" : "Identifier" ,
"overloadedDeclarations" : [ ] ,
2018-06-20 08:09:14 +00:00
"referencedDeclaration" : 1805 ,
"src" : "1002:6:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_uint256" ,
"typeString" : "uint256"
}
} ,
2018-06-20 08:09:14 +00:00
"src" : "998:10:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_bool" ,
"typeString" : "bool"
}
} ,
2018-06-20 08:09:14 +00:00
"id" : 1827 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "WhileStatement" ,
2018-06-20 08:09:14 +00:00
"src" : "991:703:16"
2018-05-31 13:01:02 +00:00
}
]
} ,
"documentation" : "@dev Allows to create and add multiple module in one transaction.\n @param proxyFactory Module proxy factory contract.\n @param data Modules constructor payload. This is the data for each proxy factory call concatinated. (e.g. <byte_array_len_1><byte_array_data_1><byte_array_len_2><byte_array_data_2>)" ,
2018-06-20 08:09:14 +00:00
"id" : 1829 ,
2018-05-31 13:01:02 +00:00
"implemented" : true ,
"isConstructor" : false ,
"isDeclaredConst" : false ,
"modifiers" : [ ] ,
"name" : "createAndAddModules" ,
"nodeType" : "FunctionDefinition" ,
"parameters" : {
2018-06-20 08:09:14 +00:00
"id" : 1802 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1799 ,
2018-05-31 13:01:02 +00:00
"name" : "proxyFactory" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "844:20:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
} ,
"typeName" : {
2018-06-20 08:09:14 +00:00
"id" : 1798 ,
2018-05-31 13:01:02 +00:00
"name" : "address" ,
"nodeType" : "ElementaryTypeName" ,
2018-06-20 08:09:14 +00:00
"src" : "844:7:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_address" ,
"typeString" : "address"
}
} ,
"value" : null ,
"visibility" : "internal"
} ,
{
"constant" : false ,
2018-06-20 08:09:14 +00:00
"id" : 1801 ,
2018-05-31 13:01:02 +00:00
"name" : "data" ,
"nodeType" : "VariableDeclaration" ,
2018-06-20 08:09:14 +00:00
"scope" : 1829 ,
"src" : "866:10:16" ,
2018-05-31 13:01:02 +00:00
"stateVariable" : false ,
"storageLocation" : "default" ,
"typeDescriptions" : {
"typeIdentifier" : "t_bytes_memory_ptr" ,
"typeString" : "bytes"
} ,
"typeName" : {
2018-06-20 08:09:14 +00:00
"id" : 1800 ,
2018-05-31 13:01:02 +00:00
"name" : "bytes" ,
"nodeType" : "ElementaryTypeName" ,
2018-06-20 08:09:14 +00:00
"src" : "866:5:16" ,
2018-05-31 13:01:02 +00:00
"typeDescriptions" : {
"typeIdentifier" : "t_bytes_storage_ptr" ,
"typeString" : "bytes"
}
} ,
"value" : null ,
"visibility" : "internal"
}
] ,
2018-06-20 08:09:14 +00:00
"src" : "843:34:16"
2018-05-31 13:01:02 +00:00
} ,
"payable" : false ,
"returnParameters" : {
2018-06-20 08:09:14 +00:00
"id" : 1803 ,
2018-05-31 13:01:02 +00:00
"nodeType" : "ParameterList" ,
"parameters" : [ ] ,
2018-06-20 08:09:14 +00:00
"src" : "897:0:16"
2018-05-31 13:01:02 +00:00
} ,
2018-06-20 08:09:14 +00:00
"scope" : 1830 ,
"src" : "815:885:16" ,
2018-05-31 13:01:02 +00:00
"stateMutability" : "nonpayable" ,
"superFunction" : null ,
"visibility" : "public"
}
] ,
2018-06-20 08:09:14 +00:00
"scope" : 1831 ,
"src" : "245:1457:16"
2018-05-31 13:01:02 +00:00
}
] ,
2018-06-20 08:09:14 +00:00
"src" : "0:1703:16"
2018-05-31 13:01:02 +00:00
} ,
"compiler" : {
"name" : "solc" ,
"version" : "0.4.24+commit.e67f0147.Emscripten.clang"
} ,
"networks" : {
2018-06-15 09:08:51 +00:00
"4" : {
"events" : { } ,
"links" : { } ,
2018-06-20 08:09:14 +00:00
"address" : "0x5900bc272839883955dec0c65035561e5b773394" ,
"transactionHash" : "0x237a3ef45930b71459744e5260bf90582967a78a962cf024a554e3c0b0e33157"
2018-06-15 09:08:51 +00:00
} ,
2018-06-20 08:09:14 +00:00
"1529327661534" : {
2018-05-31 13:01:02 +00:00
"events" : { } ,
"links" : { } ,
2018-06-20 08:09:14 +00:00
"address" : "0x819746e02c2fcacc4f288d0a648b8ed04dab5716" ,
"transactionHash" : "0x9c9cae1cef9fdfbb54ebe59b4dc70e223493f0a1d681df7ce06bedcf90e0d37f"
} ,
"1529333415702" : {
"events" : { } ,
"links" : { } ,
"address" : "0xadf257fb7290315d37d6b11ccdbb648a5d3d148f" ,
"transactionHash" : "0x80d74510df045a8b9ff09a084394dfd4eae7b7db3921dd9bde780fa7edf4d076"
2018-06-22 08:44:49 +00:00
} ,
"1529652204341" : {
"events" : { } ,
"links" : { } ,
"address" : "0x8abc460ef144c8a56bee97dc35821f3adff74f3c" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
2018-06-26 11:48:05 +00:00
} ,
"1529931780812" : {
"events" : { } ,
"links" : { } ,
"address" : "0xb3f6404bb7efd44e4ad52288eb037b9bb1efca89" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
} ,
"1529933005377" : {
"events" : { } ,
"links" : { } ,
"address" : "0x9dc5f538dc13663685e223509bd1cfa54c809ced" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
} ,
"1529934931891" : {
"events" : { } ,
"links" : { } ,
"address" : "0xa5068eb18c8de81e2db6f2c4280086410f0add1b" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
} ,
"1529935355957" : {
"events" : { } ,
"links" : { } ,
"address" : "0xafd6055207415c8c3191da0dabc5004782d47917" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
} ,
"1529936204222" : {
"events" : { } ,
"links" : { } ,
"address" : "0xc48852409bfc695d785c99ebe69b301ff8e76523" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
} ,
"1529937280871" : {
"events" : { } ,
"links" : { } ,
"address" : "0x726c8523e946c9d64cb7b10b27c94480a57b6f14" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
} ,
"1529937637076" : {
"events" : { } ,
"links" : { } ,
"address" : "0xbf725058a1fa82e9c9850bbf442be8bf279064e1" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
} ,
"1529937890676" : {
"events" : { } ,
"links" : { } ,
"address" : "0x4b77727cca6579c290b543ae2256a377eeec3778" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
} ,
"1530013596495" : {
"events" : { } ,
"links" : { } ,
"address" : "0x940a33f551e274814b0a768b2c10d5d536c9d2e8" ,
"transactionHash" : "0x7af1e557142bc9cc9bedcfbd550efa8d91bfabefb4cde8f29294155c9465c137"
2018-05-31 13:01:02 +00:00
}
} ,
"schemaVersion" : "2.0.0" ,
2018-06-26 11:48:05 +00:00
"updatedAt" : "2018-06-26T11:47:04.152Z"
2018-05-31 13:01:02 +00:00
}