The Benefits of PeerAssets

Peercoin Pulse
Peercoin
Published in
4 min readNov 10, 2016

--

Blockchain Agnostic Asset Protocols

While PeerAssets (PA) is part of a broad class of cryptocurrency asset-creation protocols, it has many advantages over other implementations. Asset protocols can be complex, even so far as to be a full turing-complete scripting language in which asset creation is just one of many possible functions. Other protocols are very simple, using a minimal set of basic functions such as “issue”, “transfer”, and “vote”. PA is as minimalist as possible, seeking to find the most efficient and affordable method for a blockchain to support tokenization. Other systems that can satisfy the goal of tokenization include colored coins, counterparty and omni protocols, Ethereum contracts, and other solutions like protocol level assets on NXT.

Blockchain agnosticism is a powerful feature of some protocols that allow the system to operate on virtually any blockchain by using common data fields in a transaction such as output addresses. Protocol-aware clients read messages encoded into these transactions and will present them to the user as tokens which the user can interact with. Because most blockchains share these same data fields, these protocols can be ported to nearly any cryptocurrency if a different blockchain is more suitable for any reason, such as security or governance. This is distinctly opposed to core protocols such as Ethereum smart contracts and the NXT asset system, as they are intrinsically tied to data fields not present in other cryptocurrency transactions.

Protocol Specifications

So far, blockchain agnostic asset protocols have been coded in two flavors. The first uses a 1-of-n multisignature address to encode relevant data into (n-1) private keys. When a small amount is sent to these special addresses clients can record the transaction as an asset event like a transfer or a vote. The use of multisig is done so that the output can be claimed by the sender to avoid bloating the UTXO table. The second method uses the OP_RETURN field of a transaction to post the encrypted asset function. The OP_RETURN field is a section of a cryptocurrency transaction that is open to contain any data desired without affecting the core outcome of the transaction. Essentially, core clients will ignore this field, making it perfect for protocol-aware clients. These fields are typically ~80 bytes and the protocol will use a marker string at the start of the message to tag transactions as protocol-relevant, such as the ‘CNTRPRTY’ string at the beginning of a counterparty function.

All previous blockchain agnostic asset protocols require a resource intensive asset node that will sift through the entire blockchain looking for messages encoded in the transactions. These heavy nodes greatly limit the applications of asset protocols, especially for larger blockchains like Bitcoin. A client is required to not only download the whole chain, but also search every transaction looking for relevant markers or addresses. The alternative is to rely on centralized API providers such that the client is no longer using a decentralized consensus process. Therefore, there is demand for a solution that not only avoids parsing the entire chain, but one that can also pick out just the relevant asset transactions without having to read through every other asset on the network.

PeerAssets uses a new flavor of protocol that utilizes both address and OP_RETURN to greatly reduce the required node resources. It uses a Pay-to-Tag-Hash (P2TH) system by which an output address with a publicly known public/private key pair is sent a small amount to mark the transaction as part of a ‘deck’. Any token function can tag the host transaction as a specific deck transaction using an output to the known P2TH address, though the token data is contained within OP_RETURN. The publicly known private key allows a light wallet to directly import the tagged address so the client can simply concern itself with the response to a ‘listoutputs’ RPC call tailored to the relevant assets. This method avoids searching through multitudes of hashes and transactions for the correct marker code or multisig address, allowing for very light asset wallets and efficient use of blockchain space.

Key Advantages

There are three main points I’d like to make as to the advantages of PA: It uses a more efficient protocol, it will be launched on the Peercoin blockchain, and it reduces cost for operating an asset over other implementations.

  1. PA has a compressed payload without a marker string, limiting the space consumption on the blockchain to less than 20 bytes per transaction for most transactions, allowing for a large ‘free_data’ field for other metainfo. It also greatly increases the efficiency of searching for asset transactions and minimizes the need for a blockchain parsing node that is heavy on resources. Finally, because the P2TH address has a publicly known private key, the miners/minters can and will redeem the tag outputs each block, thereby cleaning up the UTXO table. This design is more blockchain friendly than other implementations and will make the protocol on the whole more sustainable.
  2. Though PA is blockchain agnostic, launching on the Peercoin (PPC) blockchain carries with it many benefits. These advantages include a static fee of 0.01 PPC/KB, a blockchain smaller than 0.5 GB, responsive governance where burnt fees means minters are concerned with ppc use cases, and superior decentralization and security with minters located all over the world.
  3. There is no consumable fee token for PA aside from the PPC used to purchase space on the blockchain. The resulting operation costs are extremely small, both because of PA’s efficient design and because of the affordability of space on the Peercoin chain. Therefore, the asset upkeep for a PeerAssets project is less expensive than other blockchain agnostic implementations.

PeerAssets on the Peercoin blockchain are secure, have a low maintenance cost, and are easy to run using the lightest protocol on the lightest reputable chain.

The PeerAsset whitepaper can be found here:
http://peerassets.github.io/WhitePaper/

The P2TH writeup can be found here:
http://peerassets.github.io/P2TH/

The writer has not been involved in Peercoin or PeerAssets development.

--

--