{
    "Function": "newParamProposal",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "checkProposal",
        "payFee"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function newParamProposal(uint32 param, string memory typeStr) external returns(uint) {\n        checkProposal(); // If no open proposal; construct new one\n        payFee(); // Pay SPARTA fee for new proposal\n        mapPID_param[currentProposal] = param; // Set the proposed parameter\n        mapPID_type[currentProposal] = typeStr; // Set the proposal type\n        emit NewProposal(msg.sender, currentProposal, typeStr);\n        return currentProposal;\n    }"
}