Second Generation of Bitcoin

Size: px
Start display at page:

Download "Second Generation of Bitcoin"

Transcription

1 1 Second Generation of Bitcoin White Paper The BitClassic Team

2 2 CONTENTS 1. Abstract 3 What is BitClassic? 3 2. Blockchain 4 3. Mathematical Representation 5 4. Proof-of-Work 5 5. Proof-of-Stake 6 6. Smart Contracts 7 7. Secure 8 8. Transparency 8 9. Staking Mining Disclaimer Conclusion Facts 10

3 3 BitClassic: A Peer-to-Peer Electronic Cash System Abstract A purely peer-to-peer version of electronic cash would allow online payments to be sent directly from one party to another without going through a financial institution. Digital signatures provide part of the solution, but the main benefits are lost if a trusted third party is still required to prevent double-spending. We propose a solution to the double-spending problem using a peer to peer network. The network timestamps transactions by hashing them into an ongoing chain of hash-based POW/POS, forming a record that cannot be changed without redoing the POW/POS. The longest chain not only serves as proof of the sequence of events witnessed, but proof that it came from the largest pool of CPU power. As the blockchain industry expands and the number and value of crypto assets increase, the market for crypto-investing and speculation will also grow. Crypto markets are borderless, open 24/7, subject to minimal regulatory control, and offer huge potentials for growth. Because of these characteristics, crypto markets represent an incredible, new opportunity for investors over traditional markets. Currently, the crypto-investment market is primed to attract new investors into the blockchain industry. However, the learning curve for investing in crypto assets is extremely steep and the marketplace lacks sophisticated tools and information products that will encourage new users to make the jump into the crypto community. What is BitClassic? BitClassic (B2C) is a digital currency that can be sent between people over the internet. BitClassic (B2C) stays true to the original vision of cryptocurrency: a financial system owned by its users, the people s coin. BitClassic (B2C) is not controlled by large banks or mining hardware manufacturers and can be mined by anyone profitably.

4 4 BitClassic (B2C) is an open source, blockchain based, decentralized cryptocurrency that enables instant payments to anyone with minimum transaction fees. BitClassic also allows you to earn interest for helping maintain security on the network by holding B2C in a Qt Desktop wallet that is attached to the network and allowing transactions to flow through it. A finite resource similar to gold, you can rest assured that BitClassic (B2C) will keep your money safe from vested interests and ensure that transaction fees are proportionate and shared between a large number of miners. With BitClassic (B2C), you can truly be your own bank. BitClassic (B2C) is an open source, peer-to-peer, community driven decentralized cryptocurrency that allow people to store and invest their wealth in a non-government controlled currency, and even earn a substantial interest on investment. We have seen counterparty reduction emerge in e-commerce, where goods are now often purchased straight from manufacturers. In financial services, the trend up until now has seen financial technology companies building their businesses by piggybacking off existing infrastructure to create better solutions for individual products. For example, remittance companies have emerged simply because they could process bank wires faster in various countries. However, such technologies have created numerous counterparties. By being a core participant in financial markets, BitClassic (B2C) can provide many services without the need for such counterparties. Blockchain The BitClassic Blockchain focuses on addressing critical issues related to community adoption and sustainability. This means that people who find themselves using the currency mined on this blockchain must be able to maintain their sovereignty by protecting their balances in such a way that adversaries cannot analyze and make targets of the users. Therefore, the currency must employ anonymizing features to protect the people who use it. Secondly, users should be able to exercise activities over the blockchain, in this case exposing a marketplace where people can buy and sell the things that they want and need from other people without leaving the confines of the BitClassic peer to peer network. In addition, the sustainability aspect depends on the blockchain not being constrained and prone to spam attacks due to full blocks as is the case with Bitcoin.

5 5 Mathematical Representation A blockchain protocol is fundamentally a monadic implementation of concurrent mutations of a global state. This is achieved by defining blocks as operators acting on this global state. The free monoid of blocks acting on the genesis state forms a tree structure. A global, canonical, state is defined as the minimal leaf for a specified ordering. This suggests the following abstract representation: - Let (S, ) be a totally ordered, countable, set of possible states. - Let / S represent a special, invalid, state. - Let B S S { } be the set of blocks. The set of valid blocks is B S S. The total order on S is extended so that s S, < s. This order determines which leaf in the block tree is considered to be the canonical one. Blocks in B are seen as operators acting on the state. All in all, any blockchain protocol (be it Bitcoin, Litecoin, Peercoin, Ethereum, Cryptonote, etc) can be fully determined by the tuple: ( S,,, B S S { }) The networking protocol is fundamentally identical for these blockchains. Mining algorithms are but an emergent property of the network, given the incentives for block creation. In BitClassic, we make a blockchain protocol introspective by letting blocks act on the protocol itself. We can then express the set of protocols recursively as P = {(S,,, B S (S P) { })} Proof of-work To implement a distributed timestamp server on a peer-to-peer basis, we will need to use a proof- of-work system similar to Adam Back's Hashcash [6], rather than newspaper or Usenet posts. The proof-of-work involves scanning for a value that when hashed, such as with SHA-256, the hash begins with a number of zero bits. The average work required is exponential in the number of zero bits required and can be verified by executing a single hash. For our timestamp network, we implement the proof-of-work by

6 6 incrementing a nonce in the block until a value is found that gives the block's hash the required zero bits. Once the CPU effort has been expended to make it satisfy the proof-of-work, the block cannot be changed without redoing the work. As later blocks are chained after it, the work to change the block would include redoing all the blocks after it. Block Block Prev Hash Nonce Prev Hash Nonce Tx Tx... Tx Tx... The proof-of-work also solves the problem of determining representation in majority decision making. If the majority were based on one-ip-address-one-vote, it could be subverted by anyone able to allocate many IPs. Proof-of-work is essentially one-cpu-one-vote. The majority decision is represented by the longest chain, which has the greatest proof-of-work effort invested in it. If a majority of CPU power is controlled by honest nodes, the honest chain will grow the fastest and outpace any competing chains. To modify a past block, an attacker would have to redo the proof-of-work of the block and all blocks after it and then catch up with and surpass the work of the honest nodes. We will show later that the probability of a slower attacker catching up diminishes exponentially as subsequent blocks are added. To compensate for increasing hardware speed and varying interest in running nodes over time, the proof-of-work difficulty is determined by a moving average targeting an average number of blocks per hour. If they're generated too fast, the difficulty increases. Proof-of-Stake BitClassic can implement any type of blockchain algorithm: proof-of-work, proof-of-stake, or even centralized. Due to the shortcomings of the proof-of-work mechanism, the BitClassic seed protocol implements a proof-of-stake system. There are considerable theoretical hurdles to designing a working proof-of-stake systems, we will explain our way of dealing with them. Is Proof-of-Stake Impossible? There are very serious theoretical hurdles to any proof-of-stake system. The main argument against the very possibility of a proof-of-stake system is the A full, technical, description of our proof-of-stake system is given in the BitClassic white paper. A new user downloads a client and connects for the first time to the network. He receives a tree of blocks with two larges branches starting

