# FAQs

## Is js-conflux-sdk support mnemonic or HDwallet ?

Mnemonic can be support by a third package `@conflux-dev/hdwallet`, check [SDK account doc](/js-conflux-sdk/docs/account.md) HD wallet part for detail intro.

## Common Errors

Check [Error Handling](/js-conflux-sdk/docs/error_handling.md) for common errors and how to handle them.

## Why is the transaction not mined or sending transaction timeout?

If you are sending a transaction and it is not mined or it is timeout, you can check the following:

* The sending account have enough balance.
* If the transaction should be sponsored, the sponsor account have enough balance.
* The transaction nonce is correct(not bigger than sender account's nonce).
* If the network is busy, you can try to increase the gas price.

For more detail, check [why tx is pending?](https://doc.confluxnetwork.org/docs/core/core-space-basics/transactions/why-transaction-is-pending) and [Transaction lifecycle for more info](https://doc.confluxnetwork.org/docs/core/core-space-basics/transactions/lifecycle)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://confluxnetwork.gitbook.io/js-conflux-sdk/faqs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
