UNPKG

@transia/xrpl

Version:

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

21 lines (19 loc) 527 B
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry' /** * * * @category Ledger Entries */ export default interface ContractData extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'ContractData' /** The owner node for this contract data. */ OwnerNode: string /** The account that owns this contract data. */ Owner: string /** The account associated with this contract. */ ContractAccount: string /** The JSON data for the contract. */ ContractJson: Record<string, any> }