7 7 from the genesis hash. Both branches display a thriving economic activity, but they represent two fundamentally different histories. One has clearly been crafted by an attacker, but which one is the real chain? In the case of Bitcoin, the canonical blockchain is the one representing the largest amount of work. This does not mean that rewriting history is impossible, but it is costly to do so, especially as one s hashing power could be used towards mining blocks on the real blockchain. In a proof-of-stake system where blocks are signed by stakeholders, a former stakeholder (who has since cashed out) could use his old signatures to costlessly fork the blockchain this is known as the nothing-at-stake problem. Smart Contracts Though Bitcoin does allow for smart contracts, most of its opcodes have been historically disabled and the possibilities are limited. Ethereum introduced a smart contract system with some critical differences: their scripting language is Turing complete and they substitute stateful accounts to Bitcoin s unspent outputs. While emphasis has been put on the Turing complete aspect of the language, the second property is by far the most interesting and powerful of the two. In Bitcoin, an output can be thought of as having only two states: spent and unspent. In Ethereum, accounts (protected by a key) hold a balance, a contract code and a data store. The state of an account s storage can be mutated by making a transaction towards this account. The transaction specifies an amount and the parameters passed to the contract code. A downside of a Turing complete scripting language for the contracts is that the number of steps needed to execute a script is potentially unbounded, a property which is generally uncomputable. To address this problem, Ethereum has devised a system by which the miner validating the transaction requires a fee proportional to the complexity and number of steps needed to execute the contract. Yet, for the blockchain to be secure, all the active nodes need to validate the transaction. A malicious miner could include in his block a transaction that he crafted specially to run into an infinite loop and pay himself an exorbitant fee for validating this transaction. Other miners could waste a very long time validating this transaction. Worse, they could just slack and fail to validate it. In practice though, most of the interesting smart contracts can be implemented with very simple business logic and do not need to perform complex calculations. Our solution is to cap the maximum number of steps that a program is allowed to run for in a single transaction. Since blocks have a size limit that caps the number of transactions per block, there is also a cap on the number of computation steps per block. This rate limitation foils CPU usage denial of service attacks. Meanwhile, legitimate users can issue multiple transactions to compute more steps than

8 8 allowed in a single transaction, though at a limited rate. Miners may decide to exclude too long of an execution if they feel the included fee is too small. Since the BitClassic protocol is amendable, the cap can be increased in future revisions and new cryptographic primitives included in the scripting language as the need develops. Secure People use different encryption techniques to authenticate the transfer of money, which is self-governing (that is, it is not dependent on central bank) and synchronize the generation of the units of the currency in decentralized currencies. Cryptocurrencies are decentralized; and as a digital currency, it offers a definite and secure environment. Moreover, it has made possible to gather individual wealth without any hassle, which was unachievable and anonymous. Transparency In cryptocurrencies, all of the transactions are obvious. The flow of currency transactions is very simple. So if there is any invalid or fake details related to the person using the system provided, the high level transparency of this decentralized currency can easily identify the real fact. Staking You can deposit you Bitcoins, Litecoin, Dashcoin & other AltCoin at the B2C exchange and then BitClassic coin. You can then deposit you BitClassic coin in your Windows, Mac and Linux wallet. The profit depends on the amount of coins deposited by you. The higher the coins the more will be the earned profit. As BitClassic Coin s blockchain technology will give you bonus you when you hold your coin and your coin will be used to stake. It is a way to confirm transaction for the system, the more you keep BitClassic Coin, the more bonus you earn from Staking. This means that if you just hold your coin in your wallet over time, and your coins are not used for Staking, you could miss substantial benefit. So, if you have BitClassic Coin that you are not involved in trading then you should be involved in staking. With BitClassic Coin, you are always guaranteed to earn profit in one way or another. Mining You can also earn profits by mining BitClassic Coin. You need to invest in hardware resources, (CPU and GPU or ASCI) and using POW for mining

9 9 BitClasiic Coin. You just need to download miner for mining B2C and start BitClassic coin mining. For each block being mined you will be getting 25 B2C. There are two ways of mining, solo mining. You can choose between solo mining. You can visit our website for more information. Disclaimer This whitepaper does not provide any type of legally binding contract. BitClassic coin Team does not accept any legal liability arising from the material contained in this whitepaper. Anyone looking to invest in cryptocurrency should seek professional advice regarding tax regulations and legislations in their local area. The material provided here represents our current plans for the cryptocurrency platform. The details may change (including ICO distribution plans) and should not be considered finalized. BitClassic coin co-founders and employees do not offer investment advice under any circumstances. No entity is legally bound or contractually obligated by the transferring of BitClassic coin or fiat currency. Contributions from investors should be seen as that, a contribution towards the project. BitClassic Team and all persons associated with the company are in no way arranging, dealing or advisingon regulated financial investments. Conclusion We have outlined a path that will solve the most important issues that face crypto-currencies today. Those of fair currency distribution considered a global infrastructure that is being cultivated for the long term BitClassic is more than just a coin. It s a technology poised to disrupt the entire payment industry covering peer to peer payments and mass payments. It is like of a revolution in the peer to peer crypto-currency payment world. Traditional payment system requires efforts to manage & maintain the systems. While in the case of BitClassic coin, less maintenance with nearly less transaction fees puts up maximum benefits to the users of BitClassic coin.

10 10 BitClassic coin offers not only a decentralized payment mechanism based on the blockchain, but also a sustainable economy that produces, manages & securely send/receive large number of transactions each & every second. Last but not the least, the BitClassic Coin is just going to be the first leading peer to peer cryptocurrency to manage the high value instant payments. Facts Coin Name - BitClassic Abbreviation B2C Algorithm Scrypt Types Proof-of Work / Proof-of Stake Total Coin Supply 21 Million Block Reward 25 Coins Proof-of-Stake Percentage 7% Per Year Coinbase Maturity - 50 Blocks Target Timespan 1 Block Transaction Confirmations 6 Blocks Target Spacing 64 Seconds Last POW Block

