• Finds all mission pools associated with a specific HoneycombProject.

    Parameters

    • project: HoneycombProject

      The HoneycombProject instance to search for mission pools.

    Returns Promise<Honeycomb>

    The updated Honeycomb instance with mission pools added.

    Example

    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