# FungibleAccount **Type:** GraphQL objects **Description:** Represents an account associated with a specific fungible token on the Kadena blockchain. A `FungibleAccount` tracks the balance and activity of a single account (such as a user key account or contract) for a given fungible token module (for example, `coin` for KDA). Because Kadena is a multi-chain network, a fungible account may have balances distributed across multiple chains. This type exposes both the aggregated balance and per-chain details, along with historical transactions and transfers. ## Fields - id (ID): Globally unique identifier for this fungible 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). - chainAccounts (FungibleChainAccount, Not Null): Per-chain breakdown of this fungible account. Since Kadena operates multiple braided chains, an account can have different balances on each chain. - 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): The guard that defines the account’s security conditions. A guard determines who must sign transactions in order to spend from this account. - transactions (FungibleChainAccountTransactionsConnection): Paginated list of transactions involving this account on this chain. Transactions represent operations such as transfers, contract calls, or other state changes. - transfers (FungibleChainAccountTransfersConnection): 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. - fungibleName (String): The name of the fungible token module associated with this account (e.g., `coin`). - totalBalance (Decimal): The total balance of this account across all chains for the specified fungible token. - transactions (FungibleAccountTransactionsConnection, Not Null): Paginated list of transactions involving this account. Transactions represent operations such as transfers, contract calls, or other state changes that affect this account. - edges (FungibleAccountTransactionsConnectionEdge) - pageInfo (PageInfo) - totalCount (Int) - transfers (FungibleAccountTransfersConnection, Not Null): Paginated list of transfers associated with this account. Transfers represent direct movements of the fungible token into or out of this account. - edges (FungibleAccountTransfersConnectionEdge) - pageInfo (PageInfo) - totalCount (Int)