> For the complete documentation index, see [llms.txt](https://vincechain.gitbook.io/vince-chain-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vincechain.gitbook.io/vince-chain-documentation/3.-vince-chain-protocols/concepts/accounts.md).

# Accounts

An account on Vince Chain consists of a public key (PubKey) and a private key (PrivKey). You generate various addresses with the public key, which can then be used to identify users on the application. These addresses are also associated with messages from the sender or receiver of the message. The private key is for generating digital signatures and approving messages on the application or blockchain—that is to say that private keys are used to encrypt and decrypt messages on the blockchain.

Vince Chain allows for the derivation of Hierarchical Deterministic (HD) keys which uses the [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) standard. The BIP32 allows users to create an HD wallet (as specified in [BIP44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki)) —a set of accounts derived from an initial secret word seed. You create a seed from 12 or 24 mnemonic words. You can also create as many private keys as possible using the initial/parent seed. This means you can create multiple accounts from a parent seeded account using a one-way cryptographic function. Afterward, you can generate a public key/address from the private key created from the multiple or parent accounts.&#x20;

Warning

Your mnemonic seed phrase or words is the most sensitive information of your wallet or account because anyone with it can regenerate or access your wallet.

More reading on Accounts:

* [Cosmos SDK accounts](https://docs.cosmos.network/main/basics/accounts.html)
* [Ethereum accounts](https://ethereum.org/en/whitepaper/#ethereum-accounts)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://vincechain.gitbook.io/vince-chain-documentation/3.-vince-chain-protocols/concepts/accounts.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
