Upload
Upload Data to the Blockchain
Every transaction on the blockchain is a data bundle. Instead of integrating locking and unlocking scripts to the UTXO, one can also upload arbitrary data.
A common use case for uploads is to store NFT images or videos in B://cat protocol format directly on-chain instead of on a server, to ensure the long term availability of the media file.
Our media /upload endpoint is currently available via API to seamlessly upload files.
We currently support uploads up to 20MB on the production server and keep extending the limits. In our prototypes we recently successfully uploaded >1GB files.
Same pruning considerations shall apply to the /upload endpoint.
Blockchain File Upload.
POST
https://api.relysia.com/upload
The /upload endpoint broadcasts a media file (supplied as URL) to the blockchain (in B:// protocol format).
Headers
Name | Type | Description |
---|---|---|
walletID | string |
Request Body
Name | Type | Description |
---|---|---|
fileUrl* | string | |
fileName* | string |
Last updated