safe-react/safe-contracts/build/contracts/CreateAndAddModules.json

1277 lines
54 KiB
JSON
Raw Normal View History

2018-05-16 13:46:33 +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"
}
],
"bytecode": "0x608060405234801561001057600080fd5b50610275806100206000396000f30060806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806360df7f5814610051578063610b5925146100da575b600080fd5b34801561005d57600080fd5b506100d8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919291929050505061011d565b005b3480156100e657600080fd5b5061011b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610244565b005b600080600083519250600090505b8281101561023d5780840160200151818501604001604051600060208285858c5af4141561015857600080fd5b73ffffffffffffffffffffffffffffffffffffffff8151169450602080602085010402602001840193505050503073ffffffffffffffffffffffffffffffffffffffff1663610b5925836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561022057600080fd5b505af1158015610234573d6000803e3d6000fd5b5050505061012b565b5050505050565b600080fd00a165627a7a72305820e1479531e7421914f006918566f778761cf7bfa2673aa10247d2f44d375165410029",
"deployedBytecode": "0x60806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806360df7f5814610051578063610b5925146100da575b600080fd5b34801561005d57600080fd5b506100d8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919291929050505061011d565b005b3480156100e657600080fd5b5061011b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610244565b005b600080600083519250600090505b8281101561023d5780840160200151818501604001604051600060208285858c5af4141561015857600080fd5b73ffffffffffffffffffffffffffffffffffffffff8151169450602080602085010402602001840193505050503073ffffffffffffffffffffffffffffffffffffffff1663610b5925836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561022057600080fd5b505af1158015610234573d6000803e3d6000fd5b5050505061012b565b5050505050565b600080fd00a165627a7a72305820e1479531e7421914f006918566f778761cf7bfa2673aa10247d2f44d375165410029",
"sourceMap": "245:1457:9:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;245:1457:9;;;;;;;",
"deployedSourceMap": "245:1457:9:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815:885;;8:9:-1;5:2;;;30:1;27;20:12;5:2;815:885:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;405:81:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:9;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1658:25:9;;;;991:703;;;815:885;;;;;:::o;405:81::-;471:8;;",
"source": "pragma solidity 0.4.23;\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, 0x20), 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": [
1404
]
},
"id": 1405,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1361,
"literals": [
"solidity",
"0.4",
".23"
],
"nodeType": "PragmaDirective",
"src": "0:23:9"
},
{
"absolutePath": "/Users/apanizo/git/gnosis/safe-contracts/contracts/Module.sol",
"file": "../Module.sol",
"id": 1362,
"nodeType": "ImportDirective",
"scope": 1405,
"sourceUnit": 622,
"src": "24:23:9",
"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,
"id": 1404,
"linearizedBaseContracts": [
1404
],
"name": "CreateAndAddModules",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 1370,
"nodeType": "Block",
"src": "461:25:9",
"statements": [
{
"expression": {
"argumentTypes": null,
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 1367,
"name": "revert",
"nodeType": "Identifier",
"overloadedDeclarations": [
2401,
2402
],
"referencedDeclaration": 2401,
"src": "471:6:9",
"typeDescriptions": {
"typeIdentifier": "t_function_revert_pure$__$returns$__$",
"typeString": "function () pure"
}
},
"id": 1368,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "471:8:9",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 1369,
"nodeType": "ExpressionStatement",
"src": "471:8:9"
}
]
},
"documentation": "@dev Function required to compile contract. Gnosis Safe function is called instead.\n @param module Not used.",
"id": 1371,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "enableModule",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 1365,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 1364,
"name": "module",
"nodeType": "VariableDeclaration",
"scope": 1371,
"src": "427:13:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
},
"typeName": {
"contractScope": null,
"id": 1363,
"name": "Module",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 621,
"src": "427:6:9",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "426:15:9"
},
"payable": false,
"returnParameters": {
"id": 1366,
"nodeType": "ParameterList",
"parameters": [],
"src": "461:0:9"
},
"scope": 1404,
"src": "405:81:9",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": {
"id": 1402,
"nodeType": "Block",
"src": "897:803:9",
"statements": [
{
"assignments": [
1379
],
"declarations": [
{
"constant": false,
"id": 1379,
"name": "length",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "907:14:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 1378,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "907:7:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"id": 1382,
"initialValue": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 1380,
"name": "data",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 1375,
"src": "924:4:9",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
},
"id": 1381,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "length",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "924:11:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "907:28:9"
},
{
"assignments": [],
"declarations": [
{
"constant": false,
"id": 1384,
"name": "module",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "945:13:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
},
"typeName": {
"contractScope": null,
"id": 1383,
"name": "Module",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 621,
"src": "945:6:9",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
}
},
"value": null,
"visibility": "internal"
}
],
"id": 1385,
"initialValue": null,
"nodeType": "VariableDeclarationStatement",
"src": "945:13:9"
},
{
"assignments": [
1387
],
"declarations": [
{
"constant": false,
"id": 1387,
"name": "i",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "968:9:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 1386,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "968:7:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"id": 1389,
"initialValue": {
"argumentTypes": null,
"hexValue": "30",
"id": 1388,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "980:1:9",
"subdenomination": null,
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
},
"nodeType": "VariableDeclarationStatement",
"src": "968:13:9"
},
{
"body": {
"id": 1400,
"nodeType": "Block",
"src": "1010:684:9",
"statements": [
{
"externalReferences": [
{
"module": {
"declaration": 1384,
"isOffset": false,
"isSlot": false,
"src": "1414:6:9",
"valueSize": 1
}
},
{
"data": {
"declaration": 1375,
"isOffset": false,
"isSlot": false,
"src": "1164:4:9",
"valueSize": 1
}
},
{
"i": {
"declaration": 1387,
"isOffset": false,
"isSlot": false,
"src": "1170:1:9",
"valueSize": 1
}
},
{
"data": {
"declaration": 1375,
"isOffset": false,
"isSlot": false,
"src": "1224:4:9",
"valueSize": 1
}
},
{
"i": {
"declaration": 1387,
"isOffset": false,
"isSlot": false,
"src": "1230:1:9",
"valueSize": 1
}
},
{
"i": {
"declaration": 1387,
"isOffset": false,
"isSlot": false,
"src": "1557:1:9",
"valueSize": 1
}
},
{
"proxyFactory": {
"declaration": 1373,
"isOffset": false,
"isSlot": false,
"src": "1317:12:9",
"valueSize": 1
}
},
{
"i": {
"declaration": 1387,
"isOffset": false,
"isSlot": false,
"src": "1566:1:9",
"valueSize": 1
}
}
],
"id": 1393,
"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, 0x20), 0x20), 0x20)))\n}",
"src": "1092:570:9"
},
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"id": 1397,
"name": "module",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 1384,
"src": "1676:6:9",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
}
],
"expression": {
"argumentTypes": null,
"id": 1394,
"name": "this",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 2427,
"src": "1658:4:9",
"typeDescriptions": {
"typeIdentifier": "t_contract$_CreateAndAddModules_$1404",
"typeString": "contract CreateAndAddModules"
}
},
"id": 1396,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "enableModule",
"nodeType": "MemberAccess",
"referencedDeclaration": 1371,
"src": "1658:17:9",
"typeDescriptions": {
"typeIdentifier": "t_function_external_nonpayable$_t_contract$_Module_$621_$returns$__$",
"typeString": "function (contract Module) external"
}
},
"id": 1398,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1658:25:9",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 1399,
"nodeType": "ExpressionStatement",
"src": "1658:25:9"
}
]
},
"condition": {
"argumentTypes": null,
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 1392,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"argumentTypes": null,
"id": 1390,
"name": "i",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 1387,
"src": "998:1:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": "<",
"rightExpression": {
"argumentTypes": null,
"id": 1391,
"name": "length",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 1379,
"src": "1002:6:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "998:10:9",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 1401,
"nodeType": "WhileStatement",
"src": "991:703:9"
}
]
},
"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>)",
"id": 1403,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "createAndAddModules",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 1376,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 1373,
"name": "proxyFactory",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "844:20:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 1372,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "844:7:9",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 1375,
"name": "data",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "866:10:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 1374,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "866:5:9",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "843:34:9"
},
"payable": false,
"returnParameters": {
"id": 1377,
"nodeType": "ParameterList",
"parameters": [],
"src": "897:0:9"
},
"scope": 1404,
"src": "815:885:9",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
}
],
"scope": 1405,
"src": "245:1457:9"
}
],
"src": "0:1703:9"
},
"legacyAST": {
"absolutePath": "/Users/apanizo/git/gnosis/safe-contracts/contracts/libraries/CreateAndAddModules.sol",
"exportedSymbols": {
"CreateAndAddModules": [
1404
]
},
"id": 1405,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1361,
"literals": [
"solidity",
"0.4",
".23"
],
"nodeType": "PragmaDirective",
"src": "0:23:9"
},
{
"absolutePath": "/Users/apanizo/git/gnosis/safe-contracts/contracts/Module.sol",
"file": "../Module.sol",
"id": 1362,
"nodeType": "ImportDirective",
"scope": 1405,
"sourceUnit": 622,
"src": "24:23:9",
"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,
"id": 1404,
"linearizedBaseContracts": [
1404
],
"name": "CreateAndAddModules",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 1370,
"nodeType": "Block",
"src": "461:25:9",
"statements": [
{
"expression": {
"argumentTypes": null,
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 1367,
"name": "revert",
"nodeType": "Identifier",
"overloadedDeclarations": [
2401,
2402
],
"referencedDeclaration": 2401,
"src": "471:6:9",
"typeDescriptions": {
"typeIdentifier": "t_function_revert_pure$__$returns$__$",
"typeString": "function () pure"
}
},
"id": 1368,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "471:8:9",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 1369,
"nodeType": "ExpressionStatement",
"src": "471:8:9"
}
]
},
"documentation": "@dev Function required to compile contract. Gnosis Safe function is called instead.\n @param module Not used.",
"id": 1371,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "enableModule",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 1365,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 1364,
"name": "module",
"nodeType": "VariableDeclaration",
"scope": 1371,
"src": "427:13:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
},
"typeName": {
"contractScope": null,
"id": 1363,
"name": "Module",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 621,
"src": "427:6:9",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "426:15:9"
},
"payable": false,
"returnParameters": {
"id": 1366,
"nodeType": "ParameterList",
"parameters": [],
"src": "461:0:9"
},
"scope": 1404,
"src": "405:81:9",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": {
"id": 1402,
"nodeType": "Block",
"src": "897:803:9",
"statements": [
{
"assignments": [
1379
],
"declarations": [
{
"constant": false,
"id": 1379,
"name": "length",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "907:14:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 1378,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "907:7:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"id": 1382,
"initialValue": {
"argumentTypes": null,
"expression": {
"argumentTypes": null,
"id": 1380,
"name": "data",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 1375,
"src": "924:4:9",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
},
"id": 1381,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "length",
"nodeType": "MemberAccess",
"referencedDeclaration": null,
"src": "924:11:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "907:28:9"
},
{
"assignments": [],
"declarations": [
{
"constant": false,
"id": 1384,
"name": "module",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "945:13:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
},
"typeName": {
"contractScope": null,
"id": 1383,
"name": "Module",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 621,
"src": "945:6:9",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
}
},
"value": null,
"visibility": "internal"
}
],
"id": 1385,
"initialValue": null,
"nodeType": "VariableDeclarationStatement",
"src": "945:13:9"
},
{
"assignments": [
1387
],
"declarations": [
{
"constant": false,
"id": 1387,
"name": "i",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "968:9:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 1386,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "968:7:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"id": 1389,
"initialValue": {
"argumentTypes": null,
"hexValue": "30",
"id": 1388,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "980:1:9",
"subdenomination": null,
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
},
"nodeType": "VariableDeclarationStatement",
"src": "968:13:9"
},
{
"body": {
"id": 1400,
"nodeType": "Block",
"src": "1010:684:9",
"statements": [
{
"externalReferences": [
{
"module": {
"declaration": 1384,
"isOffset": false,
"isSlot": false,
"src": "1414:6:9",
"valueSize": 1
}
},
{
"data": {
"declaration": 1375,
"isOffset": false,
"isSlot": false,
"src": "1164:4:9",
"valueSize": 1
}
},
{
"i": {
"declaration": 1387,
"isOffset": false,
"isSlot": false,
"src": "1170:1:9",
"valueSize": 1
}
},
{
"data": {
"declaration": 1375,
"isOffset": false,
"isSlot": false,
"src": "1224:4:9",
"valueSize": 1
}
},
{
"i": {
"declaration": 1387,
"isOffset": false,
"isSlot": false,
"src": "1230:1:9",
"valueSize": 1
}
},
{
"i": {
"declaration": 1387,
"isOffset": false,
"isSlot": false,
"src": "1557:1:9",
"valueSize": 1
}
},
{
"proxyFactory": {
"declaration": 1373,
"isOffset": false,
"isSlot": false,
"src": "1317:12:9",
"valueSize": 1
}
},
{
"i": {
"declaration": 1387,
"isOffset": false,
"isSlot": false,
"src": "1566:1:9",
"valueSize": 1
}
}
],
"id": 1393,
"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, 0x20), 0x20), 0x20)))\n}",
"src": "1092:570:9"
},
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"id": 1397,
"name": "module",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 1384,
"src": "1676:6:9",
"typeDescriptions": {
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_contract$_Module_$621",
"typeString": "contract Module"
}
],
"expression": {
"argumentTypes": null,
"id": 1394,
"name": "this",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 2427,
"src": "1658:4:9",
"typeDescriptions": {
"typeIdentifier": "t_contract$_CreateAndAddModules_$1404",
"typeString": "contract CreateAndAddModules"
}
},
"id": 1396,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "enableModule",
"nodeType": "MemberAccess",
"referencedDeclaration": 1371,
"src": "1658:17:9",
"typeDescriptions": {
"typeIdentifier": "t_function_external_nonpayable$_t_contract$_Module_$621_$returns$__$",
"typeString": "function (contract Module) external"
}
},
"id": 1398,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1658:25:9",
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 1399,
"nodeType": "ExpressionStatement",
"src": "1658:25:9"
}
]
},
"condition": {
"argumentTypes": null,
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 1392,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"argumentTypes": null,
"id": 1390,
"name": "i",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 1387,
"src": "998:1:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": "<",
"rightExpression": {
"argumentTypes": null,
"id": 1391,
"name": "length",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 1379,
"src": "1002:6:9",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "998:10:9",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 1401,
"nodeType": "WhileStatement",
"src": "991:703:9"
}
]
},
"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>)",
"id": 1403,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "createAndAddModules",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 1376,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 1373,
"name": "proxyFactory",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "844:20:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 1372,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "844:7:9",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 1375,
"name": "data",
"nodeType": "VariableDeclaration",
"scope": 1403,
"src": "866:10:9",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 1374,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "866:5:9",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "843:34:9"
},
"payable": false,
"returnParameters": {
"id": 1377,
"nodeType": "ParameterList",
"parameters": [],
"src": "897:0:9"
},
"scope": 1404,
"src": "815:885:9",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
}
],
"scope": 1405,
"src": "245:1457:9"
}
],
"src": "0:1703:9"
},
"compiler": {
"name": "solc",
"version": "0.4.23+commit.124ca40d.Emscripten.clang"
},
"networks": {
"4": {
"events": {},
"links": {},
"address": "0x824caabb57949792481937b7f2b4bb34d0d54354",
"transactionHash": "0xc8bb172c792293de7e58d6c15e6904606ba0560088570a6b465a439f96c530f8"
},
"1526478212260": {
"events": {},
"links": {},
"address": "0x0dfc419b1f993f1d14459f802c5f4966a50640fe",
"transactionHash": "0x0bb1edef06266204f2710df9365b39aac03e0527a4d9b5b5ca12b7b1fbe888d8"
},
"1526973574996": {
"events": {},
"links": {},
"address": "0x8dc367d2426d12c60633d4b8808f48164f5c9fce",
"transactionHash": "0x0bb1edef06266204f2710df9365b39aac03e0527a4d9b5b5ca12b7b1fbe888d8"
2018-05-16 13:46:33 +00:00
}
},
"schemaVersion": "2.0.0",
"updatedAt": "2018-05-22T07:20:22.992Z"
2018-05-16 13:46:33 +00:00
}