@cashu/cashu-ts
    Preparing search index...

    Type Alias TokenMetadata

    Metadata for a Cashu token.

    type TokenMetadata = {
        amount: number;
        incompleteProofs: Omit<Proof, "id">[];
        memo?: string;
        mint: string;
        unit: string;
    }
    Index

    Properties

    amount: number

    The amount of the token.

    incompleteProofs: Omit<Proof, "id">[]

    The incomplete proofs of the token.

    memo?: string

    The memo of the token.

    mint: string

    The mint of the token.

    unit: string

    The unit of the token.