Type alias ReceiveTokenEntryResponse

ReceiveTokenEntryResponse: {
    newKeys?: MintKeys;
    proofs: Proof[];
    proofsWithError: Proof[] | undefined;
}

response when after receiving a single TokenEntry

Type declaration

  • Optional newKeys?: MintKeys

    If the mint has rotated keys, this field will be populated with the new keys.

  • proofs: Proof[]

    Received proofs

  • proofsWithError: Proof[] | undefined

    Proofs that could not be received. Doesn't throw an error, but if this field is populated it should be handled by the implementation accordingly

Generated using TypeDoc