CryptoApis::ListXRPRippleTransactionsByBlockHashRI

Properties

Name Type Description Notes
additional_data String Represents any additional data that may be needed. [optional]
destination_tag Integer [optional]
index Integer Represents the index position of the transaction in the specific block.
mined_in_block_height Integer Represents the hight of the block where this transaction was mined/confirmed for first time. The height is defined as the number of blocks in the blockchain preceding this specific block.
recipients Array<ListXRPRippleTransactionsByBlockHashRIRecipients> Represents an object of addresses that receive the transactions.
senders Array<ListXRPRippleTransactionsByBlockHashRISenders> Represents an object of addresses that provide the funds.
sequence Integer Defines the transaction input's sequence as an integer, which is is used when transactions are replaced with newer versions before LockTime.
status String Defines the status of the transaction.
timestamp Integer Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.
transaction_hash String Represents the same as `transactionId` for account-based protocols like Ethereum, while it could be different in UTXO-based protocols like Bitcoin. E.g., in UTXO-based protocols `hash` is different from `transactionId` for SegWit transactions.
type String Defines the type of the transaction.
fee ListXRPRippleTransactionsByBlockHashRIFee
offer ListXRPRippleTransactionsByBlockHashRIOffer
receive ListXRPRippleTransactionsByBlockHashRIReceive
value ListXRPRippleTransactionsByBlockHashRIValue

Example

require 'crypto_apis'

instance = CryptoApis::ListXRPRippleTransactionsByBlockHashRI.new(
  additional_data: r4CmvbkDWGt9AZmkfuubmiSdsxGZFxAKBY,
  destination_tag: 3999472835,
  index: 3,
  mined_in_block_height: 15971358,
  recipients: null,
  senders: null,
  sequence: 32568,
  status: tesSUCCESS,
  timestamp: 236589,
  transaction_hash: ba3bc1337071c8e73b441fe12a1911f4365d7ea82cace7c8ecba3ee9f364978b,
  type: Payment,
  fee: null,
  offer: null,
  receive: null,
  value: null
)