Golang Package for Opensea API Access and Use
Here is a list of TODO's before this package is considered 'ready' for true production code. Until then, we are in a beta stage and things will likely change.
- - error return with opensea.New
- - CICD (via github actions) for releases/tags
- - Finish structs around 'asset' response
- - v1 changes to exported CONST provided by OpenSea package
- - all package calls need to return ERR and not FATAL log in package
package main
import (
"github.com/jbkc85/go-opensea"
)
func main() {
client = opensea.New(os.Getenv("OPENSEA_API_KEY"), "v1", "verbose")
collection = client.GetCollection("rumble-kong-league")
fmt.Printf("%v", collection)
}
- Jason Cameron jbkc85@gmail.com