Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(remotepins): add Functionland Fula #2242

Merged
merged 4 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/components/pinning-manager/fixtures/pinningServices.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ const services = [
totalSize: 4412221323,
bandwidthUsed: '2 GB/mo',
addedAt: new Date(1592491648591)
}, {
name: 'Functionland',
icon: 'https://fx.land/android-chrome-512x512.png',
totalSize: undefined,
bandwidthUsed: undefined,
addedAt: new Date(1687896930567)
}, {
name: 'Eternum',
icon: 'https://www.eternum.io/static/images/icons/favicon-32x32.a2341c8ec160.png',
Expand Down
6 changes: 6 additions & 0 deletions src/constants/pinning.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ const pinningServiceTemplates = [
apiEndpoint: 'https://api.filebase.io/v1/ipfs',
visitServiceUrl: 'https://docs.filebase.com/api-documentation/ipfs-pinning-service-api'
},
{
name: 'Functionland',
icon: 'https://dweb.link/ipfs/bafybeidgnnvgm6i3pfzhjakgzcdwdbvwtmkkx7vzeiyvtk2b4oxis53vhm?filename=functionland.png',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just realized IPFS version is 5000x5000 pixels in size for some reason.
@ehsan6sha do you have SVG by any chance? If not, we should switch to 512x512.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Provisionally, replaced 192k PNG with 7k SVG:

Suggested change
icon: 'https://dweb.link/ipfs/bafybeidgnnvgm6i3pfzhjakgzcdwdbvwtmkkx7vzeiyvtk2b4oxis53vhm?filename=functionland.png',
icon: 'https://dweb.link/ipfs/QmWYEmdYq9Ry2xtb69oZSPXb8Aos24kWdVecsT3txVe38E?filename=functionland.svg',

Let's see how it looks.

apiEndpoint: 'https://api.cloud.fx.land',
visitServiceUrl: 'https://docs.fx.land/pinning-service/ipfs-pinning-service-api'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ehsan6sha what is the ETA for general availability?

The docs at https://docs.fx.land/pinning-service/ipfs-pinning-service-api#authentication state it is invite-only, and https://cloud.fx.land/ is a broken link.

WebUI is shipping inside IPFS Desktop, and as bare minimum for reviewing this PR, a regular user needs to be able to use it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @lidel for mentioning that . We were planning to officially announce the release later, but I made it live now. the website and instructions are updated and easy to use for anyone:
https://cloud.fx.land/

},
{
name: 'Web3.Storage',
icon: 'https://dweb.link/ipfs/bafybeiaqsdwuwemchbofzok4cq7cuvotfs6bgickxdqr6f7hdt7a64cwwa/Web3.Storage-logo.svg',
Expand Down
Loading