The BaseModule represents Lisk modules by providing a generic interface, from which each module extends from.

Hierarchy

Constructors

Properties

_moduleConfig: {
    maxNumberOfSignatures: number;
}

Type declaration

  • maxNumberOfSignatures: number
_registerMultisignatureCommand: RegisterMultisignatureCommand = ...
commands: RegisterMultisignatureCommand[] = ...
configSchema: {
    $id: string;
    properties: {
        maxNumberOfSignatures: {
            format: string;
            type: string;
        };
    };
    type: string;
} = configSchema

Type declaration

  • $id: string
  • properties: {
        maxNumberOfSignatures: {
            format: string;
            type: string;
        };
    }
    • maxNumberOfSignatures: {
          format: string;
          type: string;
      }
      • format: string
      • type: string
  • type: string
endpoint: AuthEndpoint = ...
events: NamedRegistry = ...
method: AuthMethod = ...
offchainStores: NamedRegistry = ...
stores: NamedRegistry = ...

Accessors

Methods

  • Returns {
        assets: never[];
        commands: {
            name: string;
            params: Schema;
        }[];
        endpoints: never[];
        events: {
            data: Schema;
            name: string;
        }[];
        stores: {
            data: Schema;
            key: string;
        }[];
    }

    • assets: never[]
    • commands: {
          name: string;
          params: Schema;
      }[]
    • endpoints: never[]
    • events: {
          data: Schema;
          name: string;
      }[]
    • stores: {
          data: Schema;
          key: string;
      }[]

Generated using TypeDoc