@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
23 lines • 790 B
TypeScript
import { Amount, XChainBridge } from '../common';
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry';
export default interface XChainOwnedClaimID extends BaseLedgerEntry, HasPreviousTxnID {
LedgerEntryType: 'XChainOwnedClaimID';
Account: string;
XChainBridge: XChainBridge;
XChainClaimID: string;
OtherChainSource: string;
XChainClaimAttestations: Array<{
XChainClaimProofSig: {
Amount: Amount;
AttestationRewardAccount: string;
AttestationSignerAccount: string;
Destination?: string;
PublicKey: string;
WasLockingChainSend: 0 | 1;
};
}>;
SignatureReward: string;
Flags: 0;
OwnerNode: string;
}
//# sourceMappingURL=XChainOwnedClaimID.d.ts.map