WHITEPAPER

WHITEPAPER https://bithium.org www.bithium.org WHITEPAPER CONTENTS PAGES 1. Abstract 3 What is Bithium? 3 2. Blockchain 4 3. Mathematical Representation 4 4. Proof-of-Work 5 5. Proof-of-Stake 7 6. Smart Contracts

More information

Ignition Coin and The Ignition Network Engineered for Value, Sustainability, and Growth

Ignition Coin and The Ignition Network Engineered for Value, Sustainability, and Growth Ignition Coin and The Ignition Network Engineered for Value, Sustainability, and Growth Learn more at https://ignitioncoin.org - The Ignition Coin Project :: Introduction:: The Ignition Network and its

More information

P2P Coin and p2p-coins.pro Platform

P2P Coin and p2p-coins.pro Platform P2P Coin and p2p-coins.pro Platform Masternodes hosting platform, block-chain development, web Design services and adiacent services. Whitepaper v1.0.0 November 2018 https://p2pcoin.network P2P Coin is

More information

SUMÁRIO What is Nasdacoin? 4 3. Nasdacoin Technology Nasdacoin Specifications 6 5. ICO ICO Distribution. 8 7.

SUMÁRIO What is Nasdacoin? 4 3. Nasdacoin Technology Nasdacoin Specifications 6 5. ICO ICO Distribution. 8 7. EN WHITEPAPER PROJECT DESCRIPTION Available soon on our official site the Terms of Services and Privacy Policy, as well as relevant contact email address to get in touch with us should you have any further

More information

Ignition Coin and The Ignition Network

Ignition Coin and The Ignition Network Ignition Coin and The Ignition Network Engineered for Value, Sustainability, and Growth Learn more at https://ignitioncoin.org - The Ignition Coin Project ::Introduction:: The Ignition Network and its

More information

OLXA COIN WHITE PAPER DECENTRALIZED APPLICATIONS AND CROWD-PROJECTS THROUGH THE BLOCKCHAIN TECHNOLOGY.

OLXA COIN WHITE PAPER DECENTRALIZED APPLICATIONS AND CROWD-PROJECTS THROUGH THE BLOCKCHAIN TECHNOLOGY. OLXA COIN WHITE PAPER DECENTRALIZED APPLICATIONS AND CROWD-PROJECTS THROUGH THE BLOCKCHAIN TECHNOLOGY www.olxacoin.com info@olxacoin.com Table of Contents 1 Introduction 1.1 Introduction to BitCoin and

More information

Global BTC-Green. Ecological Community in the Green Planet

Global BTC-Green. Ecological Community in the Green Planet Global BTC-Green Ecological Community in the Green Planet Introduction BTC-Green is a cryptocurrency and a modern digital payment system, it s invented to serve for the large group of community that is

More information

OLYMPIC COIN IT CHANGES EVERYTHING

OLYMPIC COIN IT CHANGES EVERYTHING OLYMPIC COIN IT CHANGES EVERYTHING 1 Whitepaper Table of Contents Table of Contents...2 Introduction 3 Olympic Coin.4 POS/MN based cryptoccurency....4 Why Olympic Coin 4 Proof of Stake.5 Masternodes 5

More information

STENEUM. The unique Saving program Of Cryptocurrency

STENEUM. The unique Saving program Of Cryptocurrency STENEUM The unique Saving program Of Cryptocurrency CONTENTS 1. INTRODUCTION 1.1 What is Steneum 2. SPECIFICATIONS 2.1 Algorithm Scrypt 3. ICO (INITIAL COIN OFFERING) 3.1 ICO Target 3.2 ICO Parameters

More information

HOUTON TOKEN WHITE PAPER

HOUTON TOKEN WHITE PAPER HOUTON TOKEN WHITE PAPER W W W. H O U T O N. I N F O 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. Abstract Introduction Our Vision Problems and Our Solution Technical Distribution Wallet Roadmap Conclusion Disclaimer

More information

Digital Currencies. Virtual Currencies Cryptocurrencies

Digital Currencies. Virtual Currencies Cryptocurrencies Digital Currencies Digital Currencies An Internet-based medium of exchange No need for a physical representation Allow for instantaneous and borderless transactions Digital Currencies can fall into several

More information

EtherFact. WhitePaper v1.2.3

EtherFact. WhitePaper v1.2.3 EtherFact WhitePaper v1.2.3 1 Abstract EtherFact is a pure coin with no premine no dev fees, decentralized platform that forked from Ethereum 1.8.4. Current blockchain networks have reached a level of

More information

CAVALLO COIN W H I T E P A P E R. Advanced Solution For Global Money Transaction

CAVALLO COIN W H I T E P A P E R. Advanced Solution For Global Money Transaction CAVALLO COIN W H I T E P A P E R Advanced Solution For Global Money Transaction The arrival of electronic currencies could revolutionize the way we pay for goods and services, in much the same way as the

More information

XSUBYTE WHITEPAPER V. 1.0

XSUBYTE WHITEPAPER V. 1.0 XSUBYTE WHITEPAPER V. 1.0 01/01/2019 Table of contents INTRO The Cryptocurrency The Blockchain Cryptocurrency Industry XsuByte: p2p, anonymous and decentralized coin Xsu-Chain: the blockchain Cryptonight

More information

WHITE PAPER. CONTENTS:

WHITE PAPER.   CONTENTS: WHITE PAPER Version 1.0 www.wincoinmining.com CONTENTS: i. ABSTRACT ii. INTRODUCTION iii. WINCOIN BUSINESS MODEL iv. TECHNICAL SPECIFICATIONS v. WINCOIN FEATURES vi. MISSION STATEMENT vii. WINCOIN ALLIANCE

More information

OID PROJECT. Decentralized Road to Recovery Solving a World Epidemic!

OID PROJECT. Decentralized Road to Recovery Solving a World Epidemic! OID PROJECT Decentralized Road to Recovery Solving a World Epidemic! ADVANCED BLOCKCHAIN TECHNOLOGY FOCUSED ON LIBERATING VICTIMS OF OPIOD ADDICTION THROUGH CUTTING EDGE TECHNOLOGY KNOWN AS THE NALTREXONE

More information

CMC COINS CMC COINS. 11 November, W H I T E P A P E R v W H I T E P A P E R v CMC COINS ICO WHITEPAPER v1.

