# fungibleAccountsByPublicKey **Type:** GraphQL queries **Description:** Retrieve all fungible accounts associated with a given public key. In Kadena, a single public key can control multiple accounts — for example, one on each chain, or accounts tied to different contracts or modules. This query returns all `FungibleAccount` objects linked to the provided public key for a specified fungible token (default: `coin`). This is particularly useful when you want to discover all accounts controlled by a user key across the Kadena network, including balances and activity for each. ## Arguments - fungibleName (String): The name of the fungible token module to filter by (e.g., `coin` for the native KDA token). Defaults to `"coin"` if not specified. - publicKey (String): The public key used to control the account(s). Example: `"abcdef1234567890..."`. ## Response **Type:** FungibleAccount **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): Per-chain breakdown of this fungible account. Since Kadena operates multiple braided chains, an account can have different balances on each chain. - 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): Paginated list of transactions involving this account. Transactions represent operations such as transfers, contract calls, or other state changes that affect this account. - transfers (FungibleAccountTransfersConnection): Paginated list of transfers associated with this account. Transfers represent direct movements of the fungible token into or out of this account.