Giter Site home page Giter Site logo

fourbyte's Introduction

fourbyte Go Report Card GoDoc

4byte.directory API Client for Go.

Check out the endpoints or usage section for more information.

Documentation

https://pkg.go.dev/github.com/0xhyim/fourbyte

Install

go get -u github.com/0xhyim/fourbyte

Endpoints

Endpoint Function
/api/v1/signatures GetFunctionSignatures, GetFunctionSignatureById, CreateFunctionSignature
/api/v1/event-signatures GetEventSignatures, GetEventSignatureById, CreateEventSignature
/api/v1/import-solidity ImportFromSourceCode, ImportFromABI

Refer to 4byte.directory Official API Documentation for more information.

Usage

The fourbyte package provides access to all the endpoints listed above.

Basic Function Signature Lookup

package main

import (
	"context"
	"fmt"
	"log"

	"github.com/0xhyim/fourbyte"
)

func main() {
	response, err := fourbyte.GetFunctionSignatures(context.Background(), fourbyte.WithHexSignature("0x1249c58b"))
	if err != nil {
		log.Fatal(err)
	}
	// "mint()"
	fmt.Println(response.Signatures[0].TextSignature)
}

Signature Lookup (following Next)

package main

import (
	"context"
	"fmt"
	"log"

	"github.com/0xhyim/fourbyte"
)

func main() {
	signatures := []fourbyte.Signature{}
	response, err := fourbyte.GetFunctionSignatures(context.Background(), fourbyte.WithTextSignature("WETH"))
	if err != nil {
		log.Fatal(err)
	}
	signatures = append(signatures, response.Signatures...)
	for response.Next != nil {
		response, err = response.Next.Follow(context.Background())
		if err != nil {
			log.Fatal(err)
		}
		signatures = append(signatures, response.Signatures...)
	}
	fmt.Println(signatures)
}

TODOS

  • Add tests to project
  • Add documentation/comments to code

License

MIT License

fourbyte's People

Contributors

0xhyim avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

amarshallcn

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.