@radixdlt/application
Version:
A JavaScript client library for interacting with the Radix Distributed Ledger.
10 lines • 373 B
TypeScript
import { SigningKeyT, AccountAddressT } from '@radixdlt/account';
import { AccountT } from './_types';
export declare const isAccount: (something: unknown) => something is AccountT;
export declare const Account: {
create: (input: Readonly<{
address: AccountAddressT;
signingKey: SigningKeyT;
}>) => AccountT;
};
//# sourceMappingURL=account.d.ts.map