@transia/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
13 lines • 467 B
TypeScript
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry';
import { InstanceParameterValue } from '../common';
export default interface Contract extends BaseLedgerEntry, HasPreviousTxnID {
LedgerEntryType: 'Contract';
Sequence: number;
OwnerNode: string;
Owner: string;
ContractAccount: string;
ContractHash: string;
InstanceParameterValues?: InstanceParameterValue[];
URI?: string;
}
//# sourceMappingURL=Contract.d.ts.map