UNPKG

@radixdlt/application

Version:

A JavaScript client library for interacting with the Radix Distributed Ledger.

13 lines 497 B
/// <reference types="node" /> import { Result } from 'neverthrow'; import { TransactionIdentifierT } from './_types'; export declare const TransactionIdentifier: { is: (something: unknown) => something is Readonly<{ __witness: "isTXId"; __hex: string; toString: () => string; equals: (other: Readonly<any>) => boolean; }>; create: (bytes: Buffer | string) => Result<TransactionIdentifierT, Error>; }; //# sourceMappingURL=transactionIdentifier.d.ts.map