Skip to content

Commit

Permalink
feat: add Web3.Storage and Estuary to pinning service templates (#2026)
Browse files Browse the repository at this point in the history
* feat: add Web3.Storage  pinning provider
* feat: add Estuary  pinning provider
* chore: use dweb.link for gw links
  • Loading branch information
SgtPooki authored Sep 15, 2022
1 parent b30ed14 commit 3aae1f2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/constants/pinning.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,20 @@ const pinningServiceTemplates = [
icon: 'https://dweb.link/ipfs/QmWBaeu6y1zEcKbsEqCuhuDHPL3W8pZouCPdafMCRCSUWk?filename=filebase.png',
apiEndpoint: 'https://api.filebase.io/v1/ipfs',
visitServiceUrl: 'https://docs.filebase.com/api-documentation/ipfs-pinning-service-api'
},
{
name: 'Web3.Storage',
icon: 'https://dweb.link/ipfs/bafybeiaqsdwuwemchbofzok4cq7cuvotfs6bgickxdqr6f7hdt7a64cwwa/Web3.Storage-logo.svg',
apiEndpoint: 'https://api.web3.storage/pins',
visitServiceUrl: 'https://web3.storage/docs/how-tos/pinning-services-api/'
},
{
name: 'Estuary',
icon: 'https://dweb.link/ipfs/bafkreicn36fjx2tlanzslpayomdhgerh7oovlaasfkg7ltzgztf7a3buu4?filename=Estuary-logo.svg',
apiEndpoint: 'https://api.estuary.tech/pinning/pins',
visitServiceUrl: 'https://docs.estuary.tech/tutorial-get-an-api-key'
}

].map((service) => {
const domain = new URL(service.apiEndpoint).hostname
service.complianceReportUrl = `${complianceReportsHomepage}/${domain}.html`
Expand Down

0 comments on commit 3aae1f2

Please sign in to comment.