Skip to content
/ goarns Public
forked from everFinance/goarns

A simple ArNS implementation in Golang [WIP]

Notifications You must be signed in to change notification settings

wujunze/goarns

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go ArNS

GitHub go.mod Go version GitHub tag (latest SemVer) Go Report Card Unit-Tests Coverage Status Go Reference

中文说明

What is ArNS

ArNS: https://ar.io/arns/

Installation

go get github.com/everFinance/goarns

How to Use

package example

import (
	"github.com/everFinance/goarns"
	"time"
)

func QueryArNS() {

	dreUrl := "https://dre-3.warp.cc"
	arNSAddress := "bLAgYxAdX2Ry-nt6aH2ixgvJXbpsEYm28NgJgyqfs-U"
	timeout := 10 * time.Second

	domain := "arseeding"

	a := goarns.NewArNS(dreUrl, arNSAddress, timeout)

	txId, err := a.QueryLatestRecord(domain)

	if err != nil {
		print(err)
	}
	print(txId)

}

About

A simple ArNS implementation in Golang [WIP]

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%