The HoneycombProject instance to search for mission pools.
The updated Honeycomb instance with mission pools added.
const project = honeycomb.project("your_project_address");
findProjectMissionPools(project).then((updatedHoneycomb) => {
  // Access the mission pools associated with the project
  const missions = updatedHoneycomb.missions();
  console.log(missions); // Output: An array of NectarMissions instances
});
Generated using TypeDoc
Finds all mission pools associated with a specific
HoneycombProject.