The short version

Most cross-chain comparisons pit Aeredium against messaging protocols that sit on top of existing chains. Axelar is different. Like Aeredium, Axelar is its own blockchain network, not a layer bolted onto Ethereum or Solana. Both projects reached the same architectural conclusion: the cross-chain problem is serious enough to warrant building a dedicated network to solve it, rather than adding a relay layer to chains that were never designed for interoperability.

The divergence is in how each network validates cross-chain activity. Axelar uses a delegated proof-of-stake validator set combined with threshold signature scheme (TSS) cryptography. Validators stake AXL tokens, and a threshold of them must collectively sign any cross-chain message before it is considered valid. Economic incentives and cryptographic thresholds keep the system honest. Axelar is live on mainnet, supports 50+ chains, and has been the backbone of real cross-chain applications including Squid Router.

Aeredium takes the opposite approach on the validation question. Rather than a staked validator network, the execution runs inside TEE hardware enclaves on three major cloud providers simultaneously, with ZK-STARK proofs anchored to Bitcoin. No human validator is in the signing path. The security model is rooted in hardware attestation rather than economic incentives.

Axelar is proven infrastructure. Aeredium is a credible design on testnet. The comparison is useful for understanding what Aeredium is proposing and how its theory of cross-chain trust differs from the approach that currently dominates the space.

Aeredium Axelar
TypeLayer 1 blockchainLayer 1 blockchain
ValidatorsTEE hardware (no human signing)dPoS + TSS threshold signing
Chains13 native50+ supported
StatusTestnet liveMainnet live
TokenAER (not yet listed)AXL (live)

What each project actually does

Axelar Axelar

Axelar is a blockchain network built specifically to route messages and value between other blockchains. Applications on Ethereum, Solana, Cosmos, and 47 other chains connect to Axelar through gateway contracts. When a contract on one chain wants to call a contract on another, it sends a message through the Axelar gateway. The Axelar validator network observes that message, reaches consensus using its own proof-of-stake chain, and produces a TSS signature authorizing delivery to the destination. The General Message Passing (GMP) protocol handles arbitrary cross-chain contract calls, not just token transfers.

Axelar's design makes it chain-agnostic by default. Connecting a new blockchain means deploying a gateway contract and adding it to the validator set's monitoring scope. Squid Router, which powers cross-chain swaps across major DeFi protocols, runs on top of Axelar's GMP layer. The AXL token is used for gas on the Axelar chain, for validator staking and delegation, and for on-chain governance.

Aeredium Aeredium

Aeredium is a Layer 1 blockchain where cross-chain connectivity is a native protocol feature rather than a routing service built on top. Applications settle across 13 chains directly, without gateway contracts, external validator sets, or a separate routing network. Execution runs inside TEE hardware enclaves on AWS, Azure, and GCP simultaneously. Every transaction produces a ZK-STARK proof anchored to Bitcoin's proof-of-work. There are no staked validators in the transaction confirmation path.

Aeredium's interoperability scope extends beyond blockchain-to-blockchain routing. Through its integration with Kima Network, the protocol connects to bank APIs and crypto/fiat payment rails, targeting institutional flows that move between on-chain and traditional financial infrastructure. That is a layer of the problem that Axelar's current design does not address directly.

Security models compared

Both Axelar and Aeredium made a foundational architectural decision: build a dedicated network rather than a messaging protocol layered on top of existing chains. The two projects then reached different answers on how that network should produce trustworthy cross-chain attestations.

Axelar's answer is economic security through staking. The AXL staking pool creates a financial cost to attacking the network. A validator or group of validators that signs a fraudulent cross-chain message risks having their staked AXL slashed. For an attack to succeed, an adversary would need to control enough of the validator set to produce a valid TSS threshold signature, while the cost of acquiring that stake exceeds the value of the attack. This is the same security model Ethereum uses for its validator set, applied specifically to cross-chain message validation.

Aeredium's answer is hardware attestation. TEE enclaves produce cryptographic proofs that specific code ran in a verified, unmodified environment. No human operator signs cross-chain messages; the hardware does. AWS, Azure, and GCP each run an enclave simultaneously, and all three would need to be compromised for the attestation to be forged. ZK-STARK proofs anchor the result to Bitcoin, adding a second layer of cryptographic verification. The security does not rely on economic incentives at all.

