# NonFungibleChainAccount **Type:** GraphQL objects **Description:** Represents a non-fungible (NFT) account **on a specific chain** in the Kadena network. While `NonFungibleAccount` aggregates NFT holdings and activity across all chains for an account, `NonFungibleChainAccount` focuses on a single chain. It exposes the account’s per-chain NFT balances and its transaction/transfer history limited to that chain. This is useful for explorers, wallets, and analytics tools that need precise, chain-level NFT data. ## Fields - accountName (String): The full name of the account (e.g., `k:abcdef123456...` for a user account or `free.my-contract` for a contract account). - chainId (String): The chain ID where this non-fungible account exists. - id (ID): Globally unique identifier for this chain-scoped NFT account node. - nonFungibleTokenBalances (NonFungibleTokenBalance, Not Null): The list of NFT balances held by this account on this chain. Each entry typically includes the token identifier(s), quantity/ownership info, and associated metadata for that token/collection. - accountName (String): The full name of the account associated with this NFT balance. Example: `"k:abcdef123456..."` for a user account or `"free.my-contract"` for a contract account. - balance (Int): The balance of this specific non-fungible token for the account. Typically `1` if the token is owned or `0` if not. - chainId (String): The chain ID where this token balance is tracked. - guard (IGuard): The guard that defines the security conditions for this token. A guard specifies who must sign transactions in order to transfer or interact with this token. - id (ID): Globally unique identifier for this NFT balance node. - info (NonFungibleToken): Metadata and details of the non-fungible token associated with this balance. - tokenId (String): The unique identifier of the non-fungible token. - version (String): The version of the token or contract associated with this NFT. Useful for distinguishing between different token contract versions or upgrades. - transactions (NonFungibleChainAccountTransactionsConnection, Not Null): Paginated list of NFT-related transactions involving this account on this chain. Transactions can include mints, transfers, or contract interactions that affect NFT state. - edges (NonFungibleChainAccountTransactionsConnectionEdge) - pageInfo (PageInfo) - totalCount (Int) - transfers (NonFungibleChainAccountTransfersConnection, Not Null): Paginated list of NFT transfers into or out of this account on this chain. Transfers are a subset of transactions focused specifically on movements of NFTs. - edges (NonFungibleChainAccountTransfersConnectionEdge) - pageInfo (PageInfo) - totalCount (Int)