Download the SDK package.
go get github.com/FastLane-Labs/atlas-sdk-go
Import the package and initialize the SDK.
package main
import (
"github.com/FastLane-Labs/atlas-sdk-go/core"
"github.com/ethereum/go-ethereum/ethclient"
)
func main() {
ethClient, _ := ethclient.Dial("https://rpc.sepolia.org")
defer ethClient.Close()
sdk, _ := core.NewAtlasSdk([]interface{}{ethClient}, nil)
}
The full API reference is described in this document: https://atlas-docs.pages.dev/atlas/sdks/golang/methods.