🪙Previous Version 1.0

Author: Ivan Tsang (@ivantkf)

Created: 2023-03-13

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.

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 inscriptions, they can be traded, collected, and transferred as usual. Meanwhile, I am studying more standard protocols on Ethereum and seeing if they are possible to deploy on Bitcoin Core Network to support the inscriptions. The Ordinals Inscription here will be defined as BRC-721.

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": "xxxx",
 "url": "inscription xxxxxx"
}

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": "xxxx",
 "url": "inscription xxxxxx"
}

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 in various activities. Here is a basic example below (replace the x),

{
 "p": "brc-1155",
 "op": "burn",
 "abbrev": "xxxx",
 "url": "inscription xxxxxx",
 "vfy": "xxxxx"
}

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

4. Fractionalize

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": "xxxxxxxxx",
 "url": "inscription xxxxxx"
}

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

5. Recovery

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": "xxxxxxxxx",
 "url": "inscription xxxxxx",
 "vfy": "xxxxx"
}

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

6. Lock / Unlock (coming soon)

The locking capability of BRC-721 / BRC-1155 will be included in BRC-5058 standard

Suggestions

It is welcomed to provide recommendations for better improvement upon the structure, designs, rules, or compression issues it poses. For traceability json {} is required, as well as the minimum required information to satisfy one of the functions.

Ending

The standard is still updating. 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

BRC-5058 Standard: Locking Capability of BRC-721 / BRC-1155

Coming Soon

Last updated