Difference between revisions of "VAIF"
VeriBlockTim (talk | contribs) |
VeriBlockTim (talk | contribs) |
||
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--> | ||
− | + | The process for adding new altchains includes: | |
− | + | # 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]] | ||
− | * [[ | + | * [[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
See: Main_Page, Altchain_List
PAGE IN PROGRESS.. UPDATES TO COME
Contents
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.
The process for adding new altchains includes:
- Github code reference implementation per family with a PR showing the delta
- Running demo environment to see that reference implementation in action,
- Documentation to show the steps involved,
- Trained developer team to assist with onboarding.
General background
- Altchain_PoP_Lifecycle
- VAIF_Technical_FAQ
- How_VeriBlock_PoP_vBFI_Protects_Altchains
- VeriBlock_and_Proof-of-Proof_FAQ
- BTCSQ (formerly codenamed 'vBTC') - a reference implementation for all other BTC-based altchains.
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...