BRC-1155 Standard

This idea is about deploying the ERC-1155 standard from Ethereum to Bitcoin Core to minimize the inscribing costs to achieve ownership and explore more possibilities in Ordinals Inscriptions.

Author: Ivan Tsang (@ivantkf)

Co-developers: aowu (@aowu2048), c00k1e (@lonelyhorseme), PD

Latest: 2023-06-08 (v1.1.7) {Block Height 793,277}

Created: 2023-03-13 (v1.0) [Inscription 454318] {Block Height 780,684}

Require: Ordinals

Vision

Be Your Own Bank.

Inscription (NFT) is one of the ways to achieve Bitcoin-M instead of USD-M. When Ethereum NFTs have been shown up at the beginning, there was a moment when people were more focused on Ether ($ETH) than USD to reach Ether-M instead of USD-M, and that's what I am trying to achieve and promote to the general public.

Mission

Track the direct path to success and avoid to walk along a wrong way.

We have run for Ordinals to catch up with Ethereum by tracing its right path in just a few months. I am studying more standard protocols on Ethereum and seeing if they are possible to deploy on Bitcoin Core Network to expand the ecosystem of inscriptions. Then, we have our own way to go. The Ordinals Inscription here will be defined as similar to the ERC-721 protocol standard.

Background

BRC-1155 Foundation (@BRC1155)

The BRC-1155 Foundation has been established by the author and co-developers of the protocol on 22 May 2023 (Bitcoin Pizza Day). The organization will mainly support and help the project teams who are going to use the BRC-1155 protocol for Profile Picture (PFP), airdrop and so on.

Purpose

Your next ownership of image inscriptions is not an image.

What makes Ordinals inscriptions special is that the whole thing is inscribed on-chain. We have paid a lot of gas to inscribe some project items with the SAME images, but in order to achieve ownership of that image inscriptions, it is unnecessary to pay at least 5x (5 times), and even more than 10x (10 times) of extra gas for inscribing an image. After all, the image is just the appearance, the actual core value of Inscription is OWNERSHIP.

Idea

The concept is inspired by the brc-20 and ERC-1155 standards. The inscriptions with BRC-1155 standard are just another kind of Ordinals image inscriptions but replaced by code, they can be traded, collected, and transferred as usual. Meanwhile, we are currently building an official front-end website with the indexer of BRC-1155 standard for users to see their image inscriptions directly. To conclude the idea, you only need to inscribe the image on-chain once.

Trading

The inscription will be shown as the on-chain data on the wallet side, which means it is exactly what is inscribed. Yet, the concept of the BRC-1155 protocol is going to achieve the ownership of the image inscription, so that the actual appearance of the code inscription with the BRC-1155 protocol is an image, after all the root requirement of trading is supported by the ownership. Therefore, the trading experience should be as similar as usual instead of showing the code.

Language

{text/plain} and {application/json} are both supported

For traceability json {} is required, as well as the minimum required information to satisfy one of the functions. However, sometimes we will make some careless typo mistakes which inscribe an inscription with invalid JSON that causes unable to be searched by the indexer. The invalid one could be not considered as one of the valid BRC-1155 pieces of the original image inscription by the project. Hence, please ensure your JSON code is correct before creating an inscription by using the following online JSON tools for double-checking.

Introduction

This is demonstrating what operations we can do above {deploy, burn, fractionalize, recovery, mint} by using the BRC-1155 standard, and the function structure below,

Operations

1. Deploy

The project owners could create a BRC-1155 collection of their inscriptions with a single image to inscribe the rules and save the cost. Here is a basic example below (replace the x),

{
 "p": "brc-1155",
 "op": "deploy",
 "abbrev": "xxxxxxxxxx",
 "inscription": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}

An inscription with a picture MUST be inscribed before deploying the BRC-1155 standard

2. Inscribe (Mint)

All users are allowed to inscribe different quantities of the inscriptions with BRC-1155 standard to collect a valid piece of the expensive inscriptions at an affordable price until it reaches the maximum quantity. The reminding available quantity is only valid according to a first-come-first-served basis. Here is a basic example below (replace the x),

{
 "p": "brc-1155",
 "op": "mint",
 "abbrev": "xxxxxxxxxx",
 "inscription": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}

Stay alert for scammers and focus on the maximum inscription number.

3. Burn

The project owners / Fractionalized creators could burn inscriptions / fractionalized pieces within the BRC-1155 collections by connecting {deploy} with the verify code if it contains too many uninscribed inscriptions to decrease the total supply or achieve deflation or even further situations in various activities. Here is a basic example below (replace the x),

{
 "p": "brc-1155",
 "op": "burn",
 "abbrev": "xxxxxxxxxx",
 "inscription": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
 "vfy": "xxxxx"
}

An {deploy} MUST be inscribed before deploying the {burn} action to connect the {vfy}

4. Fractionalize (Not Yet Support)

The holder of each BRC-721 inscription could fractionalize to separate a BRC-721 Inscription into many pieces to save the inscribing cost by inscribing WITHOUT the duplicated images. Here is a basic example below (replace the x),

{
 "p": "brc-1155",
 "op": "fractionalize",
 "abbrev": "xxxxxxxxxx",
 "inscription": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}

This operation is ONLY available for the inscriptions with the BRC-721 standard.

5. Recovery (Not Yet Support)

The inscription holder could recover or even get the inscription back by fractionalizing the original inscription for 1 more piece and using the verification code to prove the ownership of the inscription to re-inscribe for taking back control. Here is a basic example below (replace the x),

{
 "p": "brc-1155",
 "op": "recovery",
 "abbrev": "xxxxxxxxxx",
 "inscription": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
 "vfy": "xxxxx"
}

The recovery function for taking back control is depending on the view of project teams.

Suggestions

It is welcomed to provide recommendations for better improvement upon the structure, designs, rules, or compression issues it poses. The following list has recorded the accepted advice from the community, please also respect and appreciate their contribution to the BRC-1155 protocol.

Ending

The standard protocol is still updating, we will officially publish the whitepaper once it is finished. Thank you for taking the time to read the whole passage. You are going to be one of the historical witnesses in Bitcoin development. Please bear in mind that these might be worthless, but the journey should be priceless.

Extention of Supporting Standard

Last updated