Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 628 Bytes

tryorama.agentsappsoptions.md

File metadata and controls

21 lines (15 loc) · 628 Bytes

Home > @holochain/tryorama > AgentsAppsOptions

AgentsAppsOptions type

An app and an optional agent pub key for each agent. Optionally a network seed to be used for DNA installation.

Signature:

export type AgentsAppsOptions = {
    agentsApps: Array<{
        app: AppBundleSource;
    } & AppOptions>;
    networkSeed?: string;
    installedAppId?: InstalledAppId;
};

References: AppOptions