Type alias BatchDidCreationParams

BatchDidCreationParams: {
    codec?: Codec;
    pubkeys: Uint8Array[];
} & BaseDidCreationParams

The parameters required to create multiple DIDs in batch using a two step process of a commitment transaction and a reveal transaction with public key material in the witness.

Type declaration

  • Optional codec?: Codec

    The codec indicating the key type of the provided public keys. This defaults to ed25519.

  • pubkeys: Uint8Array[]

    The public keys to be used for the initial verification methods for the DIDs. These are byte arrays that each contain a public key, all of the same length and key type.