UNPKG

@nextrope/xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

21 lines 788 B
import { XChainBridge } from '../common'; import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export default interface XChainOwnedCreateAccountClaimID extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'XChainOwnedCreateAccountClaimID'; Account: string; XChainBridge: XChainBridge; XChainAccountCreateCount: number; XChainCreateAccountAttestations: Array<{ XChainCreateAccountProofSig: { Amount: string; AttestationRewardAccount: string; AttestationSignerAccount: string; Destination: string; PublicKey: string; WasLockingChainSend: 0 | 1; }; }>; Flags: 0; OwnerNode: string; } //# sourceMappingURL=XChainOwnedCreateAccountClaimID.d.ts.map