Download OpenAPI specification:Download
This API is exposed by the Babylon Radix node to give clients access to the Radix Engine, Mempool and State in the node.
The default configuration is intended for use by node-runners on a private network, and is not intended to be exposed publicly.
Very heavy load may impact the node's function. The node exposes a configuration flag which allows disabling certain endpoints
which may be problematic, but monitoring is advised. This configuration parameter is
api.core.flags.enable_unbounded_endpoints
/ RADIXDLT_CORE_API_FLAGS_ENABLE_UNBOUNDED_ENDPOINTS
.
This API exposes queries against the node's current state (see /lts/state/
or /state/
), and streams of transaction history
(under /lts/stream/
or /stream
).
If you require queries against snapshots of historical ledger state, you may also wish to consider using the Gateway API.
Integrators (such as exchanges) are recommended to use the /lts/
endpoints - they have been designed to be clear
and simple for integrators wishing to create and monitor transactions involving fungible transfers to/from accounts.
All endpoints under /lts/
have high guarantees of forward compatibility in future node versions.
We may add new fields, but existing fields will not be changed. Assuming the integrating code uses a permissive
JSON parser which ignores unknown fields, any additions will not affect existing code.
Other endpoints may be changed with new node versions carrying protocol-updates, although any breaking changes will be flagged clearly in the corresponding release notes.
All responses may have additional fields added, so clients are advised to use JSON parsers which ignore unknown fields on JSON objects.
The following SDKs are currently available for the Core API:
For other languages, you can use a HTTP client of your choice and code the JSON models yourself. You could also consider using an Open API generator, but unless you have experience with battling the gremlins in Open API generators, it may be more trouble than it's worth.
The API is split into 6 sub apis:
/lts/*
) - For long term support/backward compatible endpoints aimed at integrators such as exchanges./status/*
) - For status and configuration details for the node / engine./transaction/*
) - For transaction construction, preview, submission, and monitoring the status of an individual transaction./mempool/*
) - For information on the contents of the node's mempool./state/*
) - For reading the state of entities. At present, we only support reading details from the top of the currently committed ledger./stream/*
) - For reading the committed transactions.Interacting with this API effectively may require knowledge about the Radix Babylon Transaction Model and the State Model.
We share some very high-level details below, but please see the official documentation for more details on this.
User transactions are formed of a core "intent", which is then signed by 0+ signatories, before being notarized. The output is called a notarized payload. It is this notarized transaction payload which is submitted to the network.
For most users, this construction process will generally happen in their Radix Wallet. If you wish to construct transactions programmatically or offline, you will need to integrate the Radix Engine Toolkit into your application for construction and finalization.
Once submitted, a transaction payload can end up being either rejected or committed. Transactions get rejected if they fail to pass certain criteria at the given time. A transaction payload can be marked as a:
A given intent typically is only part of one submitted notarized payload, but it's possible for a notary to notarize and submit multiple payloads for the same intent. The Radix Engine ensures that any intent can only be committed once.
A committed transaction is either committed with an outcome of "Success" or "Failure":
Only committed transactions appear on ledger. The status of rejected transactions can be read at submission time or from the transaction status endpoint - by virtue of a rejection cache on the node. This cache is limited in size, so rejected statuses may no longer be tracked after a period of time.
For a more robust handling of transaction rejections, consider running your own Gateway.
The Radix Engine State Model can be thought of as a forest of state sub-trees. A state sub-tree consists of "entities". These entities have an ID, and 0 or more "substates" at keys underneath them. These substates are typed, and can own other entities, forming a tree of ownership.
Each state sub-tree has a root entity, and a single Bech32M Global Address, with a human-readable-prefix (and prefix byte) matching the root entity type.
As an example, entities include concepts like Components, Packages, Vaults, Resource Managers and Key-Value Stores. Substates under a component include the Component Struct, Component Data, and Access Rules substates.
To construct and submit a transaction using the LTS endpoints:
/lts/transaction/construction
to retrieve the current epoch (according to your node).
Check also that the ledger_clock
is close to the current time - this ensures that the node is synced up./lts/transaction/submit
to submit the transaction/lts/transaction/status
to check the status of the transaction/lts/stream/transaction-outcomes
to look up the outcome of the transaction, from its state versionFor long term support/backward compatible endpoints aimed at integrators such as exchanges.
Returns information necessary to build a transaction
All info needed to build a transaction
Server error
{- "network": "{{network}}"
}
{- "current_epoch": 10000000000,
- "ledger_clock": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
Submits a notarized transaction to the network. Returns whether the transaction submission was already included in the node's mempool.
Transaction Submit Response
Client error
Server error
{- "network": "{{network}}",
- "notarized_transaction_hex": "string",
- "force_recalculate": true
}
{- "duplicate": true
}
Shares the node's knowledge of any payloads associated with the given intent hash. Generally there will be a single payload for a given intent, but it's theoretically possible there may be multiple. This knowledge is summarised into a status for the intent. This summarised status in the response is likely sufficient for most clients.
Transaction status response
Client error
Server error
{- "network": "{{network}}",
- "intent_hash": "string"
}
{- "intent_status": "CommittedSuccess",
- "status_description": "string",
- "committed_state_version": 1,
- "invalid_from_epoch": 10000000000,
- "known_payloads": [
- {
- "payload_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "payload_hash_bech32m": "string",
- "state_version": 1,
- "status": "CommittedSuccess",
- "error_message": "string"
}
]
}
Returns balances for all resources associated with an account
Account all resource balances response
Server error
{- "network": "{{network}}",
- "account_address": "string"
}
{- "state_version": 1,
- "ledger_header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}, - "account_address": "string",
- "fungible_resource_balances": [
- {
- "fungible_resource_address": "string",
- "amount": "string"
}
]
}
Returns balance of a single fungible resource in an account
Account resource balance response
Server error
{- "network": "{{network}}",
- "account_address": "string",
- "resource_address": "string"
}
{- "state_version": 1,
- "ledger_header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}, - "account_address": "string",
- "fungible_resource_balance": {
- "fungible_resource_address": "string",
- "amount": "string"
}
}
Returns deposit behaviour of a single account for multiple resource addresses
Account deposit behaviour response
Server error
{- "network": "{{network}}",
- "account_address": "string",
- "resource_addresses": [
- "string"
], - "badge": {
- "type": "Resource",
- "resource_address": "string"
}
}
{- "state_version": 1,
- "ledger_header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}, - "default_deposit_rule": "Accept",
- "is_badge_authorized_depositor": true,
- "resource_specific_behaviours": {
- "property1": {
- "resource_preference": "Allowed",
- "vault_exists": true,
- "is_xrd": true,
- "allows_try_deposit": true
}, - "property2": {
- "resource_preference": "Allowed",
- "vault_exists": true,
- "is_xrd": true,
- "allows_try_deposit": true
}
}
}
Returns a list of committed transaction outcomes (containing balance changes) from a given state version.
Paged response
Client error
Server error
{- "network": "{{network}}",
- "from_state_version": 1,
- "limit": 0
}
{- "from_state_version": 1,
- "count": 10000,
- "max_ledger_state_version": 1,
- "committed_transaction_outcomes": [
- {
- "state_version": 1,
- "proposer_timestamp_ms": 100000000000000,
- "accumulator_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "user_transaction_identifiers": {
- "intent_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "intent_hash_bech32m": "string",
- "signed_intent_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "signed_intent_hash_bech32m": "string",
- "payload_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "payload_hash_bech32m": "string"
}, - "status": "Success",
- "fungible_entity_balance_changes": [
- {
- "entity_address": "string",
- "fee_balance_change": {
- "resource_address": "string",
- "balance_change": "string"
}, - "fee_balance_changes": [
- {
- "type": "FeePayment",
- "resource_address": "string",
- "balance_change": "string"
}
], - "non_fee_balance_changes": [
- {
- "resource_address": "string",
- "balance_change": "string"
}
]
}
], - "non_fungible_entity_balance_changes": [
- {
- "entity_address": "string",
- "resource_address": "string",
- "added": [
- "string"
], - "removed": [
- "string"
]
}
], - "resultant_account_fungible_balances": [
- {
- "account_address": "string",
- "resultant_balances": [
- {
- "resource_address": "string",
- "resultant_balance": "string"
}
]
}
], - "total_fee": "string"
}
]
}
Returns a list of committed transaction outcomes (containing balance changes) from a given state version, filtered to only transactions which involved the given account.
Paged response
Client error
Server error
{- "network": "{{network}}",
- "account_address": "string",
- "from_state_version": 1,
- "limit": 0
}
{- "from_state_version": 1,
- "count": 10000,
- "max_ledger_state_version": 1,
- "committed_transaction_outcomes": [
- {
- "state_version": 1,
- "proposer_timestamp_ms": 100000000000000,
- "accumulator_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "user_transaction_identifiers": {
- "intent_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "intent_hash_bech32m": "string",
- "signed_intent_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "signed_intent_hash_bech32m": "string",
- "payload_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "payload_hash_bech32m": "string"
}, - "status": "Success",
- "fungible_entity_balance_changes": [
- {
- "entity_address": "string",
- "fee_balance_change": {
- "resource_address": "string",
- "balance_change": "string"
}, - "fee_balance_changes": [
- {
- "type": "FeePayment",
- "resource_address": "string",
- "balance_change": "string"
}
], - "non_fee_balance_changes": [
- {
- "resource_address": "string",
- "balance_change": "string"
}
]
}
], - "non_fungible_entity_balance_changes": [
- {
- "entity_address": "string",
- "resource_address": "string",
- "added": [
- "string"
], - "removed": [
- "string"
]
}
], - "resultant_account_fungible_balances": [
- {
- "account_address": "string",
- "resultant_balances": [
- {
- "resource_address": "string",
- "resultant_balance": "string"
}
]
}
], - "total_fee": "string"
}
]
}
Returns the network configuration of the network the node is connected to.
Network Configuration
Server error
{- "version": {
- "core_version": "string",
- "api_version": "string"
}, - "network": "{{network}}",
- "network_id": 255,
- "network_hrp_suffix": "string",
- "usd_price_in_xrd": "string",
- "address_types": [
- {
- "hrp_prefix": "string",
- "entity_type": "GlobalPackage",
- "address_byte_prefix": 255,
- "address_byte_length": 255
}
], - "well_known_addresses": {
- "xrd": "string",
- "secp256k1_signature_virtual_badge": "string",
- "ed25519_signature_virtual_badge": "string",
- "package_of_direct_caller_virtual_badge": "string",
- "global_caller_virtual_badge": "string",
- "system_transaction_badge": "string",
- "package_owner_badge": "string",
- "validator_owner_badge": "string",
- "account_owner_badge": "string",
- "identity_owner_badge": "string",
- "package_package": "string",
- "resource_package": "string",
- "account_package": "string",
- "identity_package": "string",
- "consensus_manager_package": "string",
- "access_controller_package": "string",
- "transaction_processor_package": "string",
- "metadata_module_package": "string",
- "royalty_module_package": "string",
- "role_assignment_module_package": "string",
- "genesis_helper_package": "string",
- "faucet_package": "string",
- "pool_package": "string",
- "locker_package": "string",
- "consensus_manager": "string",
- "genesis_helper": "string",
- "faucet": "string",
- "transaction_tracker": "string"
}
}
Returns the current state and status of the node's copy of the ledger.
Network Status
Server error
{- "network": "{{network}}"
}
{- "pre_genesis_state_identifier": {
- "state_version": 1,
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "genesis_epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "post_genesis_state_identifier": {
- "state_version": 1,
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "post_genesis_epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "current_state_identifier": {
- "state_version": 1,
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "current_epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "current_protocol_version": "string"
}
Get results of test "Scenarios" executed on this Network. Note: these Scenarios are meant to only be executed on test Networks; on a production Node, the response is expected to be empty.
Scenarios' results
Server error
{- "network": "{{network}}"
}
{- "executed_scenarios": [
- {
- "sequence_number": 1000000,
- "logical_name": "string",
- "committed_transactions": [
- {
- "logical_name": "string",
- "state_version": 1,
- "intent_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "intent_hash_bech32m": "string"
}
], - "addresses": {
- "property1": "string",
- "property2": "string"
}
}
]
}
For transaction construction, preview, submission, and monitoring the status of an individual transaction.
Extracts the contents and hashes of various types of transaction payloads, or sub-payloads.
Transaction Parse Response
Client error
Server error
{- "network": "{{network}}",
- "payload_hex": "string",
- "parse_mode": "Any",
- "validation_mode": "None",
- "response_mode": "Basic",
- "transaction_format_options": {
- "manifest": true,
- "blobs": true,
- "message": true,
- "balance_changes": true,
- "raw_system_transaction": true,
- "raw_notarized_transaction": true,
- "raw_ledger_transaction": true
}
}
{- "parsed": {
- "type": "NotarizedTransaction"
}
}
Submits a notarized transaction to the network. Returns whether the transaction submission was already included in the node's mempool.
Transaction Submit Response
Client error
Server error
{- "network": "{{network}}",
- "notarized_transaction_hex": "string",
- "force_recalculate": true
}
{- "duplicate": true
}
Shares the node's knowledge of any payloads associated with the given intent hash. Generally there will be a single payload for a given intent, but it's theoretically possible there may be multiple. This knowledge is summarised into a status for the intent. This summarised status in the response is likely sufficient for most clients.
Transaction status response
Client error
Server error
{- "network": "{{network}}",
- "intent_hash": "string"
}
{- "intent_status": "CommittedSuccess",
- "status_description": "string",
- "invalid_from_epoch": 10000000000,
- "known_payloads": [
- {
- "payload_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "payload_hash_bech32m": "string",
- "state_version": 1,
- "status": "CommittedSuccess",
- "error_message": "string"
}
]
}
Gets the transaction receipt for a committed transaction.
Committed transaction found response
Client error
Committed transaction not found response
Server error
{- "network": "{{network}}",
- "intent_hash": "string",
- "transaction_format_options": {
- "manifest": true,
- "blobs": true,
- "message": true,
- "balance_changes": true,
- "raw_system_transaction": true,
- "raw_notarized_transaction": true,
- "raw_ledger_transaction": true
}
}
{- "committed": {
- "resultant_state_identifiers": {
- "state_version": 1,
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "ledger_transaction": {
- "type": "Genesis",
- "payload_hex": "string"
}, - "receipt": {
- "status": "Succeeded",
- "fee_summary": {
- "execution_cost_units_consumed": 4294967295,
- "finalization_cost_units_consumed": 4294967295,
- "xrd_total_execution_cost": "string",
- "xrd_total_finalization_cost": "string",
- "xrd_total_royalty_cost": "string",
- "xrd_total_storage_cost": "string",
- "xrd_total_tipping_cost": "string"
}, - "costing_parameters": {
- "execution_cost_unit_price": "string",
- "execution_cost_unit_limit": 4294967295,
- "execution_cost_unit_loan": 4294967295,
- "finalization_cost_unit_price": "string",
- "finalization_cost_unit_limit": 4294967295,
- "xrd_usd_price": "string",
- "xrd_storage_price": "string",
- "xrd_archive_storage_price": "string",
- "tip_percentage": 65535
}, - "fee_source": {
- "from_vaults": [
- {
- "vault_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "xrd_amount": "string"
}
]
}, - "fee_destination": {
- "to_proposer": "string",
- "to_validator_set": "string",
- "to_burn": "string",
- "to_royalty_recipients": [
- {
- "royalty_recipient": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "xrd_amount": "string"
}
]
}, - "state_updates": {
- "deleted_partitions": [
- {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255
}
], - "created_substates": [
- {
- "substate_id": {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255,
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "substate_key": {
- "key_type": null,
- "db_sort_key_hex": null
}
}, - "value": {
- "substate_hex": "string",
- "substate_data_hash": "string",
- "substate_data": {
- "substate_type": null,
- "is_locked": null
}
}, - "system_structure": {
- "type": "SystemField"
}
}
], - "updated_substates": [
- {
- "substate_id": {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255,
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "substate_key": {
- "key_type": null,
- "db_sort_key_hex": null
}
}, - "new_value": {
- "substate_hex": "string",
- "substate_data_hash": "string",
- "substate_data": {
- "substate_type": null,
- "is_locked": null
}
}, - "previous_value": {
- "substate_hex": "string",
- "substate_data_hash": "string",
- "substate_data": {
- "substate_type": null,
- "is_locked": null
}
}, - "system_structure": {
- "type": "SystemField"
}
}
], - "deleted_substates": [
- {
- "substate_id": {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255,
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "substate_key": {
- "key_type": null,
- "db_sort_key_hex": null
}
}, - "previous_value": {
- "substate_hex": "string",
- "substate_data_hash": "string",
- "substate_data": {
- "substate_type": null,
- "is_locked": null
}
}, - "system_structure": {
- "type": "SystemField"
}
}
], - "new_global_entities": [
- {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}
]
}, - "events": [
- {
- "type": {
- "emitter": {
- "type": "Function"
}, - "type_reference": {
- "full_type_id": {
- "entity_address": null,
- "schema_hash": null,
- "local_type_id": null
}
}, - "name": "string"
}, - "data": {
- "hex": "string",
- "programmatic_json": null
}
}
], - "next_epoch": {
- "epoch": 10000000000,
- "validators": [
- {
- "address": "string",
- "key": {
- "key_type": "EcdsaSecp256k1",
- "key_hex": "stringstringstringstringstringstringstringstringstringstringstring"
}, - "stake": "string"
}
], - "significant_protocol_update_readiness": [
- {
- "readiness_signal_name": "string",
- "signalled_stake": "string"
}
]
}, - "output": [
- {
- "hex": "string",
- "programmatic_json": null
}
], - "error_message": "string"
}, - "balance_changes": {
- "fungible_entity_balance_changes": [
- {
- "entity_address": "string",
- "fee_balance_change": {
- "resource_address": "string",
- "balance_change": "string"
}, - "fee_balance_changes": [
- {
- "type": "FeePayment",
- "resource_address": "string",
- "balance_change": "string"
}
], - "non_fee_balance_changes": [
- {
- "resource_address": "string",
- "balance_change": "string"
}
]
}
], - "non_fungible_entity_balance_changes": [
- {
- "entity_address": "string",
- "resource_address": "string",
- "added": [
- "string"
], - "removed": [
- "string"
]
}
]
}, - "proposer_timestamp_ms": 100000000000000
}
}
Preview a scrypto function or method call against the latest network state. Returns the result of the scrypto function or method call.
Result of the scrypto function call
Client error
Server error
{- "target": {
- "type": "method",
- "component_address": "component_loc1qftacppvmr9ezmekxqpq58en0nk954x0a7jv2zz0hc7qfxlgx4",
- "method_name": "lock_fee"
}, - "arguments": [
- "a120000000000010632d5ec66b050000000000000000000000000000000000000000000000"
]
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "status": "Succeeded",
- "output": {
- "hex": "string",
- "programmatic_json": null
}, - "error_message": "string"
}
Preview a transaction against the latest network state, and returns the preview receipt.
Transaction preview response
Client error
Server error
{- "network": "{{network}}",
- "at_ledger_state": {
- "type": "ByStateVersion"
}, - "manifest": "string",
- "blobs_hex": [
- "string"
], - "start_epoch_inclusive": 10000000000,
- "end_epoch_exclusive": 10000000000,
- "notary_public_key": {
- "key_type": "EcdsaSecp256k1"
}, - "notary_is_signatory": true,
- "tip_percentage": 65535,
- "nonce": 4294967295,
- "signer_public_keys": [
- {
- "key_type": "EcdsaSecp256k1"
}
], - "message": {
- "type": "Plaintext"
}, - "options": {
- "radix_engine_toolkit_receipt": true
}, - "flags": {
- "use_free_credit": true,
- "assume_all_signature_proofs": true,
- "skip_epoch_check": true,
- "disable_auth_checks": true
}
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "encoded_receipt": "string",
- "receipt": {
- "status": "Succeeded",
- "fee_summary": {
- "execution_cost_units_consumed": 4294967295,
- "finalization_cost_units_consumed": 4294967295,
- "xrd_total_execution_cost": "string",
- "xrd_total_finalization_cost": "string",
- "xrd_total_royalty_cost": "string",
- "xrd_total_storage_cost": "string",
- "xrd_total_tipping_cost": "string"
}, - "costing_parameters": {
- "execution_cost_unit_price": "string",
- "execution_cost_unit_limit": 4294967295,
- "execution_cost_unit_loan": 4294967295,
- "finalization_cost_unit_price": "string",
- "finalization_cost_unit_limit": 4294967295,
- "xrd_usd_price": "string",
- "xrd_storage_price": "string",
- "xrd_archive_storage_price": "string",
- "tip_percentage": 65535
}, - "fee_source": {
- "from_vaults": [
- {
- "vault_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "xrd_amount": "string"
}
]
}, - "fee_destination": {
- "to_proposer": "string",
- "to_validator_set": "string",
- "to_burn": "string",
- "to_royalty_recipients": [
- {
- "royalty_recipient": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "xrd_amount": "string"
}
]
}, - "state_updates": {
- "deleted_partitions": [
- {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255
}
], - "created_substates": [
- {
- "substate_id": {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255,
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "substate_key": {
- "key_type": "Field",
- "db_sort_key_hex": "string"
}
}, - "value": {
- "substate_hex": "string",
- "substate_data_hash": "string",
- "substate_data": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}
}, - "system_structure": {
- "type": "SystemField"
}
}
], - "updated_substates": [
- {
- "substate_id": {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255,
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "substate_key": {
- "key_type": "Field",
- "db_sort_key_hex": "string"
}
}, - "new_value": {
- "substate_hex": "string",
- "substate_data_hash": "string",
- "substate_data": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}
}, - "previous_value": {
- "substate_hex": "string",
- "substate_data_hash": "string",
- "substate_data": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}
}, - "system_structure": {
- "type": "SystemField"
}
}
], - "deleted_substates": [
- {
- "substate_id": {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255,
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "substate_key": {
- "key_type": "Field",
- "db_sort_key_hex": "string"
}
}, - "previous_value": {
- "substate_hex": "string",
- "substate_data_hash": "string",
- "substate_data": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}
}, - "system_structure": {
- "type": "SystemField"
}
}
], - "new_global_entities": [
- {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}
]
}, - "events": [
- {
- "type": {
- "emitter": {
- "type": "Function"
}, - "type_reference": {
- "full_type_id": {
- "entity_address": "string",
- "schema_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "local_type_id": {
- "kind": null,
- "id": null,
- "as_sbor": null
}
}
}, - "name": "string"
}, - "data": {
- "hex": "string",
- "programmatic_json": null
}
}
], - "next_epoch": {
- "epoch": 10000000000,
- "validators": [
- {
- "address": "string",
- "key": {
- "key_type": "EcdsaSecp256k1",
- "key_hex": "stringstringstringstringstringstringstringstringstringstringstring"
}, - "stake": "string"
}
], - "significant_protocol_update_readiness": [
- {
- "readiness_signal_name": "string",
- "signalled_stake": "string"
}
]
}, - "output": [
- {
- "hex": "string",
- "programmatic_json": null
}
], - "error_message": "string"
}, - "radix_engine_toolkit_receipt": { },
- "instruction_resource_changes": [
- {
- "index": 4294967295,
- "resource_changes": [
- {
- "resource_address": "string",
- "component_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "vault_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "amount": "string"
}
]
}
], - "logs": [
- {
- "level": "string",
- "message": "string"
}
]
}
Returns the hashes of all the transactions currently in the mempool
Mempool List Response
Server error
{- "network": "{{network}}"
}
{- "contents": [
- {
- "intent_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "intent_hash_bech32m": "string",
- "payload_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "payload_hash_bech32m": "string"
}
]
}
Returns the payload of a transaction currently in the mempool
Mempool Transaction Response
Not found error
Server error
{- "network": "{{network}}",
- "payload_hashes": [
- "string"
]
}
{- "count": 0,
- "payloads": [
- {
- "hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "hash_bech32m": "string",
- "hex": "string",
- "error": "string"
}
]
}
For reading the state of entities. At present, we only support reading details from the top of the currently committed ledger.
Reads the consensus manager's substate/s from the top of the current ledger.
Current state response
Client error
Server error
{- "network": "{{network}}",
- "include_readiness_signals": true
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "config": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "state": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "current_proposal_statistic": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "current_validator_set": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "current_time": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "current_time_rounded_to_minutes": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "current_validator_readiness_signals": [
- {
- "signalled_protocol_version": "string",
- "total_active_stake_proportion": "string",
- "signalling_validators": [
- {
- "index": {
- "index": 255
}, - "active_stake_proportion": "string"
}
]
}
]
}
Reads the account's substate/s from the top of the current ledger. Also returns all vaults under the account.
Current state response
Client error
Not found error
Server error
{- "network": "{{network}}",
- "account_address": "string"
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "info": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "owner_role": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "state": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "vaults": [
- {
- "vault_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "resource_amount": {
- "resource_type": "Fungible",
- "resource_address": "string"
}
}
]
}
Reads the component's substate/s from the top of the current ledger. Also recursively extracts vault balance totals from the component's entity subtree.
Current state response
Client error
Not found error
Server error
{- "network": "{{network}}",
- "component_address": "string"
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "info": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "state": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "royalty_accumulator": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "owner_role": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "vaults": [
- {
- "vault_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "resource_amount": {
- "resource_type": "Fungible",
- "resource_address": "string"
}
}
], - "descendent_nodes": [
- {
- "parent_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "parent_partition_number": 255,
- "parent_substate_key_hex": "string",
- "parent_substate_db_sort_key_hex": "string",
- "entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "depth": 100
}
]
}
Reads the validator's substate/s from the top of the current ledger.
Current state response
Client error
Not found error
Server error
{- "network": "{{network}}",
- "validator_address": "string"
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "address": "string",
- "state": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "protocol_update_readiness_signal": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "owner_role": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "vaults": [
- {
- "vault_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "resource_amount": {
- "resource_type": "Fungible",
- "resource_address": "string"
}
}
], - "descendent_nodes": [
- {
- "parent_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "parent_partition_number": 255,
- "parent_substate_key_hex": "string",
- "parent_substate_db_sort_key_hex": "string",
- "entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "depth": 100
}
]
}
Reads the access controller's substate/s from the top of the current ledger.
Current state response
Client error
Not found error
Server error
{- "network": "{{network}}",
- "controller_address": "string"
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "state": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "owner_role": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "vaults": [
- {
- "vault_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "resource_amount": {
- "resource_type": "Fungible",
- "resource_address": "string"
}
}
], - "descendent_nodes": [
- {
- "parent_entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "parent_partition_number": 255,
- "parent_substate_key_hex": "string",
- "parent_substate_db_sort_key_hex": "string",
- "entity": {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}, - "depth": 100
}
]
}
Reads the resource manager's substate/s from the top of the current ledger.
Current state response
Client error
Not found error
Server error
{- "network": "{{network}}",
- "resource_address": "string"
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "manager": {
- "resource_type": "Fungible"
}, - "owner_role": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}
}
Reads the data associated with a single Non-Fungible Unit under a Non-Fungible Resource.
Current state response
Client error
Not found error
Server error
{- "network": "{{network}}",
- "resource_address": "string",
- "non_fungible_id": "string"
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "non_fungible": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}
}
Reads the package's substate/s from the top of the current ledger.
Current state response
Client error
Not found error
Server error
{- "network": "{{network}}",
- "package_address": "string"
}
{- "at_ledger_state": {
- "state_version": 1,
- "header_summary": {
- "epoch_round": {
- "epoch": 10000000000,
- "round": 10000000000
}, - "ledger_hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "proposer_timestamp": {
- "unix_timestamp_ms": 100000000000000,
- "date_time": "string"
}
}
}, - "owner_role": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}, - "royalty": {
- "substate_type": "BootLoaderModuleFieldVmBoot",
- "is_locked": true
}
}
Returns a stream of proofs committed to the node's ledger.
NOTE: This endpoint may return different results on different nodes:
Proofs during an epoch can also be garbage collected by the node after the fact. Therefore proofs may disappear from this stream.
Some proofs (such as during genesis and protocol update enactment) are created on a node and don't include signatures.
This stream accepts four different options in the request:
The end-of-epoch proofs can be used to "trustlessly" verify the validator set for a given epoch. By tracking the fact that validators for epoch N sign the next validator set for epoch N + 1, this chain of proofs can be used to provide proof of the current validator set from a hardcoded start.
When a validator set is known for a given epoch, this can be used to verify the various transaction hash trees in the epoch, and to prove other data.
NOTE: This endpoint was built after agreeing the new Radix convention for paged APIs. Its models therefore follow the new convention, rather than attempting to align with existing loose Core API conventions.
Stream proofs response
Client error
Server error
{- "network": "{{network}}",
- "filter": {
- "type": "Any"
}, - "max_page_size": 0,
- "continuation_token": "string"
}
{- "page": [
- {
- "ledger_header": {
- "epoch": 10000000000,
- "round": 10000000000,
- "state_version": 1,
- "hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "consensus_parent_round_timestamp_ms": 100000000000000,
- "proposer_timestamp_ms": 100000000000000,
- "next_epoch": {
- "epoch": 10000000000,
- "validators": [
- {
- "address": "string",
- "key": {
- "key_type": null,
- "key_hex": null
}, - "stake": "string"
}
], - "significant_protocol_update_readiness": [
- {
- "readiness_signal_name": "string",
- "signalled_stake": "string"
}
]
}, - "next_protocol_version": "string"
}, - "origin": {
- "type": "Genesis"
}
}
], - "continuation_token": "string"
}
Returns the list of committed transactions.
Committed transactions response
Client error
Server error
{- "network": "{{network}}",
- "from_state_version": 1,
- "limit": 0,
- "sbor_format_options": {
- "raw": true,
- "programmatic_json": true
}, - "transaction_format_options": {
- "manifest": true,
- "blobs": true,
- "message": true,
- "balance_changes": true,
- "raw_system_transaction": true,
- "raw_notarized_transaction": true,
- "raw_ledger_transaction": true
}, - "substate_format_options": {
- "raw": true,
- "hash": true,
- "typed": true,
- "previous": true
}, - "include_proofs": true
}
{- "previous_state_identifiers": {
- "state_version": 1,
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "from_state_version": 1,
- "count": 10000,
- "max_ledger_state_version": 1,
- "transactions": [
- {
- "resultant_state_identifiers": {
- "state_version": 1,
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "ledger_transaction": {
- "type": "Genesis",
- "payload_hex": "string"
}, - "receipt": {
- "status": "Succeeded",
- "fee_summary": {
- "execution_cost_units_consumed": 4294967295,
- "finalization_cost_units_consumed": 4294967295,
- "xrd_total_execution_cost": "string",
- "xrd_total_finalization_cost": "string",
- "xrd_total_royalty_cost": "string",
- "xrd_total_storage_cost": "string",
- "xrd_total_tipping_cost": "string"
}, - "costing_parameters": {
- "execution_cost_unit_price": "string",
- "execution_cost_unit_limit": 4294967295,
- "execution_cost_unit_loan": 4294967295,
- "finalization_cost_unit_price": "string",
- "finalization_cost_unit_limit": 4294967295,
- "xrd_usd_price": "string",
- "xrd_storage_price": "string",
- "xrd_archive_storage_price": "string",
- "tip_percentage": 65535
}, - "fee_source": {
- "from_vaults": [
- {
- "vault_entity": {
- "entity_type": null,
- "is_global": null,
- "entity_address": null
}, - "xrd_amount": "string"
}
]
}, - "fee_destination": {
- "to_proposer": "string",
- "to_validator_set": "string",
- "to_burn": "string",
- "to_royalty_recipients": [
- {
- "royalty_recipient": {
- "entity_type": null,
- "is_global": null,
- "entity_address": null
}, - "xrd_amount": "string"
}
]
}, - "state_updates": {
- "deleted_partitions": [
- {
- "entity_type": "GlobalPackage",
- "entity_address": "string",
- "entity_module": "TypeInfo",
- "partition_kind": "Field",
- "partition_number": 255
}
], - "created_substates": [
- {
- "substate_id": {
- "entity_type": null,
- "entity_address": null,
- "entity_module": null,
- "partition_kind": null,
- "partition_number": null,
- "substate_type": null,
- "substate_key": null
}, - "value": {
- "substate_hex": null,
- "substate_data_hash": null,
- "substate_data": null
}, - "system_structure": {
- "type": null
}
}
], - "updated_substates": [
- {
- "substate_id": {
- "entity_type": null,
- "entity_address": null,
- "entity_module": null,
- "partition_kind": null,
- "partition_number": null,
- "substate_type": null,
- "substate_key": null
}, - "new_value": {
- "substate_hex": null,
- "substate_data_hash": null,
- "substate_data": null
}, - "previous_value": {
- "substate_hex": null,
- "substate_data_hash": null,
- "substate_data": null
}, - "system_structure": {
- "type": null
}
}
], - "deleted_substates": [
- {
- "substate_id": {
- "entity_type": null,
- "entity_address": null,
- "entity_module": null,
- "partition_kind": null,
- "partition_number": null,
- "substate_type": null,
- "substate_key": null
}, - "previous_value": {
- "substate_hex": null,
- "substate_data_hash": null,
- "substate_data": null
}, - "system_structure": {
- "type": null
}
}
], - "new_global_entities": [
- {
- "entity_type": "GlobalPackage",
- "is_global": true,
- "entity_address": "string"
}
]
}, - "events": [
- {
- "type": {
- "emitter": {
- "type": null
}, - "type_reference": {
- "full_type_id": null
}, - "name": "string"
}, - "data": {
- "hex": "string",
- "programmatic_json": null
}
}
], - "next_epoch": {
- "epoch": 10000000000,
- "validators": [
- {
- "address": "string",
- "key": {
- "key_type": null,
- "key_hex": null
}, - "stake": "string"
}
], - "significant_protocol_update_readiness": [
- {
- "readiness_signal_name": "string",
- "signalled_stake": "string"
}
]
}, - "output": [
- {
- "hex": "string",
- "programmatic_json": null
}
], - "error_message": "string"
}, - "balance_changes": {
- "fungible_entity_balance_changes": [
- {
- "entity_address": "string",
- "fee_balance_change": {
- "resource_address": "string",
- "balance_change": "string"
}, - "fee_balance_changes": [
- {
- "type": null,
- "resource_address": null,
- "balance_change": null
}
], - "non_fee_balance_changes": [
- {
- "resource_address": null,
- "balance_change": null
}
]
}
], - "non_fungible_entity_balance_changes": [
- {
- "entity_address": "string",
- "resource_address": "string",
- "added": [
- "string"
], - "removed": [
- "string"
]
}
]
}, - "proposer_timestamp_ms": 100000000000000
}
], - "proofs": [
- {
- "ledger_header": {
- "epoch": 10000000000,
- "round": 10000000000,
- "state_version": 1,
- "hashes": {
- "state_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "transaction_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri",
- "receipt_tree_hash": "stringstringstringstringstringstringstringstringstringstringstri"
}, - "consensus_parent_round_timestamp_ms": 100000000000000,
- "proposer_timestamp_ms": 100000000000000,
- "next_epoch": {
- "epoch": 10000000000,
- "validators": [
- {
- "address": "string",
- "key": {
- "key_type": null,
- "key_hex": null
}, - "stake": "string"
}
], - "significant_protocol_update_readiness": [
- {
- "readiness_signal_name": "string",
- "signalled_stake": "string"
}
]
}, - "next_protocol_version": "string"
}, - "origin": {
- "type": "Genesis"
}
}
]
}