Lightweight Go client library for interacting with the SPV Wallet
CI / CD
|
|
Quality
|
|
Security
|
|
Community
|
|
📦 Installation
|
🧪 Examples & Tests
|
📚 Documentation
|
🤝 Contributing
|
🛠️ Code Standards
|
⚡ Benchmarks
|
🤖 AI Usage
|
📝 License
|
👥 Maintainers
|
spv-wallet-go-client requires a supported release of Go.
go get -u github.com/bsv-blockchain/spv-wallet-go-client- API Reference – Dive into the godocs at pkg.go.dev/github.com/bsv-blockchain/spv-wallet-go-client
- Usage Examples – Browse practical patterns either the examples directory or the example tests
- Test Suite – Review both the unit tests and fuzz tests(powered by
testify) - SPV Wallet Docs - please refer to the SPV Wallet Documentation
Quick Start Guide
The implementation enforces separation of concerns by isolating admin and non-admin APIs, requiring separate initialization for their respective clients. This ensures clarity and modularity when utilizing the exposed functionality.
- Description: Initializes a
UserAPIinstance using an access key for authentication. - Note: Requests made with this instance will be securely signed, ensuring integrity and authenticity.
- Description: Initializes a
UserAPIinstance using an extended private key (xPriv) for authentication. - Note: Requests made with this instance will also be securely signed.
- Recommendation: This option offers a high level of security, making it a preferred choice alongside the access key option.
- Description: Initializes a
UserAPIinstance using an extended public key (xPub). - Note: Requests made with this instance will not be signed.
- Security Advisory: For enhanced security, it is strongly recommended to use either
NewUserAPIWithAccessKeyorNewUserAPIWithXPrivinstead, as unsigned requests may be less secure.
- Description: Initializes a
AdminAPIinstance using an extended private key (xPriv) for authentication. - Note: Requests made with this instance will be securely signed, ensuring integrity and authenticity.
- Description: Initializes a
AdminAPIinstance using an extended public key (xPub). - Note: Requests made with this instance will not be signed.
- Security Advisory: For enhanced security, it is strongly recommended to use either
NewAdminAPIWithXPrivinstead, as unsigned requests may be less secure.
Code snippets:
Compatibility & Support
The client does not support the following:
- Admin and non-admin old endpoints of the SPV Wallet API based on the
/v1/prefix. - Deprecated methods for building query parameters for HTTP requests.
The client is designed for full compatibility with the newer /api/v1/ endpoints exposed by the SPV Wallet API. It focuses on aligning with the latest standards and structure provided by the API.
API Endpoints Compatibility
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/users/keys | Search access keys | ✅ | API | ✅ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/contacts | Search contacts | ✅ | API | ✅ |
| POST | /api/v1/admin/contacts/confirmations | Confirm contact | ✅ | API | ❌ |
| PUT | /api/v1/admin/contacts/{id} | Update contact | ✅ | API | ❌ |
| DELETE | /api/v1/admin/contacts/{id} | Delete contact | ✅ | API | ❌ |
| POST | /api/v1/admin/contacts/{paymail} | Create contact | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| POST | /api/v1/admin/invitations/{id} | Accept invitation | ✅ | API | ❌ |
| DELETE | /api/v1/admin/invitations/{id} | Reject invitation | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/paymails | Search paymails | ✅ | API | ✅ |
| POST | /api/v1/admin/paymails | Create paymail | ✅ | API | ❌ |
| GET | /api/v1/admin/paymails/{id} | Retrieve paymail | ✅ | API | ❌ |
| DELETE | /api/v1/admin/paymails/{id} | Delete paymail | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/stats | Retrieve stats | ✅ | API | ✅ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/status | Retrieve status | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/transactions | Search transactions | ✅ | API | ✅ |
| GET | /api/v1/admin/transactions/{id} | Retrieve transaction | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/utxos | Search UTXOs | ✅ | API | ✅ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/webhooks/subscriptions | Subscribe to webhook | ✅ | API | ❌ |
| DELETE | /api/v1/admin/webhooks/subscriptions | Unsubscribe webhook | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/admin/users | Search XPubs | ✅ | API | ✅ |
| POST | /api/v1/admin/users | Create XPub | ✅ | API | ❌ |
API Non-Admin Endpoints Compatibility
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/users/current/keys | Search access keys | ✅ | API | ✅ |
| POST | /api/v1/users/current/keys | Create access key | ✅ | API | ❌ |
| GET | /api/v1/users/current/keys/{id} | Retrieve access key | ✅ | API | ❌ |
| DELETE | /api/v1/users/current/keys/{id} | Revoke access key | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/contacts | Search contacts | ✅ | API | ✅ |
| GET | /api/v1/contacts/{paymail} | Retrieve contact | ✅ | API | ❌ |
| PUT | /api/v1/contacts/{paymail} | Upsert contact | ✅ | API | ❌ |
| DELETE | /api/v1/contacts/{paymail} | Remove contact | ✅ | API | ❌ |
| POST | /api/v1/contacts/{paymail} | Confirm contact | ✅ | API | ❌ |
| DELETE | /api/v1/contacts/{paymail} | Unconfirm contact | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| POST | /api/v1/invitations/{paymail}/contacts | Accept invitation | ✅ | API | ❌ |
| DELETE | /api/v1/invitations/{paymail} | Reject invitation | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/merkleroots | Search Merkle roots | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/paymails | Search paymails | ✅ | API | ✅ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/transactions | Search transactions | ✅ | API | ✅ |
| POST | /api/v1/transactions | Record transaction | ✅ | API | ❌ |
| POST | /api/v1/transactions/drafts | Draft transaction | ✅ | API | ❌ |
| GET | /api/v1/transactions/{id} | Retrieve transaction | ✅ | API | ❌ |
| PATCH | /api/v1/transactions/{id} | Update transaction | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/utxos | Search UTXOs | ✅ | API | ❌ |
| HTTP Method | Endpoint | Action | Support Status | API Code | Pagination |
|---|---|---|---|---|---|
| GET | /api/v1/users/current | Retrieve current user info | ✅ | API | ❌ |
| PATCH | /api/v1/users/current | Update current user info | ✅ | API | ❌ |
Development Build Commands
Get the MAGE-X build tool for development:
go install github.com/mrz1836/mage-x/cmd/magex@latestView all build commands
magex helpRepository Features
This repository includes 25+ built-in features covering CI/CD, security, code quality, developer experience, and community tooling.
Library Deployment
This project uses goreleaser for streamlined binary and library deployment to GitHub. To get started, install it via:
brew install goreleaserThe release process is defined in the .goreleaser.yml configuration file.
Then create and push a new Git tag using:
magex version:bump push=true bump=patch branch=mainThis process ensures consistent, repeatable releases with properly versioned artifacts and citation metadata.
Pre-commit Hooks
Set up the Go-Pre-commit System to run the same formatting, linting, and tests defined in AGENTS.md before every commit:
go install github.com/mrz1836/go-pre-commit/cmd/go-pre-commit@latest
go-pre-commit installThe system is configured via modular env files in .github/env/ and provides 17x faster execution than traditional Python-based pre-commit hooks. See the complete documentation for details.
GitHub Workflows
All workflows are driven by modular configuration in .github/env/ — no YAML editing required.
Updating Dependencies
To update all dependencies (Go modules, linters, and related tools), run:
magex deps:updateThis command ensures all dependencies are brought up to date in a single step, including Go modules and any tools managed by MAGE-X. It is the recommended way to keep your development environment and CI in sync with the latest versions.
All unit tests and examples run via GitHub Actions and use Go version 1.24.x. View the configuration file.
Run all tests (fast):
magex testRun all tests with race detector (slower):
magex test:raceRun the Go benchmarks:
magex benchRead more about this Go project's code standards.
Read the AI Usage & Assistant Guidelines for details on how AI is used in this project and how to interact with AI assistants.
![]() |
![]() |
![]() |
|---|---|---|
| Siggi | Dylan | MrZ |
View the contributing guidelines and please follow the code of conduct.
All kinds of contributions are welcome 🙌! The most basic way to show your support is to star 🌟 the project, or to raise issues 💬.


