{
    "Function": "newAddressProposal",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "payFee",
        "checkProposal"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function newAddressProposal(address proposedAddress, 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_address[currentProposal] = proposedAddress; // Set the proposed new address\n        mapPID_type[currentProposal] = typeStr; // Set the proposal type\n        emit NewProposal(msg.sender, currentProposal, typeStr);\n        return currentProposal;\n    }"
}