https://github.com/aptos-labs/aptos-go-sdk
Aptos Go SDK
https://github.com/aptos-labs/aptos-go-sdk
aptos blockchain go-sdk golang sdk
Last synced: 12 days ago
JSON representation
Aptos Go SDK
- Host: GitHub
- URL: https://github.com/aptos-labs/aptos-go-sdk
- Owner: aptos-labs
- License: apache-2.0
- Created: 2024-04-23T17:20:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-25T20:58:50.000Z (23 days ago)
- Last Synced: 2025-04-30T20:59:11.386Z (18 days ago)
- Topics: aptos, blockchain, go-sdk, golang, sdk
- Language: Go
- Homepage: https://aptos.dev/sdks/go-sdk
- Size: 718 KB
- Stars: 21
- Watchers: 32
- Forks: 29
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
[](https://pkg.go.dev/github.com/aptos-labs/aptos-go-sdk)
[](https://goreportcard.com/report/github.com/aptos-labs/aptos-go-sdk)

[](https://pkg.go.dev/github.com/aptos-labs/aptos-go-sdk)# aptos-go-sdk
An SDK for the Aptos blockchain in Go.
## Getting started
Add go to your `go.mod` file
```bash
go get -u github.com/aptos-labs/aptos-go-sdk
```## Where can I see examples?
Take a look at `examples/` for some examples of how to write clients.
## Where can I learn more?
You can read more about the Go SDK documentation on [aptos.dev](https://aptos.dev/sdks/go-sdk/)
## Feature support
- [x] BCS encoding and decoding
- [x] Structured API parsing
- [x] Ed25519 Signer support
- [x] MultiEd25519 support
- [x] Secp256k1 Signer support
- [x] On-chain and off-chain multi-sig support
- [x] Sponsored transaction and Multi-agent support
- [x] Fungible Asset support
- [x] Indexer support with limited queries
- [x] Transaction submission and waiting
- [x] External signer support e.g. HSMs or external services
- [x] Move Package publishing support
- [x] Move script support
- [x] Transaction Simulation
- [x] Automated sequence number management for parallel transaction submission### TODO
- [ ] Predetermined Indexer queries for Fungible Assets and Digital Assets
## Examples
- [x] Transaction signing
- [x] Fungible asset usage
- [x] External and alternative signing methods
- [x] On-chain multi-sig
- [x] Performance differences between transaction submission methods
- [x] Move package publishing support
- [x] Sponsored transaction example
- [x] Off-chain multi-sig example### TODO
- [ ] Multi-agent example
- [x] Script Example
- [ ] Digital assets / NFTs example
- [ ] Transaction parsing example (by blocks)## Other TODO
- [x] Ensure blocks fetch all transactions associated
- [ ] More testing around API parsing
- [ ] TypeTag string parsing
- [x] Add examples into the documentation# How to publish
1. Update changelog with a pull request
2. Create a new tag via e.g. v1.1.0 with the list of changes