Official Go SDK for Antgrid — managed key infrastructure for every chain.
go get github.com/VYLTH/antgrid-sdk-go/antgridpackage main
import (
"fmt"
antgrid "github.com/VYLTH/antgrid-sdk-go/antgrid"
)
func main() {
client := antgrid.NewClient("sk_live_...", "ss_live_...")
wallet, _ := client.Wallets.Create(antgrid.CreateWalletParams{
Chain: "ethereum",
Label: "strategy-1",
})
fmt.Println(wallet.Address)
}The default API base URL is https://api.antgrid.io/v1. Override with client.WithBaseURL(url) if needed.
MIT