PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/xrpl/src/models/ledger

Просмотр файла: Offer.ts

import { Amount } from '../common'

import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'

export default interface Offer extends BaseLedgerEntry, HasPreviousTxnID {
  LedgerEntryType: 'Offer'
  /** A bit-map of boolean flags enabled for this Offer. */
  Flags: number
  /** The address of the account that placed this Offer. */
  Account: string
  /**
   * The Sequence value of the OfferCreate transaction that created this Offer
   * object. Used in combination with the Account to identify this Offer.
   */
  Sequence: number
  /** The remaining amount and type of currency requested by the Offer creator. */
  TakerPays: Amount
  /**
   * The remaining amount and type of currency being provided by the Offer
   * creator.
   */
  TakerGets: Amount
  /** The ID of the Offer Directory that links to this Offer. */
  BookDirectory: string
  /**
   * A hint indicating which page of the Offer Directory links to this object,
   * in case the directory consists of multiple pages.
   */
  BookNode: string
  /**
   * A hint indicating which page of the Owner Directory links to this object,
   * in case the directory consists of multiple pages.
   */
  OwnerNode: string
  /** The time this Offer expires, in seconds since the Ripple Epoch. */
  Expiration?: number
}

export enum OfferFlags {
  lsfPassive = 0x00010000,
  lsfSell = 0x00020000,
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!