apps/docs/src/guide/provider/querying-the-chain.md
Once you have set up a provider, you're ready to interact with the Fuel blockchain.
Let's look at a few examples below.
getBaseAssetIdThe base asset is the underlying asset used to perform any transaction on a chain. This should be fetched from a provider to then be used in transactions.
<<< @./snippets/functionality/get-base-asset-id.ts#getBaseAssetId{ts:line-numbers}
getCoinsReturns UTXOs coins from an account address, optionally filtered by asset ID. This method supports pagination.
<<< @./snippets/functionality/get-coins-from-provider.ts#getCoins-1{ts:line-numbers}
This method is also implemented on the Account class and can be used without providing the address:
<<< @./snippets/functionality/get-coins-from-account.ts#getCoins-2{ts:line-numbers}
getResourcesToSpendReturns spendable resources (coins or messages) for a transaction request. It accepts an optional third parameter, resourcesIdsToIgnore, to exclude specific UTXO IDs or coin message nonces:
<<< @./snippets/functionality/get-resources-to-spend-from-provider.ts#getResourcesToSpend-1{ts:line-numbers}
This method is also available in the Account class and can be used without providing the address:
<<< @./snippets/functionality/get-resources-to-spend-from-account.ts#getResourcesToSpend-2{ts:line-numbers}
getBalancesReturns the sum of all UTXOs coins and unspent message coins amounts for all assets. Unlike getCoins, it only returns the total amounts, not the individual coins:
<<< @./snippets/functionality/get-balances.ts#getBalances-1{ts:line-numbers}
This method is also available in the Account class and can be used without providing the address parameter:
<<< @./snippets/functionality/get-balances.ts#getBalances-2{ts:line-numbers}
getBlocksThe getBlocks method returns blocks from the blockchain matching the given paginationArgs parameter, supporting pagination. The below code snippet shows how to get the last 10 blocks.
<<< @./snippets/functionality/get-blocks.ts#getBlocks{ts:line-numbers}
getMessageByNonceYou can use the getMessageByNonce method to retrieve a message by its nonce.
<<< @./snippets/functionality/get-messages-by-nonce.ts#getMessageByNonce{ts:line-numbers}
getMessagesYou can use the getMessages method to retrieve a list of messages from the blockchain.
<<< @./snippets/functionality/get-messages.ts#getMessages{ts:line-numbers}
getMessageProofA message proof is a cryptographic proof that a message was included in a block. You can use the getMessageProof method to retrieve a message proof for a given transaction ID and message ID.
You can retrieve a message proof by either using it's block ID:
<<< @./snippets/functionality/get-message-proof-block-id.ts#getMessageProof-blockId{ts:line-numbers}
Or by it's block height:
<<< @./snippets/functionality/get-message-proof-block-height.ts#getMessageProof-blockHeight{ts:line-numbers}
getTransactionsYou can use the getTransactions method to retrieve a list of transactions from the blockchain. This is limited to 30 transactions per page.
<<< @./snippets/functionality/get-transactions.ts#getTransactions{ts:line-numbers}