CMC COINS CMC COINS. 11 November, W H I T E P A P E R v W H I T E P A P E R v CMC COINS ICO WHITEPAPER v1. CMC COINS W H I T E P A P E R v 1. 0 CMC COINS W H I T E P A P E R v 1. 0 11 November, 2018. CMC COINS ICO WHITEPAPER v1.0 Page 1 TABLE OF CONTENTS Abstract 3 Introduction 4 Statement of the problem 5

More information

PEPEGOLD (PEPGD) Digital cash system for the globetrotters

PEPEGOLD (PEPGD) Digital cash system for the globetrotters PEPEGOLD (PEPGD) Digital cash system for the globetrotters Experience the world and all its flavors! Abstract Food loving globetrotters from all around the world find it difficult to keep track and make

More information

THE NEXT GENERATION CRYPTOCURRENCY REVOLUTION

THE NEXT GENERATION CRYPTOCURRENCY REVOLUTION 1. About Us "Anteros Coin" is a Digital Currency that will be Launched and Introduced in 2018. This currency is just as good as Fiat, But only Available in the Digital World. "Anteros coin" Describes how

More information

Open Source - Community Developed

Open Source - Community Developed Old school no pre-mine 4 No ICO we want your passion not your money 4 Maxcoin Mission 5 Maxcoin in the Community 6 Maxcoin Merchants / Commerce 7 Open Source - Community Developed The honest cryptocurrency

More information

GINcoin the turnkey masternode coin

GINcoin the turnkey masternode coin GINcoin the turnkey masternode coin GINcoin Overview GINcoin, with its GUI-based Masternode deployment platform enables crypto investors to set up their own Masternodes regardless of their technical skills

More information

ProfytPro ICO CONTENTS

ProfytPro ICO CONTENTS 1 ProfytPro ICO CONTENTS ProfytPro ICO CONTENTS... 2 INTRODUCTION... 4 WHAT IS ProfytPro (PFTC) PLATFORM... 5 CORE OBJECTIVES... 6 ADVANTAGES OF BLOCKCHAIN... 7 WHY WE DO TOKEN SALE... 8 TOKEN FUNCTIONS

More information

currencies face. We will also articulate the roadmap how it will be used by masses for all of their payment need. 2. Introduction to MCX Coin

currencies face. We will also articulate the roadmap how it will be used by masses for all of their payment need. 2. Introduction to MCX Coin 2017 Index: 1. Abstract: 2. Introduction to MCX Coin 3. Problems MCX Solves 4. The players affecting crypto markets 5. Hybrid technology 6. Powerful Blockchain 7. Volatility management 8. Stability 9.

More information

LITECOIN. sdffdfdfd. Fundamental Asset Overview

LITECOIN. sdffdfdfd. Fundamental Asset Overview LITECOIN sdffdfdfd Contents Asset Research Brief Overview. 2 Investable Asset. 2 Key Metrics. 2 Underlying Technology.. 2 Technical Details... 3 Project History. 3 Asset Supply.. 3 Price History.. 4 Trading

More information

can opt for mining POS acquiring NSD and storing in developed with the scrypt algorithm in the

can opt for mining POS acquiring NSD and storing in developed with the scrypt algorithm in the EN BUSINESS PLAN Available soon on our official site the Terms of Services and Privacy Policy, as well as relevant contact email address to get in touch with us should you have any further questions or

More information

Rupaya Platform White Paper World-class cryptocurrency platform designed for South Asia

Rupaya Platform White Paper World-class cryptocurrency platform designed for South Asia Rupaya Platform White Paper World-class cryptocurrency platform designed for South Asia Released May 23, 2018 Revised May 24, 2018 Table of Contents Forward Looking Statements.... 3 Abstract.... 3 Overview....

More information

DNAtix - Tokenomics. Following is DNAtix Tokenomics document which outline the entire process and usage of the DNAtix Token (DNTX).

DNAtix - Tokenomics. Following is DNAtix Tokenomics document which outline the entire process and usage of the DNAtix Token (DNTX). DNAtix - Tokenomics Written by: Ofer A. Lidsky DNAtix CEO v0.1 23/02/2018 Following is DNAtix Tokenomics document which outline the entire process and usage of the DNAtix Token (DNTX). 2017-2018 DNAtix

More information

Bitcoin- An innovation. By - Rajitha Devabhaktuni - Ravali Chennamneni

Bitcoin- An innovation. By - Rajitha Devabhaktuni - Ravali Chennamneni Bitcoin- An innovation By - Rajitha Devabhaktuni - Ravali Chennamneni What is a Cryptocurrency? Decentralized Network Uses cryptographic principles to secure the transactions The holder of the currency

More information

(Draft version 2.0) The blockchain is an undeniably ingenious invention the brainchild of a person or group of people

(Draft version 2.0) The blockchain is an undeniably ingenious invention the brainchild of a person or group of people (Draft version 2.0) The blockchain is an undeniably ingenious invention the brainchild of a person or group of people known by the pseudonym, Satoshi Nakamoto. But since then, it has evolved into something

More information

CryptoCarbon (CCRB):

CryptoCarbon (CCRB): CryptoCarbon (CCRB): A NEW TYPE OF CRYPTOCURRENCY WHITEPAPER - FEBRUARY 201 8 Contact Information: CRYPTOCARBON info@cryptocarbon.co.uk Table of Contents 1. ABSTRACT 2. INTRODUCTION 3. CRYPTOCARBON (CCRB)

More information

Bitcoin: Back to the Future

Bitcoin: Back to the Future Bitcoin: Back to the Future About the course: This course is a general introduction to the emerging world of distributed ledgers and internet-based value exchange systems. We focus specifically on bitcoin

More information

BZX. Whitepaper. Contents. Version 2.0. Introduction. Bitcoin Zero s Eco Framework. Zerocoin Protocol. Technical Details.

BZX. Whitepaper. Contents. Version 2.0. Introduction. Bitcoin Zero s Eco Framework. Zerocoin Protocol. Technical Details. BZX Whitepaper Version 2.0 Contents Introduction s Eco Framework Protocol Technical Details Commercialisation The Road Ahead Introduction In 2009 a new era was born. An era of creation. An era of change.

More information

WHITE PAPER RAVE COIN IS DIGITAL CASH

WHITE PAPER RAVE COIN IS DIGITAL CASH WHITE PAPER RAVE COIN IS DIGITAL CASH The next generation of advanced solution for global money transaction A breakthrough digital solution related to money transaction. Rave Coin is a kind of digital

