Skip to content

Golang client for interaction with a MagicEden.io API

License

Notifications You must be signed in to change notification settings

letsnode/meclient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c4a1a2e · Jul 12, 2022

History

37 Commits
Jul 12, 2022
Jul 12, 2022
Jul 12, 2022
Jun 7, 2022
Jul 12, 2022
Jul 12, 2022
Jun 7, 2022

Repository files navigation

meclient

meclient is a library for interacting with MagicEden.io API. You can find the API specification at the link: https://api.magiceden.dev/

Installation

go get github.com/letsnode/meclient

Usage example

package main

import (
	"context"
	"fmt"
	
	"github.com/letsnode/meclient"
	"github.com/letsnode/meclient/methods"
)

func main()  {
	client := meclient.NewDefaultMeClient()
	lp, err := client.LaunchpadCollections(context.Background(), &methods.LimitOffsetOpts{Limit: 5})
	if err != nil {
		fmt.Println(err)
		return
	}
	...
}

About

Golang client for interaction with a MagicEden.io API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages