@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
9 lines • 347 B
TypeScript
import { BaseTransaction } from './common';
export interface CredentialAccept extends BaseTransaction {
TransactionType: 'CredentialAccept';
Account: string;
Issuer: string;
CredentialType: string;
}
export declare function validateCredentialAccept(tx: Record<string, unknown>): void;
//# sourceMappingURL=CredentialAccept.d.ts.map