mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-12-06 17:27:59 +00:00
103 lines
1.9 KiB
TypeScript
103 lines
1.9 KiB
TypeScript
export type LedgerIndex = number | ('validated' | 'closed' | 'current')
|
|
|
|
export type AccountObjectType =
|
|
| 'check'
|
|
| 'escrow'
|
|
| 'offer'
|
|
| 'payment_channel'
|
|
| 'signer_list'
|
|
| 'state'
|
|
|
|
interface XRP {
|
|
currency: 'XRP'
|
|
}
|
|
|
|
interface IssuedCurrency {
|
|
currency: string
|
|
issuer: string
|
|
}
|
|
|
|
export type Currency = IssuedCurrency | XRP
|
|
|
|
export interface IssuedCurrencyAmount extends IssuedCurrency {
|
|
value: string
|
|
}
|
|
|
|
export type Amount = IssuedCurrencyAmount | string
|
|
|
|
export interface Signer {
|
|
Signer: {
|
|
Account: string
|
|
TxnSignature: string
|
|
SigningPubKey: string
|
|
}
|
|
}
|
|
|
|
export interface Memo {
|
|
Memo: {
|
|
MemoData?: string
|
|
MemoType?: string
|
|
MemoFormat?: string
|
|
}
|
|
}
|
|
|
|
export type StreamType =
|
|
| 'consensus'
|
|
| 'ledger'
|
|
| 'manifests'
|
|
| 'peer_status'
|
|
| 'transactions'
|
|
| 'transactions_proposed'
|
|
| 'server'
|
|
| 'validations'
|
|
|
|
interface PathStep {
|
|
account?: string
|
|
currency?: string
|
|
issuer?: string
|
|
}
|
|
|
|
export type Path = PathStep[]
|
|
|
|
export interface SignerEntry {
|
|
SignerEntry: {
|
|
Account: string
|
|
SignerWeight: number
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This information is added to Transactions in request responses, but is not part
|
|
* of the canonical Transaction information on ledger. These fields are denoted with
|
|
* lowercase letters to indicate this in the rippled responses.
|
|
*/
|
|
export interface ResponseOnlyTxInfo {
|
|
/**
|
|
* The date/time when this transaction was included in a validated ledger.
|
|
*/
|
|
date?: number
|
|
/**
|
|
* An identifying hash value unique to this transaction, as a hex string.
|
|
*/
|
|
hash?: string
|
|
/**
|
|
* The sequence number of the ledger that included this transaction.
|
|
*/
|
|
ledger_index?: number
|
|
}
|
|
|
|
/**
|
|
* One offer that might be returned from either an {@link NFTBuyOffersRequest}
|
|
* or an {@link NFTSellOffersRequest}.
|
|
*
|
|
* @category Responses
|
|
*/
|
|
export interface NFTOffer {
|
|
amount: Amount
|
|
flags: number
|
|
index: string
|
|
owner: string
|
|
destination?: string
|
|
expiration?: number
|
|
}
|