More information

Bitcoin Profit Secrets

Bitcoin Profit Secrets Bitcoin Profit Secrets Introduction - What is Bitcoin and Robert Skinner In this guide, you will learn all about Bitcoin (BTC) and cryptocurrency, how they work, why they exist and what kind of technology

More information

Prepared by Influ Token. Revision 1.0

Prepared by Influ Token. Revision 1.0 1 I N F L U W H I T E T O K E N P A P E R Prepared by Influ Token. Revision 1.0 Table of content 2 Disclaimer...3 Abstract...4 Problem...5 Influ Token...6 Mission...7 InfluWay...8 - InfluWay...9 - Reatil...

More information

TCOIN TCN B ANK TRADE BY TRADE WHITEPAPER VERSION 0.2

TCOIN TCN B ANK TRADE BY TRADE WHITEPAPER VERSION 0.2 TCOIN TCN WHITEPAPER VERSION 0.2 B ANK TRADE BY TRADE Index Pages Overview 4 Our Vision 5 What is TCOIN TCN? 6 Why invest in Tcoin TCN? 8 Cryptocurrency 8 TCoin TCN Specifications 9 TCoin Masternode Development

More information

Block-Chains: Insights and Issues

Block-Chains: Insights and Issues Ahto Buldas Märt Saarepera Oct 18, 2018 Agenda The Birth of Bitcoin Motivation behind Bitcoin Money, Payments and Banks Description of the Bitcoin Todays situation: block-chains, cryptocurrencies Block-chains

More information

Dual Blockchain Technology

Dual Blockchain Technology Dual Blockchain Technology Welcome to VeriCoin. The first dual blockchain digital currency supported by a purely digital asset, Verium. VeriCoin and Verium will be the first dual blockchain protocol technology

More information

VINCOIN CASH HARD FORK OF MONERO

VINCOIN CASH HARD FORK OF MONERO VINCOIN CASH HARD FORK OF MONERO White Paper ver. 1.3 Quick Introduction to Statistical Research Before we start our introduction to Vincoin Cash we would like to introduce you to the following research

More information

Version 3:

Version 3: 1 Version 3: 09-01-2018 / THE INDEX / THE INDEX... 2 / HOW WE ROLL... 3 / THE BASICS... 4 / WHAT S IN IT FOR ME?... 5 / ADCOIN FOR ONLINE AD NETWORKS... 6 / ADCOIN FOR ADVERTISERS... 7 /ADCOIN FOR PUBLISHERS...

More information

Dear Partners, Who are we?

Dear Partners, Who are we? Dear Partners, in the following few paragraphs you will find a short overview of what INVIA World does, what we provide and why this project may be of great interest to you. We are proud to announce that

More information

CryptoCarbon (CCRB):

CryptoCarbon (CCRB): CryptoCarbon (CCRB): A NEW TYPE OF CRYPTOCURRENCY WHITEPAPER - FEBRUARY 2018 Contact Information: CRYPTOCARBON GLOBAL LTD info@cryptocarbon.co.uk Table of Contents 1. ABSTRACT 2. INTRODUCTION 3. CRYPTOCARBON

More information

b-hash Cryptocurrency Whitepaper

b-hash Cryptocurrency Whitepaper b-hash Cryptocurrency Whitepaper The b-hash Core Team May 2018 The b-hash team confirms that the ideas and information presented in this whitepaper are their own and that outside sources have been appropriately

More information

About cryptocurrencies and blockchains part 4. Jyväskylä 25th of April 2018 Henri Heinonen

About cryptocurrencies and blockchains part 4. Jyväskylä 25th of April 2018 Henri Heinonen About cryptocurrencies and blockchains part 4 Jyväskylä 25th of April 2018 Henri Heinonen (henri.t.heinonen@jyu.fi) What is needed from bitcoin/cryptocurrency in order to be a useful paying system? Reducing

More information

Bitcoin can be used to buy things electronically. In that sense, it s like conventional dollars, Euros, or yen, which are also traded digitally.

Bitcoin can be used to buy things electronically. In that sense, it s like conventional dollars, Euros, or yen, which are also traded digitally. BITCOIN 02/01/2018 BITCOIN Bitcoin is a form of digital currency, created and held electronically. No one controls it. Bitcoins aren t printed, like dollars or Euros they re produced by people, and increasingly

More information

abricks Coin Version V1.0

abricks Coin Version V1.0 abricks Coin Version V1.0 Contents 1. Introduction 1.1 What is Habricks Coin 1.2 Habricks Features 2. Technologies 2.1 Scrypt Technologies 2.2 Block and Block creation 2.3 Nodes 2.4 Coin and forging process

More information

USAGI COIN - Usagi Coin White Paper. Prepared for: Usagicoin.com Prepared by: Punch, Piti

USAGI COIN - Usagi Coin White Paper. Prepared for: Usagicoin.com Prepared by: Punch, Piti USAGI COIN - Usagi Coin White Paper Prepared for: Usagicoin.com Prepared by: Punch, Piti USAGI COIN - BE 2 BASIC SYSTEM SUMMARY Abstract Nowadays, technology allows people to communicate and send messages

More information

ACCEPTING LITECOIN. Harnessing the power of cryptocurrency for your business

ACCEPTING LITECOIN. Harnessing the power of cryptocurrency for your business ACCEPTING LITECOIN Harnessing the power of cryptocurrency for your business THE BASICS Cryptocurrencies are digital currencies designed to work as a medium of exchange. They use cryptography and blockchain

More information

LINDACOIN WHITEPAPER

LINDACOIN WHITEPAPER LINDACOIN WHITEPAPER TABLE OF CONTENT ABSTRACT 3 Introduction 4 About Lindacoin 6 Coin Specification 7 features 8 Roadmap 15 Marketing plan 16 ABSTRACT January 3rd, 2009, the world recorded the beginning

More information

WHITE PAPER UNICOIN. the first decentralized unicorn. ever.

WHITE PAPER UNICOIN. the first decentralized unicorn. ever. WHITE PAPER UNICOIN the first decentralized unicorn. ever. ᵅ Background THE FUTURE OF MONEY IS DIGITAL CURRENCY (Bill Gates, co-founder of Microsoft, investor, author, and philanthropist) The advent of

More information

BIT GREEN COIN IS DIGITAL CASH

