# FungibleChainAccount **Type:** GraphQL objects **Description:** Represents a fungible account **on a specific chain** in the Kadena blockchain. While a `FungibleAccount` aggregates balances and activity across all chains, a `FungibleChainAccount` focuses on a single chain. It exposes the account’s balance, security guard, and full transaction and transfer history specific to that chain and fungible token (e.g., `coin` for KDA). This type is useful when you need fine-grained, chain-level data — such as for explorers, wallets, or analytics tools that track balances and movements per chain. ## Fields - id (ID): Globally unique identifier for this chain account node. - accountName (String): The full name of the account (e.g., `k:abcdef123456...` for a user account or `free.my-contract` for a contract account). - balance (Float): The current balance of this account on the specified chain for the given fungible token. - chainId (String): The chain ID where this account exists. - fungibleName (String): The name of the fungible token module associated with this account (e.g., `coin`). - guard (IGuard, Not Null): The guard that defines the account’s security conditions. A guard determines who must sign transactions in order to spend from this account. - keys (String) - predicate (String) - raw (String) - transactions (FungibleChainAccountTransactionsConnection, Not Null): Paginated list of transactions involving this account on this chain. Transactions represent operations such as transfers, contract calls, or other state changes. - edges (FungibleChainAccountTransactionsConnectionEdge) - pageInfo (PageInfo) - totalCount (Int) - transfers (FungibleChainAccountTransfersConnection, Not Null): Paginated list of token transfers into or out of this account on this chain. Transfers are a subset of events focused specifically on balance movements. - edges (FungibleChainAccountTransfersConnectionEdge) - pageInfo (PageInfo) - totalCount (Int)