Method: Aws::ManagedBlockchainQuery::Types::Transaction#network

Defined in:
lib/aws-sdk-managedblockchainquery/types.rb

#networkString

The blockchain network where the transaction occurred.

Returns:

  • (String)


1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 1247

class Transaction < Struct.new(
  :network,
  :block_hash,
  :transaction_hash,
  :block_number,
  :transaction_timestamp,
  :transaction_index,
  :number_of_transactions,
  :to,
  :from,
  :contract_address,
  :gas_used,
  :cumulative_gas_used,
  :effective_gas_price,
  :signature_v,
  :signature_r,
  :signature_s,
  :transaction_fee,
  :transaction_id,
  :confirmation_status,
  :execution_status)
  SENSITIVE = []
  include Aws::Structure
end