Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Releases: web3-storage/go-w3s-client

v0.0.7

17 Oct 15:58
737a86c
Compare
Choose a tag to compare
  • Updates dependencies
  • Fixes sporadic time parsing issue

v0.0.6

07 Mar 15:00
4828c8b
Compare
Choose a tag to compare
  • Adds initial support for the Pinning Service API allowing users to "pin" CIDs to Web3.Storage using the new Pin method.
  • Bugfix for pin statuses in status response.

v0.0.5

29 Dec 21:43
924194b
Compare
Choose a tag to compare

Updates carbites dependency. No API changes.

v0.0.4

30 Nov 13:36
8e2c190
Compare
Choose a tag to compare
  • Adds List method for iterating over user uploads. Usage:

     uploads, _ := c.List(context.Background())
    
     for {
     	u, err := uploads.Next()
     	if err != nil {
     		if err == io.EOF {
     			break // finished successfully
     		}
     		panic(err)
     	}
     	fmt.Printf("%s	%s	Size: %d	Deals: %d	Pins: %d\n", u.Created.Format("2006-01-02 15:04:05"), u.Cid, u.DagSize, len(u.Deals), len(u.Pins))
     }