> For the complete documentation index, see [llms.txt](https://docs.bsvblockchain.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bsvblockchain.org/network-topology/spv-wallet/developer-docs/spv-wallet-go-client.md).

# Go Client

## Table of contents

* [Overview](#overview)
* [Installation](#installation)
* [User / Wallet / Account creation](#user--wallet--account-creation)
* [Authentication](/network-topology/spv-wallet/developer-docs/spv-wallet-go-client/authentication.md)
* [Examples](https://github.com/bitcoin-sv/spv-wallet-go-client/tree/main/examples)

## Overview

This is GO library used to communicate with SPV Wallet.\
It allows us to create an admin or normal user client and then call methods to work with transactions, xpubs, paymails and access keys.

## Installation

```bash
go get -u github.com/bitcoin-sv/spv-wallet-go-client
```

## User / Wallet / Account creation

To create a new user (by some people also understand as creation of wallet or account), you need to register a new xPub.\
You can found example of how to do that [here](/network-topology/spv-wallet/developer-docs/spv-wallet-go-client/authentication.md#register-users-xpub).

## Authentication

To authenticate within the SPV Wallet, you need to use HD key pair either for admin or normal user.\
Detailed instruction on how to authenticate the client can be found [here](/network-topology/spv-wallet/developer-docs/spv-wallet-go-client/authentication.md).

## Examples

We have prepared some examples for you to get started with the library.\
All of them are available on the SPV Wallet Client GitHub repository, in the [examples/](https://github.com/bitcoin-sv/spv-wallet-go-client/tree/main/examples) directory.


---

# 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://docs.bsvblockchain.org/network-topology/spv-wallet/developer-docs/spv-wallet-go-client.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.
