Glossary
Taproot Assets make use of several novel concepts, all of which we attempt to briefly define here.
Last updated
Was this helpful?
Taproot Assets make use of several novel concepts, all of which we attempt to briefly define here.
Last updated
Was this helpful?
The anchor transaction is the Bitcoin transaction that mints or transfers a Taproot Asset.
An asset group describes a series of assets, as identified by their asset ID, for which new assets can be added by the issuer.
The asset ID is used to identify an asset. It is the hash of the , the and the data. It is a globally unique identifier. If an asset is , each minted series contains its own asset ID.
The asset tag is equivalent to the name of an asset. Other information is collected as part of the .
A batch is a set of Taproot Asset mints or transfers that are contained in a single Bitcoin-level UTXO.
Burning an asset means irrevocably removing it from the circulating supply.
A collectible, unique or non-fungible asset, unlike a normal asset, cannot be divided or aggregated, as there are no other units of its kind. It can however be put into a collection with other similar collectibles.
A commitment is typically the hash of data that is to be permanently recorded to have existed at a certain point in time, and in a certain utxo.
The genesis point is the first input of the transaction that mints a Taproot Asset.
The group key identifies normal and collectible assets that do not have a fixed supply. When new assets of this group are minted, a signature using this key must be present.
The internal key is the key that is able to spend the Taproot Bitcoin UTXO.
The issuer of an asset is whoever creates and publishes the mint transaction. The issuer of a grouped asset is identified using the group key.
Lightning Polar is software that helps you simulate a regtest Lightning environment in which you can easily add multiple nodes. It can also be used to test Taproot Assets mints and transactions.
The Merkle root is the hash at the very top of the Merkle tree. If a single value in the Merkle tree changes, the root also changes.
The asset meta data can be used to commit to any arbitrary data. Most commonly it describes the asset and its terms or represents the asset itself.
The action of issuing an asset. Also see -> issuer.
Also see -> .
A normal or fungible asset is one that is divisible into a predefined set of units. Each unit is expected to be valued the same as any other unit of the same asset. Normal assets can be fixed in total supply, or be part of an -> asset group.
The proof file contains information about the asset, when and how it was minted as well as previous transfers. it is needed to verify ownership over an asset.
A partially signed Bitcoin transaction is a file format that lets two wallets communicate only specific details about a new transaction, for example only its inputs, or only its outputs. These PSBTs can be used to sign transactions with external signing devices, or allow multiple parties to contribute inputs to one transaction.
A sparse merkle tree is a merkle tree over all numbers of a given space. A sparse merkle tree over 2^256 for example theoretically contains 2^256 leafs. It can be computed because by default all leafs are empty. Sparse merkle trees help with exclusion proofs, e.g. proving something is not present in a merkle tree.
The supply of an asset is the total amount of units of that asset in circulation. For -> grouped assets, this supply can be increased later. For all assets, it can be reduced by -> burning a portion of the supply.
Taproot Assets Protocol Daemon is the reference implementation for Taproot Assets.
Taproot is a Bitcoin transaction type. Bitcoin sent to taproot scripts can be unlocked either using the -> internal key or a predefined set of conditions, the -> tapscript.
A Taproot Assets address is created by the recipient of an asset to be able to receive an asset. Such addresses are specific to an asset and an amount and should not be reused.
Taproot Assets leverages Taproot transactions to commit to newly created assets and their transfers in an efficient and scalable manner.
Taproot Assets can be deposited into Lightning channels. These channels are referred to as Taproot Asset Channels.
Tapscript is a feature of -> Taproot transactions that allows to create various conditional spending conditions. Taproot Assets and their merkle trees are stored in the Tapscript.
The Tapscript sibling is the hash in the leaf next to the data in question. The sibling is needed to compute the -> Merkle root.
See also -> Collectibles.
A universe is a server that serves information about assets and their transfers. Universes can also be used to transfer proof files between users.
Virtual partially signed Bitcoin transactions achieve what -> PSBTs achieve, but on the Taproot Assets layer. Using vPSBTs, it becomes easier to batch Taproot Asset transactions, use external signing devices or assemble transactions between the Taproot asset and Bitcoin layer.
A vUTXO is a Taproot Assets utxo. As the Taproot Assets themselves are not perfectly synonymous with the Bitcoin UTXO that they are anchored in, vUTXOs are used to reference them.
A collection is a of collectibles. While every item in the collection is unique, they can still be identified as part of the same collection using the group key.
See also .
A leaf is the lowest level in a . They typically contain the data that the Merkle tree commits to.
A merkle sum tree is a Merkle tree that for each leaf contains a numerical value, which is sumed up in each node. The sum at the is equal to the sum of values at the leafs.
In a merkle tree a pair of items is hashed, the pair then hashed with other pairs until only a single hash is left, the . This helps to cheaply commit to large amounts of arbitrary data and check whether anything has changed.