在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:wabarc/ipfs-pinner开源软件地址:https://github.com/wabarc/ipfs-pinner开源编程语言:Go 92.9%开源软件介绍:ipfs-pinner
Supported Golang version: See .github/workflows/testing.yml InstallationVia Golang package get command go get -u github.com/wabarc/ipfs-pinner/cmd/ipfs-pinner Using Snapcraft (on GNU/Linux) snap install ipfs-pinner UsageSupported Pinning ServicesInfuraInfura is a freemium pinning service that doesn't require any additional setup. It's the default one used. Please bear in mind that Infura is a free service, so there is probably a rate-limiting. How to enableCommand-line: Use flag $ ipfs-pinner
A CLI tool for pin files or directory to IPFS.
Usage:
ipfs-pinner [flags] [path]...
Flags:
-p string
Pinner sceret or password.
-t string
IPFS pinner, supports pinners: infura, pinata, nftstorage, web3storage. (default "infura")
-u string
Pinner apikey or username. Go package: import (
"fmt"
"github.com/wabarc/ipfs-pinner/pkg/infura"
)
func main() {
cid, err := infura.PinFile("file-to-path");
if err != nil {
fmt.Sprintln(err)
return
}
fmt.Println(cid)
} or requests with project authentication import (
"fmt"
"github.com/wabarc/ipfs-pinner/pkg/infura"
)
func main() {
inf := &infura.Infura{ProjectID: "your-project-id", ProjectSecret: "your-project-secret"}
cid, err := inf.PinFile("file-to-path");
if err != nil {
fmt.Sprintln(err)
return
}
fmt.Println(cid)
} PinataPinata is another freemium pinning service. It gives you more control over what's uploaded. You can delete, label and add custom metadata. This service requires signup. Environment variablesUnix*: IPFS_PINNER_PINATA_API_KEY=<api key>
IPFS_PINNER_PINATA_SECRET_API_KEY=<secret api key> Windows: set IPFS_PINNER_PINATA_API_KEY=<api key>
set IPFS_PINNER_PINATA_SECRET_API_KEY=<secret api key> How to enableCommand-line: Use flag ipfs-pinner -p pinata file-to-path Go package: import (
"fmt"
"github.com/wabarc/ipfs-pinner/pkg/pinata"
)
func main() {
pnt := pinata.Pinata{Apikey: "your api key", Secret: "your secret key"}
cid, err := pnt.PinFile("file-to-path");
if err != nil {
fmt.Sprintln(err)
return
}
fmt.Println(cid)
} NFT.StorageNFT.Storage is a long-term storage service designed for off-chain NFT data (like metadata, images, and other assets) for up to 31GiB in size. Data is content addressed using IPFS, meaning the URL pointing to a piece of data (“ipfs://…”) is completely unique to that data. How to enableCommand-line: Use flag ipfs-pinner -p nftstorage file-to-path Go package: import (
"fmt"
"github.com/wabarc/ipfs-pinner/pkg/nftstorage"
)
func main() {
nft := nftstorage.NFTStorage{Apikey: "your api key"}
cid, err := nft.PinFile("file-to-path");
if err != nil {
fmt.Sprintln(err)
return
}
fmt.Println(cid)
} Web3.StorageWeb3.Storage is a service to make building on top of Filecoin as simple as possible - giving the developers the power of open, distributed networks via a friendly JS client library. Behind the scenes, Web3.Storage is backed by Filecoin and makes content available via IPFS leveraging the unique properties of each network. How to enableCommand-line: Use flag ipfs-pinner -p web3storage file-to-path Go package: import (
"fmt"
"github.com/wabarc/ipfs-pinner/pkg/web3storage"
)
func main() {
web3 := web3storage.Web3Storage{Apikey: "your api key"}
cid, err := web3.PinFile("file-to-path");
if err != nil {
fmt.Sprintln(err)
return
}
fmt.Println(cid)
} LicensePermissive GPL 3.0 license, see the LICENSE file for details. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论