Returns the list of committed transactions.
The logical name of the network
"{{network}}"
The maximum number of transactions that will be returned.
Requested SBOR formats to include in the response
Requested transaction formats to include in the response
Requested substate formats to include in the response
Whether to include LedgerProofs (default false)
Committed transactions response
An integer between 0
and 10000
, giving the total count of transactions in the returned response
A committed transactions list starting from the from_state_version
(inclusive).
A ledger proof list starting from from_state_version
(inclusive) stored by this node.
const response = await fetch('https://xrd.nownodes.io/core/stream/transactions', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"network": "{{network}}"
}),
});
const data = await response.json();
{
"previous_state_identifiers": {
"state_tree_hash": "text",
"transaction_tree_hash": "text",
"receipt_tree_hash": "text"
},
"transactions": [
{
"resultant_state_identifiers": {
"state_tree_hash": "text",
"transaction_tree_hash": "text",
"receipt_tree_hash": "text"
},
"ledger_transaction": {
"type": "Genesis",
"payload_hex": "text"
},
"receipt": {
"status": "Succeeded",
"fee_summary": {
"xrd_total_execution_cost": "text",
"xrd_total_finalization_cost": "text",
"xrd_total_royalty_cost": "text",
"xrd_total_storage_cost": "text",
"xrd_total_tipping_cost": "text"
},
"costing_parameters": {
"execution_cost_unit_price": "text",
"finalization_cost_unit_price": "text",
"xrd_usd_price": "text",
"xrd_storage_price": "text",
"xrd_archive_storage_price": "text"
},
"fee_source": {
"from_vaults": [
{
"vault_entity": {
"entity_type": "GlobalPackage",
"is_global": false,
"entity_address": "text"
},
"xrd_amount": "text"
}
]
},
"fee_destination": {
"to_proposer": "text",
"to_validator_set": "text",
"to_burn": "text",
"to_royalty_recipients": [
{
"royalty_recipient": {
"entity_type": "GlobalPackage",
"is_global": false,
"entity_address": "text"
},
"xrd_amount": "text"
}
]
},
"state_updates": {
"deleted_partitions": [
{
"entity_type": "GlobalPackage",
"entity_address": "text",
"entity_module": "TypeInfo",
"partition_kind": "Field"
}
],
"created_substates": [
{
"substate_id": {
"entity_type": "GlobalPackage",
"entity_address": "text",
"entity_module": "TypeInfo",
"partition_kind": "Field",
"substate_type": "BootLoaderModuleFieldVmBoot",
"substate_key": {
"key_type": "Field",
"db_sort_key_hex": "text"
}
},
"value": {
"substate_hex": "text",
"substate_data_hash": "text",
"substate_data": {
"substate_type": "BootLoaderModuleFieldVmBoot",
"is_locked": false
}
},
"system_structure": {
"type": "SystemField"
}
}
],
"updated_substates": [
{
"substate_id": {
"entity_type": "GlobalPackage",
"entity_address": "text",
"entity_module": "TypeInfo",
"partition_kind": "Field",
"substate_type": "BootLoaderModuleFieldVmBoot",
"substate_key": {
"key_type": "Field",
"db_sort_key_hex": "text"
}
},
"new_value": {
"substate_hex": "text",
"substate_data_hash": "text",
"substate_data": {
"substate_type": "BootLoaderModuleFieldVmBoot",
"is_locked": false
}
},
"previous_value": {
"substate_hex": "text",
"substate_data_hash": "text",
"substate_data": {
"substate_type": "BootLoaderModuleFieldVmBoot",
"is_locked": false
}
},
"system_structure": {
"type": "SystemField"
}
}
],
"deleted_substates": [
{
"substate_id": {
"entity_type": "GlobalPackage",
"entity_address": "text",
"entity_module": "TypeInfo",
"partition_kind": "Field",
"substate_type": "BootLoaderModuleFieldVmBoot",
"substate_key": {
"key_type": "Field",
"db_sort_key_hex": "text"
}
},
"previous_value": {
"substate_hex": "text",
"substate_data_hash": "text",
"substate_data": {
"substate_type": "BootLoaderModuleFieldVmBoot",
"is_locked": false
}
},
"system_structure": {
"type": "SystemField"
}
}
],
"new_global_entities": [
{
"entity_type": "GlobalPackage",
"is_global": false,
"entity_address": "text"
}
]
},
"events": [
{
"type": {
"emitter": {
"type": "Function"
},
"type_reference": {
"full_type_id": {
"entity_address": "text",
"schema_hash": "text",
"local_type_id": {
"kind": "WellKnown",
"as_sbor": {
"hex": "text"
}
}
}
},
"name": "text"
},
"data": {
"hex": "text"
}
}
],
"next_epoch": {
"validators": [
{
"address": "text",
"key": {
"key_type": "EcdsaSecp256k1",
"key_hex": "text"
},
"stake": "text"
}
],
"significant_protocol_update_readiness": [
{
"readiness_signal_name": "text",
"signalled_stake": "text"
}
]
},
"output": [
{
"hex": "text"
}
],
"error_message": "text"
},
"balance_changes": {
"fungible_entity_balance_changes": [
{
"entity_address": "text",
"fee_balance_change": {
"resource_address": "text",
"balance_change": "text"
},
"fee_balance_changes": [
{
"type": "FeePayment",
"resource_address": "text",
"balance_change": "text"
}
],
"non_fee_balance_changes": [
{
"resource_address": "text",
"balance_change": "text"
}
]
}
],
"non_fungible_entity_balance_changes": [
{
"entity_address": "text",
"resource_address": "text",
"added": [
"text"
],
"removed": [
"text"
]
}
]
}
}
],
"proofs": [
{
"ledger_header": {
"hashes": {
"state_tree_hash": "text",
"transaction_tree_hash": "text",
"receipt_tree_hash": "text"
},
"next_epoch": {
"validators": [
{
"address": "text",
"key": {
"key_type": "EcdsaSecp256k1",
"key_hex": "text"
},
"stake": "text"
}
],
"significant_protocol_update_readiness": [
{
"readiness_signal_name": "text",
"signalled_stake": "text"
}
]
},
"next_protocol_version": "text"
},
"origin": {
"type": "Genesis"
}
}
]
}