RawExecutionData

Interface
export interface RawExecutionData { 
  readonly trigger: TriggerTypeJSON; 
  readonly vmState: 'HALT' | 'FAULT'; 
  readonly exception?: string; 
  readonly gasConsumed: BigNumber; 
  readonly stack: readonly ContractParameter[] | string; 
  readonly notifications: readonly RawVMNotification[]; 
  readonly logs: readonly RawVMLog[]; 
} 

Properties

trigger
TriggerTypeJSON
The Transaction's trigger type.
vmState
'HALT' | 'FAULT'
The Transaction script's resultant VM state.
exception
string
The exception message if FAULT result.
gasConsumed
BigNumber
The GAS consumed by the Transaction's script execution.
stack
readonly ContractParameter[] | string
The resulting stack from Transaction's script execution or the error that resulted.
notifications
readonly RawVMNotification[]
The Notifications that came from the Transaction's script execution.
logs
readonly RawVMLog[]
The Logs that came from the Transaction's script execution.
  • @neo-one/client
  • @neo-one/smart-contract
DOCS
InstallationMain ConceptsAdvanced GuidesAPI ReferenceContributing
CHANNELS
GitHubStack OverflowDiscord ChatTwitterYouTube
COPYRIGHT © 2021 NEO•ONE