You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- import { BaseTransaction } from './common';
- export interface PaymentChannelCreate extends BaseTransaction {
- TransactionType: 'PaymentChannelCreate';
- Amount: string;
- Destination: string;
- SettleDelay: number;
- PublicKey: string;
- CancelAfter?: number;
- DestinationTag?: number;
- }
- export declare function validatePaymentChannelCreate(tx: Record<string, unknown>): void;
- //# sourceMappingURL=paymentChannelCreate.d.ts.map
|