ic-reactor
    Preparing search index...
    request: (
        options: {
            canisterId: types.Principal;
            agent: types.HttpAgent;
            paths?:
                | utils.agent.CanisterStatus.Path[]
                | Set<utils.agent.CanisterStatus.Path>;
        },
    ) => Promise<utils.agent.CanisterStatus.StatusMap>

    Request information in the request_status state tree for a given canister. Can be used to request information about the canister's controllers, time, module hash, candid interface, and more.

    Type declaration

    const status = await canisterStatus({
    paths: ['controllers', 'candid'],
    ...options
    });

    const controllers = status.get('controllers');