Use this file to discover all available pages before exploring further.
The axelard query nexus command group exposes read-only queries into Axelar’s Nexus module — the cross-chain routing layer that manages registered chains, assets, fees, and pending transfers. Use these subcommands to inspect the state of any supported chain or asset pair without submitting any transaction.
All Nexus query subcommands share common flags for node connection (--node, --grpc-addr), historical queries (--height), and output formatting (--output). Omitting --height queries the latest committed state.
# List all chains regardless of statusaxelard query nexus chains# List only activated chainsaxelard query nexus chains --status activated# List deactivated chains in JSON formataxelard query nexus chains --status deactivated --output json
Returns the current state of a chain registered in the Nexus module, including whether it is active, its supported assets, and its maintainer set.Syntax
chain-maintainers — List validators maintaining a chain
Returns the set of validators currently maintaining (i.e., running infrastructure for and voting on events from) the specified chain. Validators must maintain chains they are assigned to in order to earn rewards.Syntax
A chain must have a sufficient number of active maintainers to process cross-chain transfers. If too many maintainers go offline, transfer processing may be delayed.
assets — List registered assets for a chain
Returns the list of assets (by denomination) that are registered for cross-chain transfers on the specified chain.Syntax
chain-by-asset — Find chains an asset is registered on
Returns all chains on which the specified asset is registered. This is useful for discovering which chains support a particular cross-chain asset.Syntax
fee-info — Get fee configuration for a chain and asset
Returns the per-chain fee configuration for a registered asset. The fee info includes the fee rate, minimum fee, and maximum fee applied when transferring the asset through the specified chain.Syntax
Use transfer-fee to compute the actual fee for a specific transfer amount between two chains, rather than inspecting raw fee parameters here.
transfer-fee — Estimate fee for a cross-chain transfer
Returns the total fee that would be incurred on a cross-chain transfer of a specified amount between two chains. This helps users and integrators estimate net received amounts before initiating a transfer.Syntax
transfers-for-chain — List transfers by chain and state
Returns the list of cross-chain transfers for a given chain, filtered by transfer state. Supports pagination for large result sets. The state must be one of pending, archived, or insufficient_amount.Syntax
Returns the cross-chain message corresponding to the given message ID. Messages represent general message passing (GMP) payloads routed through Axelar’s network.Syntax
Returns the on-chain governance parameters for the Nexus module. These parameters control cross-chain routing behaviour, including chain and asset management policies.Syntax