Atlas Go SDK Quickstart
The Go SDK is intended for backend usage. More advanced tools are available, such as user and solver operations simulation.
Installation
To use the Atlas SDK in your Go project:
go get github.com/FastLane-Labs/atlas-sdk-go
Initialization
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)
}