Difference between revisions of "VAIF"

From Veriblock Wiki
Jump to: navigation, search
Line 14: Line 14:
 
<!--T:5-->
 
<!--T:5-->
 
The VeriBlock Altchain Integration Factory (VAIF) is a set of components to make it easy as possible for altchains to obtain PoP Security by integrating with VeriBlock.
 
The VeriBlock Altchain Integration Factory (VAIF) is a set of components to make it easy as possible for altchains to obtain PoP Security by integrating with VeriBlock.
 +
 +
For a new altchain to add pop security, there are several components they would need. These are non-trivial to build. For example, an Altchain PoP Miner, a C++ library to juggle the data structures needed for pop calculations, operations in the NodeCore network to juggle data structures, etc...
 +
 +
In theory, each altchain could write these components themselves. While that may be faster for the individual altchain, it would be much slower overall.
 +
 +
The VeriBlock team created such a set of reusable components, and ran it on live end-to-end altchains for both Bitcoin and Ethereum.
 +
 +
Over 90% of what an altchain needs to add pop security is reusable.
 +
 +
[[File:Vaif overview.png|800px]]
 +
  
 
<!--T:6-->
 
<!--T:6-->
This includes at least 4 parts:
+
The process for adding new altchains includes:
  
<!--T:7-->
+
# Github code reference implementation per family with a PR showing the delta
# Github code reference implementation per family with a PR showing the delta,
 
 
# Running demo environment to see that reference implementation in action,  
 
# Running demo environment to see that reference implementation in action,  
 
# Documentation to show the steps involved,  
 
# Documentation to show the steps involved,  
Line 30: Line 40:
 
* [[How_VeriBlock_PoP_vBFI_Protects_Altchains]]
 
* [[How_VeriBlock_PoP_vBFI_Protects_Altchains]]
 
* [[VeriBlock_and_Proof-of-Proof_FAQ]]
 
* [[VeriBlock_and_Proof-of-Proof_FAQ]]
* [[HowTo_Mine_BTCSQ]]
+
* [[BTCSQ]] (formerly codenamed 'vBTC') - a reference implementation for all other BTC-based altchains.
  
 
== Components == <!--T:9-->
 
== Components == <!--T:9-->

Revision as of 01:59, 27 October 2021

Other languages:

See: Main_Page, Altchain_List

PAGE IN PROGRESS.. UPDATES TO COME

Overview

The VeriBlock Altchain Integration Factory (VAIF) is a set of components to make it easy as possible for altchains to obtain PoP Security by integrating with VeriBlock.

For a new altchain to add pop security, there are several components they would need. These are non-trivial to build. For example, an Altchain PoP Miner, a C++ library to juggle the data structures needed for pop calculations, operations in the NodeCore network to juggle data structures, etc...

In theory, each altchain could write these components themselves. While that may be faster for the individual altchain, it would be much slower overall.

The VeriBlock team created such a set of reusable components, and ran it on live end-to-end altchains for both Bitcoin and Ethereum.

Over 90% of what an altchain needs to add pop security is reusable.

Vaif overview.png


The process for adding new altchains includes:

  1. Github code reference implementation per family with a PR showing the delta
  2. Running demo environment to see that reference implementation in action,
  3. Documentation to show the steps involved,
  4. Trained developer team to assist with onboarding.

General background

Components

Altchain Integration is like the "mousetrap problem", all parts all must work together for the end product to work. It's binary - all or nothing.

  • Altchain PoP Miner --> see: Altchain_PoP_Miner
  • Shared C++ Library
  • VeriBlock Security Network
  • ...


TODO...