sui-pfp
v0.0.17
Published
## Description
Downloads
3
Readme
sui-pfp
Description
The Sui Profile Picture Protocol allows Sui users to set a single Token-standard NFT as a universal PFP for the Sui blockchain.
Individual Sui protocols can use the documentation below both to show PFPs in their FE, and to provide functionality within their own FE to allow users to set a new PFP.
Example
import { JsonRpcProvider } from '@mysten/sui.js';
import { getProfilePicture } from 'sui-pfp';
const client = new JsonRpcProvider('https://fullnode.devnet.sui.io/');
const walletAddress = '0x28ed183435ad975c845871b8b1f72c16f1fd805c';
const { isAvailable, url } = await getProfilePicture(client, walletAddress);
API
Get the wallet's profile picture
function getProfilePicture (client: JsonRpcProvider, address: string, config: ProfilePictureConfig, programId?: string): Promise<ProfilePicture>
Params
client
- Sui JSON RPC provider objectaddress
- The address of the walletconfig
(optional)fallback
- Boolean, use a fallback generated image (defaulttrue
)resize
- Object with Cloudflare image resize params (default{ width: 100 }
)
programId
- PFP program id (optional)
Return value
Object with the following fields:
isAvailable
- Boolean,true
if there is a profile picture for the given walleturl
- The URL of the profile image, always populated (either a fallback image or an empty-image icon), you can choose to ignore it ifisAvailable
is falsename
- NFT name (only ifisAvailable: true
)address
- Owner addressnftId
- The NFT token identifier (only ifisAvailable: true
)
Transaction for setting an NFT for the profile picture
function createSetProfilePicturePayload (client: JsonRpcProvider, address: string, nftId: string, nftStandard?: string, programId?: string): Promise<Base64DataBuffer>
Params
client
- Sui JSON RPC provider objectaddress
- The address of the walletnftId
- The NFT token identifiernftStandard
- NFT standard to use (optional)programId
- PFP program id (optional)
Return value
A entry function transaction payload object
Transaction for unsetting the profile picture
function createUnsetProfilePicturePayload (client: JsonRpcProvider, address: string, pfpId: string, programId?: string): Promise<Base64DataBuffer>
Params
client
- Sui JSON RPC provider objectaddress
- The address of the walletpfpId
- The PFP object identifierprogramId
- PFP program id (optional)
Return value
A entry function transaction payload object