AtriumLearn Ecosystem

The Terra2 NFT collections still trading in 2026

A guide to the cw721 collections with real activity on Terra2 — what each one is, what survived the 2022 collapse, and how to verify supply yourself.

Ecosystem19 Aug 2026·5 min read

Terra's NFT scene in 2021 was one of the largest outside Ethereum. Most of the venues that hosted it are gone — some closed, some migrated to other chains after the 2022 collapse. What is less widely known is that the collections mostly did not go anywhere. cw721 contracts do not shut down when a marketplace does. The tokens sat on-chain, owned by the same wallets, waiting for somewhere to trade.

This is a guide to what is actually still moving on Terra2, and how to check any of it without trusting a list.

The survivors from the 2021 era

Galactic Punks — the definitive Terra PFP collection and the one most people mean when they say "Terra NFT." Launched in 2021 with a large supply and a genuinely wide holder base, it remains the most recognisable name on the chain. Its cultural weight outlasted the venues that originally traded it.

Skeleton Punks — a large-supply PFP collection from the same era, just over 5,000 tokens. Persistent holder community, still actively traded.

Pixel Lions — a 5,000-token collection with an unusually engaged community for its size, and one of the few Terra projects that kept shipping after 2022.

Burning Lions — the Burning Lion Festival collection, a companion drop to Pixel Lions. Smaller and distinct from the main collection; worth reading the contract rather than assuming the two are interchangeable.

Soul Reapers and Origin Enigma — smaller 2021-era collections that retained holders through the collapse. Origin Enigma is a good reminder to trade by contract address rather than by name, since the on-chain ContractInfo carries a typo in the collection name that has never been corrected — a permanent artifact of a deployment nobody could take back.

Native to the post-collapse chain

CAPA Crystals — 1,000 generative NFTs tied to the Solid Protocol ecosystem. Minting closed at full supply, and the collection has an unusual property for a PFP-shaped drop: circulating supply decreases over time, because holders can permanently fuse tokens together. The count only goes one direction. It also carries live utility on Atrium, where holding one moves you into a lower marketplace fee tier.

Alliance NFT — issued around the Alliance module era of the chain, and a piece of Terra2's own history rather than an import from Classic.

TLA Locks (veLUNA) — not a PFP collection at all. These are NFT-wrapped lock positions, where the token represents a claim rather than an image. If you are used to thinking of NFTs as art, this is the category that breaks the assumption most usefully: the standard is an ownership record, and what it records is up to the issuer.

The Backroom · Quarters — a 2,500-token arcade collection, one of the more recent native drops and among the few Terra2 collections launched after the ecosystem's consolidation.

What "still trading" actually means

Be sceptical of any collection guide, including this one, that reports a floor price without a timestamp. On a thin chain the gap between the lowest ask and the last actual sale is often enormous, and only one of those is evidence.

Three questions worth asking about any collection before you buy:

  1. When was the last real sale, and at what price? Not the floor. The trade.
  2. How many distinct wallets hold it? A collection where ten wallets hold most of the supply behaves very differently from one with a broad base.
  3. Where does the metadata live? IPFS with active pinning, HTTP behind somebody's server, or fully on-chain. See cw721 explained for why this determines whether the art outlives the project.

Verify supply yourself

Every claim above is checkable from a public endpoint with no account and no API key. Supply for any cw721 collection:

LCD=https://terra-rest.publicnode.com
CONTRACT=terra1...              # the collection's cw721 address
Q=$(echo -n '{"num_tokens":{}}' | base64)
curl -s "$LCD/cosmwasm/wasm/v1/contract/$CONTRACT/smart/$Q"

Name and symbol, straight from the contract:

Q=$(echo -n '{"contract_info":{}}' | base64)
curl -s "$LCD/cosmwasm/wasm/v1/contract/$CONTRACT/smart/$Q"

Contract addresses for every supported collection are listed in the Atrium explorer. Copy the address, run the query, compare it against whatever anybody told you. That habit is worth more than any collection guide.

Why the collections outlived the marketplaces

This is the part that generalises beyond Terra.

An NFT marketplace is a convenience layer. It indexes contracts, renders images, matches buyers with sellers, and settles trades. What it does not do — in a non-custodial design — is hold your asset. Ownership lives in the collection's own contract, on the chain, in a mapping from token ID to your address.

So when a marketplace shuts down, nothing happens to your token. You lose the interface, the price history and the liquidity. You do not lose the NFT. Terra2 demonstrated this at ecosystem scale: the venues went, the collections stayed, and when a new venue appeared the same tokens in the same wallets started trading again.

The corollary is worth stating: this only holds for non-custodial marketplaces. If a venue holds your NFT in its own wallet while it is listed, its shutdown is your problem. Check which kind you are using before you list.

FAQ

Are Terra NFTs still worth anything?

Terra2 collections continue to trade, but on a small chain with thin liquidity, so prices move sharply on modest volume and the gap between the lowest ask and the last real sale is often wide. Look at recent completed sales rather than floor prices.

What happened to Terra NFTs after the 2022 collapse?

The marketplaces of that era largely closed or moved to other chains, but the cw721 contracts kept running and the tokens stayed in their owners' wallets. Collections became untradeable for a period because there was no venue, not because anything happened to the assets.

What is the biggest NFT collection on Terra2?

Galactic Punks remains the most recognised Terra collection, with Skeleton Punks and Pixel Lions the other large-supply survivors from the 2021 era.

How do I check how many NFTs a collection has?

Query the cw721 contract directly with {"num_tokens":{}} through any public LCD endpoint. No API key or account is needed, and the answer comes from the chain rather than from a marketplace's index.

Where can I buy and sell Terra2 NFTs?

Atrium is the marketplace covering the surviving Terra2 collections, with fixed-price listings, on-chain offers and atomic OTC swaps. Listings are non-custodial — your NFT stays in your wallet until a sale settles.