The practical difference matters. Axelar's security scales with the value of staked AXL. If AXL's market cap falls significantly, the cost of a majority attack falls with it. TEE-based security does not degrade with token price, but it introduces a different class of risk: hardware vulnerability disclosures. Side-channel attacks on secure enclaves have been demonstrated in research settings, even if exploiting them in a live cloud environment is substantially harder.

Confirmed
Axelar uses delegated proof-of-stake with TSS signing

The validator architecture, staking mechanism, and TSS signing process are documented in the Axelar documentation. Validators stake AXL and earn rewards for securing cross-chain messages.

Confirmed
Aeredium TEE and ZK-STARK architecture described in official documentation

TEE validation on AWS, Azure, and GCP, ZK-STARK proofs, and Bitcoin anchoring are described in the official Aeredium white paper and site. The testnet is live at explorer.aeredium.io.

Watch
Aeredium mainnet security is unproven at scale

No mainnet launch date has been confirmed. TEE systems have documented vulnerability classes including side-channel attacks and Spectre variants. No independent security audit of the Aeredium architecture is publicly available at the time of writing.

How Axelar's validator model works

Axelar's validator network is worth examining in detail because it is the most direct structural analogue to what Aeredium is trying to replace with hardware.

Axelar validators run nodes that monitor gateway contracts on every connected chain. When a cross-chain event is detected, validators reach consensus on the Axelar chain using a standard Byzantine fault tolerant protocol. Once consensus is reached, the validator set produces a TSS signature through a multi-party computation protocol. TSS means no individual validator holds a complete signing key. The key is split across the validator set, and a threshold of participants must cooperate to produce a valid signature. An attacker who compromises one or two validators gains nothing useful.

The threshold requirement is the security backbone. As long as fewer than the threshold fraction of validators are compromised or colluding at any given moment, cross-chain messages are safe. Axelar sets its threshold conservatively, and the large, geographically distributed validator set makes simultaneous compromise of a threshold fraction genuinely difficult in practice.

Aeredium's TEE model is designed to remove the validator question entirely. If the hardware attestation is valid, no set of human actors needs to be trusted. The trade-off is that the hardware itself becomes the trusted party, and hardware trust is harder to audit publicly than a set of validator identities with known economic incentives.

How asset transfers work

Axelar's canonical token transfer uses a lock-and-mint model via its gateway contracts. Tokens sent from Ethereum to another chain are locked in the Axelar gateway contract on Ethereum. The validator network attests to the lock event. Equivalent wrapped tokens are minted on the destination chain. Axelar also supports an Interchain Token Service (ITS) that allows token issuers to maintain native token representations across chains rather than relying on wrapped versions. Projects using ITS can deploy a token once and have it available natively on every Axelar-connected chain without wrapping.

Aeredium describes its cross-chain settlement model differently: native settlement at the protocol layer without bridges, wrapped tokens, or gateway contracts. The 13-chain architecture is meant to handle value movement as a core protocol function rather than through smart contract infrastructure deployed on external chains. The technical specification of how this works at the implementation level is less detailed in public documentation than Axelar's bridge architecture. The design is internally consistent with the broader TEE and ZK-STARK claims, but the full picture is not yet public. Factor that in when comparing the two approaches.

The trust question

Every cross-chain system requires trusting something. Axelar and Aeredium are both honest about what they ask you to trust, and the contrast is direct.

With Axelar, you trust the economics of the validator set. The system works if the cost of corrupting a threshold of validators consistently exceeds the value of any potential attack. That condition has held since Axelar's mainnet launch in 2022. The risk is not theoretical absence of trust assumptions but whether the economic incentive structure remains robust as AXL's value fluctuates and the network scales to more chains and higher volumes. A validator set that is properly incentivised and geographically distributed is a well-understood security model with a multi-decade track record in distributed systems.

With Aeredium, you trust the hardware. Three cloud providers running TEE enclaves simultaneously means the attack requires either a hardware vulnerability across all three platforms or coordinated action by cloud infrastructure teams that have strong contractual and reputational incentives not to cooperate. The theoretical attack surface is narrow. The practical risk, at least until mainnet operation provides real-world adversarial data, is unknown.

