NFT Sharding (Fractional Ownership)
This means one can make it possible to own an NFT in parts by chopping it into small equal portions that different users own. This is especially good for high-value investments such as art or real estate-backed NFTs, and in this way, more people can invest.
Endpoint: POST /api/nfts/shard
Request Body:
json
Copy code
{
"contractId": "{contractId}",
"nftId": "{nftId}",
"shards": 100,
"shardRecipients": [
{
"wallet": "{walletAddress1}",
"amount": 30
},
{
"wallet": "{walletAddress2}",
"amount": 70
}
]
}
Description: This API allows someone to shards an NFT and assign each participant a percentage of ownership of the whole NFT. The shards parameter entails the number of shares while shardRecipients embodies the distribution of the shards amongst the wallets.
Last updated