BIT GREEN COIN IS DIGITAL CASH WHITE PAPER ` BIT GREEN COIN IS DIGITAL CASH The next generation of advance dissolution for global money transaction A break through digital solution related to money transaction. BIT GREEN is a kind of

More information

Vote Coin. Anonymous Crypto Democracy

Vote Coin. Anonymous Crypto Democracy Anonymous Crypto Democracy VoteCoin is an anonymous crypto currency best suitable for elections and other voting purposes, based on Zerocoin protocol. Whitepaper 2017 VoteCoin team - 1 - Summary Preface...

More information

ICO BASICS. RedCab LLC. Frequently Asked Questions (FAQs) Website: ICO Website What is an ICO?

ICO BASICS. RedCab LLC. Frequently Asked Questions (FAQs) Website:   ICO Website What is an ICO? RedCab LLC. Frequently Asked Questions (FAQs) Website: https://redcab.co ICO Website https://redcab.io ICO BASICS 1.1 What is an ICO? An initial coin offering (ICO), also known as a digital token sale

More information

WORLDXCOIN.

WORLDXCOIN. WORLDXCOIN www.wxcoins.org WHAT IS WX-COIN WX-COIN is a decentralized cryptocurrency that uses peer-to-peer technology to operate with no central authority or banks, managing transactions and the issuing

More information

An introduction to Cryptocurrencies

An introduction to Cryptocurrencies An introduction to Cryptocurrencies Giorgos Panagiotakos Computer Security Course Organizers: Myrto Arapinis and Kami Vaniea November 27, 2016 Bartering Trade through bartering: Figure: http://www.forbes.com/

More information

MASS CRYP ENTERPRISE

MASS CRYP ENTERPRISE MASS CRYP ENTERPRISE PLATFORM WHITEPAPER Version: 1.1 Content 1. Summary... 3 2. MASS CRYP Enterprise... 4 i. Who we are... 4 ii. Mission... 4 iii. Vision... 4 3. Our Projects... 5 i. MASS CONNECTS Advertising

More information

Blockchain Role in Smart Cities/IoT Security A Cryptographic Perspective!

Blockchain Role in Smart Cities/IoT Security A Cryptographic Perspective! SESSION ID: CCS-T08 Blockchain Role in Smart Cities/IoT Security A Cryptographic Perspective! Dr. Hilal Houssain hilal.hussein@gmail.com Agenda Internet of Things (IoT) IoT Security Requirements IoT Security

More information

Transparency Immutability Low cost Cross-border Speed CONSENSUS ALGORITHM

Transparency Immutability Low cost Cross-border Speed CONSENSUS ALGORITHM WE HOST THE WORLD ABSTRACT Ever since Satoshi Nakamoto released the whitepaper and respective software for Bitcoin, the cryptocurrency ecosystem has continued to grow at a rapid pace. Bitcoin created a

More information

Bitcoin: A Digital Currency In Cryptography We Trust

Bitcoin: A Digital Currency In Cryptography We Trust Bitcoin: A Digital Currency In Cryptography We Trust 1 By: Michael T. Lee Abstract Bitcoin is the worlds first decentralized digital currency. Electronic cash-systems have never been secure enough to exist

More information

This is a conceptual document ( Technical White Paper ) describing our proposed Qredit coin on our own native blockchain.

This is a conceptual document ( Technical White Paper ) describing our proposed Qredit coin on our own native blockchain. White Paper V2.0 Disclaimer This is a conceptual document ( Technical White Paper ) describing our proposed Qredit coin on our own native blockchain. Readers are notified as follows: Not available to everyone:

More information

Table of Contents ABSTRACT... 1 INTRODUCTION... 2 NRP TOKEN FUNCTION... 2 MAIN PAYMENT FOR TRANSACTION IN MARKET PLACE... 2

Table of Contents ABSTRACT... 1 INTRODUCTION... 2 NRP TOKEN FUNCTION... 2 MAIN PAYMENT FOR TRANSACTION IN MARKET PLACE... 2 Table of Contents ABSTRACT... 1 INTRODUCTION... 2 NRP TOKEN FUNCTION... 2 MAIN PAYMENT FOR TRANSACTION IN MARKET PLACE... 2 CRYPTOCURRENCY IN TRADE.. 3 ALTERNATIVE TO FLAT MONEY.... 3 PROBLEM...4 SOLUTION...

More information

DREAM BIT DREAM BIT (MAB) THE FUTURE OF CURRENCY GLOBAL WALLET, DIGITAL CASH

DREAM BIT DREAM BIT (MAB) THE FUTURE OF CURRENCY GLOBAL WALLET, DIGITAL CASH (MAB) THE FUTURE OF CURRENCY 0 MAB The Future of Currency 1 1. ABSTRACT In recent years, mobile shopping has been on the rise. The worldwide mobile payment revenue in 2015 was 450 billion U.S. dollars

More information

Sirius is a next-generation smart blockchain based on Qtum with a consensus algorithm from the Proof-of-Stake family.

Sirius is a next-generation smart blockchain based on Qtum with a consensus algorithm from the Proof-of-Stake family. getsirius.io SUMMARY Sirius is a next-generation smart blockchain based on Qtum with a consensus algorithm from the Proof-of-Stake family. To encourage developer participation, Sirius is distributed for

More information

FSMN: A Payment Gateway and Merchant Settlement Services for Instant, Secured Global Payments

FSMN: A Payment Gateway and Merchant Settlement Services for Instant, Secured Global Payments FSMN: A Payment Gateway and Merchant Settlement Services for Instant, Secured Global Payments Abstract FSMN is a cryptography-based digital coin and payment gateway introduced to the market in 2018 to

More information

Venus Coin 2 I. ABSTRACT

Venus Coin 2 I. ABSTRACT Venus Coin 1 Venus Coin 2 I. ABSTRACT Cryptocurrency has been proven to be a groundbreaking technology in digital assets today, classified as a subset of digital currencies and are also classified as a

More information

Bitcoin Growth Bot Whitepaper

Bitcoin Growth Bot Whitepaper Bitcoin Growth Bot Whitepaper Nucleus Coin Jordan Lindsey, Founder, CEO September 29, 2017 Index of contents Abstract... 2 Background...... 3 The Bitcoin Trading Bot Algorithm. 3 What is Nucleus Coin?....

More information

Whitepaper. Version 2.0. September 2018

Whitepaper. Version 2.0. September 2018 Whitepaper Version 2.0 September 2018 Contents Overview... 3 Highlights... 3 Background... 4 Problem Statement... 4 Solution... 4 Transparency... 4 Mining Activities... 5 Strategy... 5 Hardware... 5 Locations...

More information

WHITEPAPER JUNE 2018

WHITEPAPER JUNE 2018 WHITEPAPER JUNE 2018 1 INTRODUCTION Bitcoin is a cryptocurrency that has emerged as a popular medium of exchange and is the first digital currency that has attracted a substantial number of users. Since

More information

White Paper v1.0. White Paper. Version 1.0, December Written and compiled by SmartGreen team

White Paper v1.0. White Paper. Version 1.0, December Written and compiled by SmartGreen team 1 White Paper Version 1.0, December 2018 Written and compiled by SmartGreen team 2 Abstract The thesis which kicked off studies of this project was based on the creation of a decentralized payment network

More information

BIONIC WHITEPAPER Copyrights 2018 BIONIC

BIONIC WHITEPAPER Copyrights 2018 BIONIC BIONIC INTRODUCTION WHAT IS CRYPTO CURRENCY ALL ABOUT BLOCKCHAIN SMART-CONTRACT WHY BLOCKCHAIN IT WAS ADOPTED FOR BIONIC? WHAT MAKES BIONIC UNIQUE BIONIC GOALS SALES PROCESS FOR BNC TOKENS TOKEN SALE TOKEN

More information

NILECOIN. WhitePaper

NILECOIN. WhitePaper 1 NILECOIN WhitePaper December 08, 2017 OVERVIEW OF NILECOIN NILECOIN (NIL) is a digital currency developed in the form of open-source software (OSS). Nilecoin operates on a peer-to-peer network protocol

More information

Cryptocurrencies & Challenges. Krishna Sastry Pendyala

Cryptocurrencies & Challenges. Krishna Sastry Pendyala 1 Cryptocurrencies & Challenges Krishna Sastry Pendyala Agenda Origin of Cryptocurrency? Base for Cryptocurrency? How Block Chain Technology Works Bitcoin & other Cryptocurrencies Legal, Regulatory and

More information

Shareel Whitepaper V.1.2

Shareel Whitepaper V.1.2 Shareel Whitepaper V.1.2 Table of content 1. Introduction 2. Why Invest in Shareel? 3. Shareel Investment Opportunities Social Media Syndication Lending To Miners Mining (Proof-of-Stake) 4. Trading 5.

More information

SWISSCOIN Whitepaper

SWISSCOIN Whitepaper SWISSCOIN Whitepaper Revision 0.1 Abstract. January 3, 2009 has marked the beginning of a new era of globalisation and world interconnection: the first Bitcoin transaction 1 has occurred. Satoshi Nakamoto

More information

BIONIC WHITEPAPER Copyrights 2018 BIONIC

BIONIC WHITEPAPER Copyrights 2018 BIONIC BIONIC INTRODUCTION WHAT IS CRYPTO CURRENCY ALL ABOUT BLOCKCHAIN SMART-CONTRACT WHY BLOCKCHAIN IT WAS ADOPTED FOR BIONIC? WHAT MAKES BIONIC UNIQUE BIONIC GOALS SALES PROCESS FOR BNC TOKENS TOKEN SALE TOKEN

More information

SPARK (SPC) IS A DECENTRALIZED STANDALONE BLOCKCHAIN

SPARK (SPC) IS A DECENTRALIZED STANDALONE BLOCKCHAIN SPARK (SPC) IS A DECENTRALIZED STANDALONE BLOCKCHAIN CRYPTOCURRENCY FUTURE WHITE PAPER Nov 01, 2017 SPARK COIN 1 ABSTRACT About eight years ago, a pseudonymous cryptographer known as Satoshi Nakamoto introduced

More information

DONCOIN (DCNX) Whitepaper

DONCOIN (DCNX) Whitepaper DONCOIN (DCNX) Whitepaper 1 WHAT IS DONCOIN (DCNX)? Every Cryptocurrency that emerges is like a company which emerges to solve a pending world problem by proffering a lasting solution and raising funds

More information

Blockchain Expenses - Resources Need to Generate Cryptocurrency

Blockchain Expenses - Resources Need to Generate Cryptocurrency EUROPEAN ACADEMIC RESEARCH Vol. V, Issue 8/ November 2017 ISSN 2286-4822 www.euacademic.org Impact Factor: 3.4546 (UIF) DRJI Value: 5.9 (B+) Blockchain Expenses - Resources Need to Generate IJAZUL HAQ

More information

01 WHAT IS BBNCOIN? * PoW - Proof of Work

01 WHAT IS BBNCOIN? * PoW - Proof of Work O N E P A P E R CONTENTS 01 WHAT IS BBNCOIN? 02 VALUE OF BBNCOIN 03 VISION 04 HOW DOES BBNCOIN WORK? 05 BBNCOIN USE CASE 06 TECHNOLOGY 07 ICO OWNERSHIP 08 WHY SHOULD SOMEONE LIKE YOU BE INTERESTED? 09

More information

E-Money vs Cryptocurrency. Dimaz Ankaa Wijaya

E-Money vs Cryptocurrency. Dimaz Ankaa Wijaya E-Money vs Cryptocurrency Dimaz Ankaa Wijaya 2 Education UGM B. Computer Science (2007) MONASH Uni. M. Networks & Security (2016) MONASH Uni. Ph.D Student (2017-current) Dimaz Ankaa Wijaya Field of Expertise

More information

This isn't surprising after all, a Bitcoin was sold for dollars in the very beginning, and now it is traded at around USD 3500.

This isn't surprising after all, a Bitcoin was sold for dollars in the very beginning, and now it is traded at around USD 3500. Bitcoin, Litecoin, cryptocurrencies, mining... It seems like these new words are popping up everywhere in recent months. In part, the cryptocurrency boom is due to the fact that historically they have

More information

PDX COIN.

PDX COIN. PDX COIN www.petrodollars.io www.pdxcoin.io DISCLOSURE STATEMENT The following presentation contains forward looking statements that may reflect our plans, estimates, and beliefs. Such forward looking

More information

Marijuana on the Blockchain:

Marijuana on the Blockchain: Marijuana on the Blockchain: Stability through Proof of Stake 01.30.2018 GanjaCoin (MRJA) 1 Abstract 2 Overview 4 Unique Value Proposition 4 Token Information 4 Proof of Work and Proof of Stake 5 Problems

More information

CommunityCoin: a crypto currency for community networks

CommunityCoin: a crypto currency for community networks : a crypto currency for community networks p4u, manos guifi.net,upc May 16, 2014 Introduction BitCoin BlockChain Motivation Ideas Your ideas BitCoin Proof of Work Basic concept: each participant must prove

More information

PDX COIN

PDX COIN PDX COIN WWW.PDXCOIN.IO DISCLOSURE STATEMENT The following presentation contains forward looking statements that may reflect our plans, estimates, and beliefs. Such forward looking statements are dependent

More information

Tokenized Hardware: The New Crypto Innovation

Tokenized Hardware: The New Crypto Innovation Tokenized Hardware: The New Crypto Innovation Jollen Chen 1 and Eric Pan 2 1 Flowchain Open Source Project, Devify Inc. jollen@flowchain.io 2 Seeed Technology Co.,Ltd. ep@seeed.cc February 2, 2018 Abstract.

More information

TABLE OF CONTENTS. 3 Disclosure. 4 What is Feast Coin? 4. Brief Overview. 4. Special Features of Feast Coin (FSC) 4. User Benefits of Feast Coin

TABLE OF CONTENTS. 3 Disclosure. 4 What is Feast Coin? 4. Brief Overview. 4. Special Features of Feast Coin (FSC) 4. User Benefits of Feast Coin TABLE OF CONTENTS 3 Disclosure 4 What is Feast Coin? 4. Brief Overview 4. Special Features of Feast Coin (FSC) 4. User Benefits of Feast Coin 5. Vendor Benefits of Feast Coin 5. Work It Works 5. Service

More information

Disclaimer 3 Introduction 4

Disclaimer 3 Introduction 4 Disclaimer 3 Introduction 4 USDC: A Digital Coin that Equals USD 4 How Blockchain Changed The Financial Landscape 5 Price Guarantee Plan 6 Token Sale 8 Discounted USDC for ICO 9 Why our token sale is beneficial

More information

EasyDex Bridge Assets

EasyDex Bridge Assets EasyDex White Paper Introduction Since Bitcoin was released in 2008, cryptocurrencies have rapidly become a major influence in both the online and greater economic global communities. The technologies

More information

WHAT IS CRYPTOCURRENCY? 02 WHAT IS HOTCRYPTO (HCR)? 06 HOW DOES HOTCRYPTO (HCR) WORK? 07 WHAT IS THE VALUE OF HOTCRYPTO (HCR)? 08

WHAT IS CRYPTOCURRENCY? 02 WHAT IS HOTCRYPTO (HCR)? 06 HOW DOES HOTCRYPTO (HCR) WORK? 07 WHAT IS THE VALUE OF HOTCRYPTO (HCR)? 08 WHAT IS CRYPTOCURRENCY? 02 WHAT IS HOTCRYPTO (HCR)? 06 HOW DOES HOTCRYPTO (HCR) WORK? 07 WHAT IS THE VALUE OF HOTCRYPTO (HCR)? 08 ICO 12 WHAT IS ICO? 13 THE GOAL OF THE ICO 13 ICO TIMING 14 ICO PRICE 15

More information

MIR COIN. Innovative Blockchain crypto-currency of integrated platform. Integrated Platform of Payment Solution and Evolving MIR COIN in the Platform

MIR COIN. Innovative Blockchain crypto-currency of integrated platform. Integrated Platform of Payment Solution and Evolving MIR COIN in the Platform Innovative Blockchain crypto-currency of integrated platform Integrated Platform of Payment Solution and Evolving in the Platform Contents 1. BLOCKCHAIN OVERVIEW 4. MIR PLATFORM 1.1. Definition of BLOCKCHAIN

More information

Table of Contents. Ø History of the Bitcoin 2. Ø The Transaction 3. Ø Timestamps 4. Ø Bitcoin Mining and Centralization 5.

Table of Contents. Ø History of the Bitcoin 2. Ø The Transaction 3. Ø Timestamps 4. Ø Bitcoin Mining and Centralization 5. Cover Photo 1 [10] BITCOIN BASICS ABSTRACT This paper covers some basics of Bitcoin and some of the issues and concerns that many raise about the role Bitcoin miners will play in the future of Bitcoin.

More information

AGRICOIN (AGC) ACCELERATE FARMING ECOSYSTEM WHITE PAPER

AGRICOIN (AGC) ACCELERATE FARMING ECOSYSTEM WHITE PAPER AGRICOIN (AGC) to create a new ecosystem for the agribusiness and related industries by incorporating customized smart farming practices, the internet of things, and limitless possibility of other blockchain

More information

GoshenCoin 2.0 Do Business The Smarter Way

GoshenCoin 2.0 Do Business The Smarter Way GoshenCoin 2.0 Do Business The Smarter Way Contents 1. Introduction 2. Market Overview 3. Value Proposition 4. Blockchain Technology 5. Smart Contracts 6. Decentralized Apps (DApps) 7. GoshenCoin History

More information

About TRIUM.

About TRIUM. About TRIUM Trium Global Capital Inc. is one of an investment companies in Singapore, creating an investment platform called TRIUM supported by 4 main pillars to support the continuity of your investment.

More information

Callisto Network whitepaper

Callisto Network whitepaper Callisto Network whitepaper Revision 0.9, 16 January 2018, Dexaran, Ethereum Commonwealth These notes are intended to formally document and describe the features and concepts of the Callisto (CLO) cryptocurrency.

More information

Copyright All rights reserved. Page 1

Copyright All rights reserved. Page 1 Copyright 2017 www.confercoin.com. All rights reserved. Page 1 1. Introduction 1.1 What is Confer coin 2. Specifications 2.1 Platform 3. Initial Coin Offering (ICO) 3.1 ICO Aim 3.2 ICO Structure 3.3 ICO

More information

CryptFinTra Exchange & DANU Coin

CryptFinTra Exchange & DANU Coin Exchange & DANU Coin Whitepaper 2017 2222sss KEEP YOU DATA AND MONEY SAFE 2018 1 CONTENT Introduction 3 Market Opportunities 5 Problem Statement 6 Our Technology 8 Exchange Goals 8 What are Innovations?

More information

Page1.

Page1. Page1 Introduction Started from a community, ICO became a very popular thing for the founders and makers of cryptocurrency in introducing and raising funds to support the operation and promotion of cryptocurrency

More information

CryptoBank WHITEPAPER v. 0.1

CryptoBank WHITEPAPER v. 0.1 CryptoBank WHITEPAPER v. 0.1 CryptoBank is a decentralized global payment system based on blockchain technology and including СryptoYuan, СryptoDollar, СryptoEuro, СryptoRuble Introduction There are a

More information