XYO Platform SDK - v3.10.6
    Preparing search index...

    Interface ModuleQueryFunctions

    interface ModuleQueryFunctions {
        manifest: (
            maxDepth?: number,
            ignoreAddresses?: Lowercase<string>[],
        ) => Promisable<ModuleManifestPayload>;
        manifestQuery: (
            account: AccountInstance,
            maxDepth?: number,
            ignoreAddresses?: Lowercase<string>[],
        ) => Promisable<ModuleQueryResult<ModuleManifestPayload>>;
        moduleAddress: () => Promisable<
            (AddressPreviousHashPayload | AddressPayload)[],
        >;
        state: () => Promisable<Payload[]>;
        stateQuery: (account: AccountInstance) => Promisable<ModuleQueryResult>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    manifest: (
        maxDepth?: number,
        ignoreAddresses?: Lowercase<string>[],
    ) => Promisable<ModuleManifestPayload>
    manifestQuery: (
        account: AccountInstance,
        maxDepth?: number,
        ignoreAddresses?: Lowercase<string>[],
    ) => Promisable<ModuleQueryResult<ModuleManifestPayload>>
    moduleAddress: () => Promisable<(AddressPreviousHashPayload | AddressPayload)[]>
    state: () => Promisable<Payload[]>
    stateQuery: (account: AccountInstance) => Promisable<ModuleQueryResult>