TransactionReceipt

Interface
Receipt of a confirmed Transaction which contains data about the confirmation such as the Block index and the index of the Transaction within the block.
export interface TransactionReceipt { 
  readonly blockIndex: number; 
  readonly blockHash: Hash256String; 
  readonly blockTime: string; 
  readonly transactionIndex: number; 
  readonly transactionHash: Hash256String; 
  readonly globalIndex: BigNumber; 
  readonly confirmations: number; 
} 

Properties

blockIndex
number
Block index of the Transaction for this receipt.
blockHash
Block hash of the Transaction for this receipt.
blockTime
string
Block time of the Transaction for this receipt.
transactionIndex
number
Transaction index of the Transaction within the Block for this receipt.
transactionHash
Hash of the Transaction within the Block for this receipt.
globalIndex
BigNumber
Ordered globally unique index of the transaction.
confirmations
number
Number of Blocks which have confirmed this transaction.
  • @neo-one/client
  • @neo-one/smart-contract
DOCS
InstallationMain ConceptsAdvanced GuidesAPI ReferenceContributing
CHANNELS
GitHubStack OverflowDiscord ChatTwitter
COPYRIGHT © 2021 NEO•ONE