TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/axelarnetwork/axelar-core/llms.txt
Use this file to discover all available pages before exploring further.
axelard query axelarnet command group provides read-only access to Axelar’s Axelarnet module state. The Axelarnet module manages Axelar’s native IBC integrations with Cosmos chains — tracking the IBC channel paths used to route cross-chain transfers and monitoring pending outbound IBC transfers. Use these subcommands to look up IBC path registrations and inspect module parameters without submitting any transaction.
Most Axelarnet query subcommands accept
--node, --grpc-addr, --height, and --output flags. The ibc-transfer-count subcommand does not expose gRPC or node connection options — it only inherits the global --output, --home, --log_level, and --trace flags.Global Flags
The following flags are inherited by everyaxelard query axelarnet subcommand.
Directory for config and data. Defaults to
$HOME/.axelar.Logging format:
json or plain. Defaults to plain.Logging level:
trace, debug, info, warn, error, fatal, or panic. Defaults to info.Output format:
text or json. Defaults to text.Print full stack trace on errors.
Subcommands
ibc-path — Get registered IBC path for a Cosmos chain
ibc-path — Get registered IBC path for a Cosmos chain
Returns the registered IBC path for the given Cosmos chain. The IBC path identifies the channel through which cross-chain transfers are routed between Axelar and that chain. This is used by Axelar to correctly forward IBC packets.SyntaxArgumentsFlagsExampleExample output
The name of the Cosmos chain to look up the IBC path for (e.g.,
osmosis, cosmoshub, juno).The gRPC endpoint to use for this chain.
Allow gRPC over insecure channels. If not set, the server must use TLS.
Query state at a specific block height. May error if the node is pruning state.
<host>:<port> to CometBFT RPC interface. Defaults to tcp://localhost:26657.Output format:
text or json. Defaults to text.chain-by-ibc-path — Reverse lookup chain by IBC path
chain-by-ibc-path — Reverse lookup chain by IBC path
Returns the Cosmos chain name registered for the given IBC path. This is the reverse of ArgumentsFlagsExampleExample output
ibc-path — given a channel path such as transfer/channel-3, it tells you which Cosmos chain that channel corresponds to.SyntaxThe IBC path to look up, in the format
transfer/channel-N (e.g., transfer/channel-3).The gRPC endpoint to use for this chain.
Allow gRPC over insecure channels.
Query state at a specific block height.
<host>:<port> to CometBFT RPC interface. Defaults to tcp://localhost:26657.Output format:
text or json. Defaults to text.If no chain is registered for the given IBC path, the command returns an error. Ensure the path is in the exact format
transfer/channel-N with no trailing characters.ibc-transfer-count — Get pending IBC transfer count per chain
ibc-transfer-count — Get pending IBC transfer count per chain
Returns the number of pending (in-flight) outbound IBC transfers per Cosmos chain. This is useful for monitoring Axelar’s IBC transfer queue and diagnosing delays in cross-chain deliveries.SyntaxFlagsExampleExample output
Display help for this command.
Output format:
text or json. Defaults to text. Inherited from the parent command group.A consistently high pending transfer count for a specific chain may indicate an IBC channel is congested, the relayer is down, or the channel has been closed. Cross-reference with the relevant chain’s IBC monitoring tools for diagnosis.
params — Get Axelarnet module parameters
params — Get Axelarnet module parameters
Returns the on-chain governance parameters for the Axelarnet module. These parameters control IBC transfer behaviour, fee collection, and other module-level policies.SyntaxFlagsExampleExample output
The gRPC endpoint to use for this chain.
Allow gRPC over insecure channels.
Query state at a specific block height.
<host>:<port> to CometBFT RPC interface. Defaults to tcp://localhost:26657.Output format:
text or json. Defaults to text.