智能合约更新启动builder模式

bool public builderMode = false;
string public status = “idle”;

event NewWeekStarted();

function mondayBoot() public {
emit NewWeekStarted();
builderMode = true;
status = “building”;
}