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

# Concepts

<figure><img src="/files/L2AldfWMZaiYA5PCSDfD" alt=""><figcaption></figcaption></figure>

## Accounts

A PROSOFT account is a pair of keys used to uniquely identify a user (or entity) and allow them to authenticate and verify transactions on the ProSoft Chain.

Accounts on ProSoft chain

There are two keys: A Public Key and a Private Key.&#x20;

The Public Key is used to generate an Address (or multiple addresses).

## An Account object is an implementation of an account keypair. It stores the following:

&#x20;

Public Key (PubKey)

Address derived from the Public Key

Account number (AccountNumber)

Sequence

Example Account object

type BaseAccount struct {

Address string \`protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"\`

PubKey \*types.Any \`protobuf:"bytes,2,opt,name=pub\_key,json=pubKey,proto3" json:"public\_key,omitempty"\`

AccountNumber uint64     \`protobuf:"varint,3,opt,name=account\_number,json=accountNumber,proto3" json:"account\_number,omitempty"\`

Sequence      uint64     \`protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"\`}

<figure><img src="/files/U7V4quxRJx43OLRniX24" alt=""><figcaption></figcaption></figure>

## Public key

The Public Key - PubKey is safe to disclose and is used to verify a user or entity's identity.


---

# 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:

```
GET https://prosoftchain.gitbook.io/document/concepts.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.
