@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
13 lines • 412 B
TypeScript
import { BaseTransaction, Account } from './common';
export interface Permission {
Permission: {
PermissionValue: string;
};
}
export interface DelegateSet extends BaseTransaction {
TransactionType: 'DelegateSet';
Authorize: Account;
Permissions: Permission[];
}
export declare function validateDelegateSet(tx: Record<string, unknown>): void;
//# sourceMappingURL=delegateSet.d.ts.map