lethean-utils-js/src/decode/types.ts
2025-06-14 11:38:55 +03:00

11 lines
324 B
TypeScript

export type ZarcanumAddressKeys = {
spendPublicKey: string;
viewPublicKey: string;
};
export type DecodeTransactionResult =
| { ok: true; amount: string; paymentId?: string }
| { ok: false; error: string }
export type DecodeVoutResult =
| { ok: true; amount: bigint }
| { ok: false; error: string }