Neither model is obviously superior. Axelar's economic security is battle-tested. Aeredium's hardware security is architecturally elegant but unproven at scale. The honest read is that both projects have made defensible design choices, and the relative merit of those choices depends on conditions neither can fully control: token valuations for Axelar, and hardware vulnerability research for Aeredium.

Current state

Live
Axelar: mainnet since 2022, 50+ chains, AXL listed on major exchanges

Axelar mainnet launched in 2022. The network supports 50+ connected chains. Squid Router, a major cross-chain swap application, runs on Axelar's GMP layer. AXL is actively traded and listed on major exchanges. The Axelar Foundation oversees ecosystem development.

Live
Aeredium testnet: active and publicly verifiable

The public Blockscout explorer at explorer.aeredium.io shows live blocks, transactions, and addresses. The chain is processing real data in real time.

Upcoming
Aeredium mainnet and AER exchange listing

Both are described as upcoming in official Aeredium documentation. No public timeline has been confirmed. The KIMA-to-AER conversion window opens June 1, 2026.

Which matters for AER holders

The Axelar comparison is the most structurally honest one for understanding Aeredium's position in the market, because these two projects are building at the same layer of the stack.

Axelar solved the cross-chain routing problem for a broad set of chains and use cases. Squid Router and the projects integrated through Axelar's GMP layer represent real adoption, real volume, and a real validator network with economic skin in the game. The AXL token is live, staked, and traded. The network has operated through multiple market cycles.

Aeredium is proposing a different security model for a narrower, higher-value set of use cases. The TEE architecture targets institutional stablecoin flows and real-world asset settlement, where hardware-attested finality may be more defensible than validator-staked finality to regulated counterparties. A bank integrating with cross-chain infrastructure may be more comfortable trusting a cryptographic hardware attestation than a validator network whose security budget fluctuates with a token price.

If that thesis is correct, the two projects serve different buyers. Axelar captures the developer and DeFi protocol market that needs general-purpose cross-chain messaging today. Aeredium targets the institutional settlement layer that is still emerging. Both can win in that scenario. The open question for Aeredium is whether the mainnet delivers on the testnet's promise, and whether the institutional market materialises on a timeline that matters for early participants.

Sources

Official
Axelar documentation

docs.axelar.dev — Validator architecture, TSS signing, General Message Passing, Interchain Token Service.

Official
Aeredium official site and white paper

aeredium.io — TEE architecture, ZK-STARK proofs, tokenomics v3.8, 13-chain interoperability.

Live
Aeredium testnet explorer

explorer.aeredium.io — Live block and transaction data from the public Blockscout explorer.

FAQ

Is Aeredium competing with Axelar?

More directly than with most cross-chain projects. Both Axelar and Aeredium are full blockchain networks built around cross-chain connectivity, not messaging protocols layered on top of existing chains. The addressable market overlaps, particularly in institutional cross-chain settlement. Where they differ is the security model: Axelar uses staked validators with TSS signing; Aeredium uses TEE hardware enclaves with no human validators in the signing path.

What is Axelar's security model?

Axelar uses delegated proof-of-stake combined with threshold signature scheme (TSS) cryptography. Validators stake AXL and must collectively produce a TSS signature for any cross-chain message to be considered valid. No single validator holds a complete signing key. The security relies on the economic cost of corrupting a threshold of the validator set exceeding the value of any attack.

What is AXL used for?

AXL is Axelar's native token. It is used for gas fees on the Axelar chain, validator staking and delegation, and on-chain governance. Validators earn AXL rewards for participating in cross-chain message validation. AXL is listed on major exchanges and actively traded.

Is Axelar live on mainnet?

Yes. Axelar mainnet launched in 2022 and supports 50+ chains. Squid Router, which powers cross-chain swaps across major DeFi protocols, is built on Axelar's General Message Passing layer. AXL is listed on major exchanges.

Is Aeredium live on mainnet?

No. Aeredium is live on testnet. The public explorer at explorer.aeredium.io shows active blocks and transactions. Mainnet launch has not been scheduled publicly.

Related Aeredium guides