Mint<K, M>: {
    getIssuer: (() => Issuer<K, M>);
    mintPayment: ((newAmount: Amount<K>) => Payment<K, M>);
}

Holding a Mint carries the right to issue new digital assets. These assets all have the same kind, which is called a Brand.

Type Parameters

Type declaration