White Paper Version 0.2 January 29,2018 ABSTRACT

Size: px
Start display at page:

Download "White Paper Version 0.2 January 29,2018 ABSTRACT"

Transcription

1

2 White Paper Version 0.2 January 29,2018 ABSTRACT This document describes a platform that applies the Ethereum s blockchain technology and Smart Contracts to create a system of creation, exchange and promotion of digital assets: cryptocurrencies, tokens or commodities. A tool that offers a simple and intuitive user experience with the main objective of simplifying the creation of tokens and smart contracts. This way, it facilitates the adoption of the emerging blockchain technology in the fintech sector of companies, SMEs and producers of raw materials. 1. INTRODUCTION The Internet is experiencing a new technological revolution, a paradigm shift where the World Wide Web is evolving towards the World Wide Ledger. With the incorporation of distributed networks that use blockchain technology and its smart contracts, a new Internet of Value scenario is being created where finance flows freely. In this new universe, value management will be available to all and not only to a few. Thanks to this technology anyone can create digital values that can be negotiated, distributed and exchanged as a token or cryptocurrency. In the last 10 years, cryptocurrencies have become an innovative investment, since they are a mechanism of conservation of value and a method of payment at the same time. This favors the growth of new business models since it promotes innovation for any company or business where a value is exchanged. One clear advantage offered by the smart contracts is that they eliminate all the intermediaries that make the goods more expensive. Usually, the increase in the cost of goods tends to affect only small consumers, making them suffer the bad consequences of long chains of intermediaries. 2

3 The case of small agricultural producers or raw materials is an example of this, since they are subject to the power of large companies in the markets. These regulate the price of goods from large investment funds and intermediation platforms, maximizing profits for distributors and losses for producers, affecting in many cases the price and quality of products. Small and medium-sized companies do not have the possibility of attracting financial resources in regulatory frameworks that only benefit big companies. Accessing public sale offers or other financing measures is a long and expensive process. Often, they also provide no security to the investor, as they are often rigged or corrupted by regulatory entities. This always harms civil society, which ends up paying the financial industry's chaos. It is easy to see how most of the time, the centralization of power and the regulatory framework tailored for a few people, makes it impossible to access most of the citizens to the market. This prevents and hinders the growth of new industries and the generation of employment. This situation makes the wealthiest people get richer, negatively affecting the purchasing power of the rest of the population. We can see throughout recent history how the intermediaries in the market processes are destroying the markets in which they participate. 2. LESCOVEX Lescovex was created with the aim of establishing a more just, free and secure financial market. Lescovex is a real-time digital goods market that provides simple and effective access to create the financial products that a producer or a company needs. For this, the platform will offer a simple and intuitive environment that complies with current regulations in your region and puts your products directly in contact with the final buyer, allowing you to make purchases and sales at the real market price. Lescovex is a platform for the exchange and creation of digital assets. A tool that, through Ethereum's smart contracts technology, creates financial product and simplifies the process of tokenizing any good or digital asset. At the same time, the platform offers an online market where all kinds of digital goods can be exchanged: Cryptocurrencies, Tokens and Commodities. 3. TOKEN SHARES Lescovex offers an open and participatory way of investment, where all people can benefit from the profits produced by the project. Half of the benefits produced by the exchange rates or services of Lescovex will be sent to the smart contract for distribution where, only LCX holders who have not moved their tokens in 30 days, will be able to extract their profits. 4. THE CONTRACT The LCX contract is designed to guarantee the possibility of withdrawal of liquidity without the intermediation of third parties. At the same time, it guarantees the equitable benefit according to the amount of tokens that each investor owns. 3

4 Therefore, all LCX token investors are subject to the specified conditions of the smart contract, in addition to the standard of the Ethereum ERC20 model. 5. TOKEN DISTRIBUTION When an investor wants to make a contribution, he can do it through the "buy" function of the contract, or by sending ETH directly to the contract address. The smart contract will create LCX in proportion to the ether paid to the contract. The price will be relative to the price established in the same contract in each bonus phase, being the price without bonus 1 LCX = 0.01 ETH. The ICO will have different periods and the price of the token will increase as the end of the currency issuance period approaches. For every token that is generated when receiving a contribution from a crowdfunder, another LCX is issued and stored in the contract itself. These tokens will be used by Lescovex projectto finance of the project. 4

5 Distributed tokens in ICO: Token price: 1 LCX = 0.01 ETH Presale: LCX ICO: LCX The token issuance will have 6 periods whose bonus will decrease every 10 days: 25% - February 12 - PRE-SALE 20% - March 1 - ICO 15% - March 10 10% - March 20 05% - March 30 00% - April 9 No more than 10 million tokens will be generated in total. The transferbuy () and buy () function manage and limit the issuance of tokens by contract, the period of time available to buy tokens, the maximum amount of tokens that will be issued and the distribution to their owners. function transferbuy(address _to, uint256 _value) internal returns (bool) { require(_to!= address(0)); // SafeMath.sub will throw if there is not enough balance. totalsupply=totalsupply.add(_value*2); holded[_to]=block.number; balances[lescovexaddr] = balances[lescovexaddr].add(_value); balances[_to] = balances[_to].add(_value); Transfer(this, _to, _value); return true; As can be seen in the function, the contract stores the moment when the tokens are received; the contract will never allow you to withdraw benefits if the token has not been held for at least 1 month. This encourages investors to maintain their tokens to collect the profits generated, adding value to the token in the markets and guaranteeing a stable demand for LCX tokens at a solid price. function buy() public payable status{ require (totalsupply<= ); require(block.timestamp< ); 5

6 uint256 tokenamount = (msg.value / buyprice)*tokenunit ; // calculates the amount transferbuy(msg.sender, tokenamount); LescovexAddr.transfer(msg.value); Every time someone makes a purchase to the contract, it will check the price to adapt the issuance of tokens to the different bonus phases. These phases will be detected by the status () modifier, described below: modifier status() { _; // modified function code should go before prices update if(block.timestamp< ){ //until 1 march 2018 if(totalsupply< ){ buyprice= ; else{ buyprice= ; else if(block.timestamp< ){ // until 10 march 2018 buyprice= ; else if(block.timestamp< ){ //until 20 march 2018 buyprice= ; else if(block.timestamp< ){ //until 30 march 2018 buyprice= ; else if(block.timestamp< ){ //until 9 april 2018 buyprice= ; else{ buyprice= ; 6. COLLECT YOUR PROFITS Each month, Lescovex platform will deposit the corresponding ETH gains in the contract. These can be raised by investors if they have held the tokens for more than a month without moving them in their wallets. 6

7 When the platform deposits ETH in the contract for its distribution, it will calculate the reward amount for each token that the investor owns in this way: function deposit() public payable status returns(bool success) { // Check for overflows; assert (this.balance + msg.value >= this.balance); // Check for overflows tokenreward=this.balance/totalsupply; //executes event to reflect the changes LogDeposit(msg.sender, msg.value); return true; "tokenreward" shows the amount in ETH that corresponds to each token with the possibility of generating profits so, using the function withdrawreward (), the investor will be able to withdraw his profits by executing the function of the contract. function withdrawreward() public status { require (block.number - holded[msg.sender] > ); //1 month holded[msg.sender] = block.number; uint256 ethamount = tokenreward * balances[msg.sender]; //send eth to owner address msg.sender.transfer(ethamount); //executes event ro register the changes LogWithdrawal(msg.sender, ethamount); Each time an investor decides to extract their profits, this monthly account will be restarted making it impossible to withdraw more profits from the contract until the next month. The user needs execute this function each month to get his profits, else he lose the token reward fo this month distribution holded[msg.sender] = block.number; 7. TOKEN PRICE LCX token price will be settled by the activity in the markets once the tokens distribution has ended. Lescovex team will aim to add LCX token in all the main exchanges. 8. THE PLATFORM 8. 1 Registration: With the intention of adapting to the new regulations in each region of the planet, Lescovex outsources the KYC service to experts to ensure compliance with all policies for the prevention of money laundering and terrorist financing. 7

8 All with the objective that no user can make an improper use of the technology financing or carrying out illegal activities. That s why we have a strict privacy and identification policy for our users. We store all the information in an encrypted form with the maximum guarantee that your data will only be used for compliance with current regulations and will not be transferred to third parties at any time, and no one will have information regarding the status of your accounts or balance sheets. The KYC process is limited to the investigation of each of our users regarding their previous business activities and their relationships with executives or companies that may be related to activities declared illegal. To do so, all the documentation sent by our customers will be reviewed and contrasted with official and private lists to guarantee our users that any buyer or seller in our platform doesn t collaborate or participate in any illegal activity Trading Tools: - Buy & Sell orders - Trading views - Balances Administration -Cash in and cash out sercvices -Complete tradding reports Fiat currencies: Thanks to our partnership with KANTOX.COM, we have more than 10 fiat currencies in our market. This makes us the cryptocurrency platform with the largest variety of fiat currencies that exists today Issuance of contracts: Our platform has a system for issuing digital goods based on Ethereum technology, so that any person who produces goods or wants to tokenize any type of good has a simple tool to issue their smart contracts and include them directly in our markets. For this purpose, it is being developed a Digital Assets Launcher (DAL) tool for the creation and issuance of contracts. This allows to issue tokens to the markets, manage the options of its contract and use its smart contract directly from our platform Main models of assets & smart contracts: Investment Funds - Participate in investment funds through state-of-the-art Smart Contracts. Cryptocurrency - Easily create a cryptocurrency for use in projects, companies or specific markets. Crowdfunding and Equity Crowdfunding - Multiple models of contracts where to design a collective financing of an idea or project. Share Capital - Design governance contracts to distribute dividends among partners or employees transparently. 8

9 Futures of raw materials - Participate in the market of raw materials and futures using various smart contracts BUSINESS MODELS For each trade, the exchange applies only a small 0.15% fee to the users that participate in the transaction. Each time a new asset is added to the exchange, the platform charges a fee for the issuance of the digital good in the markets. The platform will have a sponsorship program with different paid advertising spaces for those customers who request the service in our highlighted spaces in the tokens' portfolios. Lescovex presents a near future where any value can be digitized and traded in a simple and intuitive exchange. This scenario has the potential to reach a huge audience that has not yet become familiar with blockchain technology and even less with the creation of its first digital token. Project website link: Lescovex.com Main repository link: Authors of this document: Lescovex team, Vicent Nos, David Proto 9

Tokenize it! Creation and exchange of digital assets WHITE PAPER

Tokenize it! Creation and exchange of digital assets WHITE PAPER Tokenize it! Creation and exchange of digital assets WHITE PAPER 1 2 WHITE PAPER WHITE PAPER White Paper Version 0.3 March 23, 2018 ABSTRACT This document describes a platform that applies the Ethereum

More information

Blend whitepaper V 1.0

Blend whitepaper V 1.0 Blend whitepaper V 1.0 Legal considerations, risk and disclaimer PLEASE READ THIS DISCLAIMER SECTION AND THIS ENTIRE WHITE PAPER CAREFULLY. YOU MUST NOT INVEST IN THIS INITIAL COIN OFFERING (ICO) WHITHOUT

More information

Trading platform for the creation and exchange of digital assets

Trading platform for the creation and exchange of digital assets Trading platform for the creation and exchange of digital assets WHITEPAPER 2018 1. Executive Summary The Internet is experiencing a new technological revolution, a paradigm shift where the World Wide

More information

ICO C O N S T R U C T O R

ICO C O N S T R U C T O R ICO CONSTRUCTOR What is an ICO An ICO, Initial coin offering, is a form of attracting investments by selling to investors a fixed number of new cryptocurrency units obtained through onetime or accelerated

More information

A distributed platform Patentico Innovations in the field of Intellectual Property

A distributed platform Patentico Innovations in the field of Intellectual Property A distributed platform Patentico Innovations in the field of Intellectual Property Mission of the company Global performance in the field of intellectual property Ecosystem and decentralized platform Solving

More information

The first blockchain-secured Forex marketplace. https://serenity-financial.io/

The first blockchain-secured Forex marketplace. https://serenity-financial.io/ The first blockchain-secured Forex marketplace https://serenity-financial.io/ Contents 1. Introduction... 3 2. Problem description... 4 3. About the project... 5 3.1. Project mission.... 5 3.2. Who benefits

More information

Local Trade. A decentralized peer to peer exchange with escrow support for Crypto Traders. White Paper

Local Trade. A decentralized peer to peer exchange with escrow support for Crypto Traders. White Paper Local Trade A decentralized peer to peer exchange with escrow support for Crypto Traders. White Paper Table Index Abstract 2. LocalTrade Platform 1. Escrow Trading 2. How does escrow work? 3. What does

More information

SECURITY TOKEN MCEX: A

SECURITY TOKEN MCEX: A SECURITY TOKEN MCEX: A Regulated Security Token +14074834057 www.mercury.cash / www.miami.exchange support@mercury.cash 6427 Milner Blvd #4, Orlando, FL, 32809 US Version 1.2 Abstract: The modern world

More information

WHITEPAPER. Copyright 2018 Fox Trading FX

WHITEPAPER. Copyright 2018 Fox Trading FX WHITEPAPER Copyright 2018 Fox Trading FX CONTENTS 1. DISCLAIMER... 4 2. INTRODUCTION... 6 2.1. Trading revolution with cryptocurrency... 6 2.2. Automatic trading with robots... 7 2.3. Advantages and disadvantages

More information

White Paper. Bizanc Blockchain

White Paper. Bizanc Blockchain White Paper Versão 0.0.1 Bizanc Blockchain 1.0 Summary Bizanc is a decentralized platform for commercialization of digital assets, operating on a Blockchain architecture, allowing trading of cryptocurrencies

More information

Loyalty program on the Credits blockchain platform Building a program with blockchain and smart contracts. Issuing tokens as loyalty points.

Loyalty program on the Credits blockchain platform Building a program with blockchain and smart contracts. Issuing tokens as loyalty points. Loyalty program on the Credits blockchain platform Building a program with blockchain and smart contracts. Issuing tokens as loyalty points. Disadvantages of the current loyalty programs Complicated procedure

More information

Crypto regulation in Switzerland

Crypto regulation in Switzerland Crypto regulation in Switzerland Avv. Lars Schlichting, LL.M., Partner 1 FinTech Regultion and ICO Guidance in Switzerland 2 The new FinTech rules (1) BankO in force from 1.8.17 / FINMA Circular 08/3 on

More information

Introduction. Meet ETHBITS

Introduction. Meet ETHBITS Introduction Cryptocurrency, specifically Blockchain, has been proven to be a groundbreaking technology in society today, yet it is still in the early stages of adoption. Consequently, many new cryptocurrency

More information

CRYPTOCOIN INSURANCE

CRYPTOCOIN INSURANCE CRYPTOCOIN INSURANCE The first option exchange with the possibility of insuring deposits against fall Large and entirely free market that has no technical solution yet. We provide your efficiency for the

More information

Redan. Peer To Peer Crypto Exchange

Redan. Peer To Peer Crypto Exchange Redan Peer To Peer Crypto Exchange What is Redan TOKEN? Redan is a cryptocurrency trading platform, offers a state of the art, highly sophisticated hybrid platform. Unlike most exchanges that offer only

More information

EtherJack.io is the first fully smart contract based jackpot game. The core game process is safe and secure, running completely on-chain, operated by

EtherJack.io is the first fully smart contract based jackpot game. The core game process is safe and secure, running completely on-chain, operated by EtherJack.io is the first fully smart contract based jackpot game. The core game process is safe and secure, running completely on-chain, operated by contracts with disclosed source code, with only optional

More information

WHITEPAPER. Prepared by TOA

WHITEPAPER. Prepared by TOA WHITEPAPER Prepared by TOA TOAX: EXCHANGE PROFIT DIVIDEND TOKEN The TOAX Token is the exchange profit sharing token of TOAX. Each TOAX investor can get up to 60% of the daily profits from the TOAX Exchange

More information

Index. 6. Road map. 1. Abstract. 7. Initial Coin Offering ( ICO ) ICO Process Distribution Coingrid Token ( CGT ) Use of Ethereum Brokerage Platform

Index. 6. Road map. 1. Abstract. 7. Initial Coin Offering ( ICO ) ICO Process Distribution Coingrid Token ( CGT ) Use of Ethereum Brokerage Platform Whitepaper v1.25 Index 1. Abstract 6. Road map 2. What is Cryptocurrency? 3. Team Advisors 4. Why Coingrid? User Interface Real Time Conversion 7. Initial Coin Offering ( ICO ) ICO Process Distribution

More information

FLASH TOKEN. due to such a knowledge, we go for its development and promotion.

FLASH TOKEN. due to such a knowledge, we go for its development and promotion. FLASH TOKEN FLASH TOKEN The Flash Token Project has already an industrial mining plant and sales points for meeting equipment. We successfully invest in promising crypto-currencies and ICO companies, have

More information

Over the counter or off exchange trading is done directly between two parties, without the supervision of an exchange.

Over the counter or off exchange trading is done directly between two parties, without the supervision of an exchange. 1 Contents A. Statement... 3 B. Vision... 4 C. Introduction... 6 D. About... 7 E. Business model and opportunities... 8 F. Ecosystem... 9 G. Roadmap... 10 H. Circulation suplay... 11 I. Team... 12 2 STATEMENT

More information

LEVERAGE. Whitepaper v1.0.5 (April 2018)

LEVERAGE.  Whitepaper v1.0.5 (April 2018) LEVERAGE Whitepaper v1.0.5 (April 2018) ht- tps://- bitcoinhttp://twitter.com/leveragetoken http://bitcointalk.org/index.php?topic=2949207 What is Leverage? Leverage ( in Korean, in Chinese, LVP for short)

More information

4.3 / 7.0. MEDIUM Quality Rate INVESTMENT REVIEW OF ICO PROJECT. parsecfrontiers.com ICO: Инвестиционный обзор ICO проекта digrate.

4.3 / 7.0. MEDIUM Quality Rate INVESTMENT REVIEW OF ICO PROJECT. parsecfrontiers.com ICO: Инвестиционный обзор ICO проекта digrate. INVESTMENT REVIEW OF ICO PROJECT parsecfrontiers.com ICO: 01.04.2018 MEDIUM Quality Rate AVERAGE SCORE 4.3 / 7.0 Инвестиционный обзор ICO проекта Coinvest DREAMTEAM digrate.com LIMITATION OF LIABILITY

More information

White Paper Exchange. Reborn.

White Paper Exchange. Reborn. www.phoenex.global White Paper Exchange. Reborn. Disclaimer The white paper prepared by PHOENEX team is for elaboration, description and for informational purposes only presented to potential participants

More information

Chrysalis (CWH) Adaptive Youth Sports Charity. on the Blockchain

Chrysalis (CWH) Adaptive Youth Sports Charity. on the Blockchain Chrysalis (CWH) Adaptive Youth Sports Charity on the Blockchain 1 Abstract Chrysalis Is The Development Transformation Of A Caterpillar Into A Butterfly. It Is Our Goal To Help Bring Children With Special

More information

White Paper ICO #RTCoin is a token with monthly income from operational activities*.

White Paper ICO #RTCoin is a token with monthly income from operational activities*. White Paper ICO #RTCoin is a token with monthly income from operational activities*. *The operational income is calculated as a fixed percentage of the client payments inflow o the RTCrypto broker. The

More information

XWIN CryptoBet SUMMARY

XWIN CryptoBet SUMMARY XWIN CryptoBet SUMMARY XWIN is a transparent betting platform for sporting and other events with revenue sharing using the decentralized smart contracts on the Ethereum blockchain. The unprecedented development

More information

Pottery Research is an organization that uses knowledge of law and financial markets, where it interacts, to assist investment and business stability

Pottery Research is an organization that uses knowledge of law and financial markets, where it interacts, to assist investment and business stability Pottery Research is an organization that uses knowledge of law and financial markets, where it interacts, to assist investment and business stability in Sub Saharan Africa. Through the provision of business,

More information

CMR White Paper THE ICO STARTER

CMR White Paper THE ICO STARTER CMR White Paper THE ICO STARTER Index 1. Introduction 2. What is CMR coin? 3. How does CMR create value? 4. CMR coin characteristics 5. ICO of CMR 6. Buying and trading CMR 7. How is the underlying portfolio

More information

Savior Investments. A decentralized funding Cryptocurrency

Savior Investments. A decentralized funding Cryptocurrency Savior Investments A decentralized funding Cryptocurrency Table of Contents Introduction Our Goal.... The Major Problem of the Market.. What we do now?.... Why we use Ethereum?.... Make it a Smart Investment

More information

DEx.top Technical White Paper (V1.0)

DEx.top Technical White Paper (V1.0) Introduction DEx.top Technical White Paper (V1.0) DEx.top is a decentralized exchange built on blockchain smart contract (including but not limited to Ethereum and Rootstock). DEx.top is the first of its

More information

DECENTRALIZED ASSET TRADING PLATFORM WHITEPAPER VERSION 3.1 DATP.MARKET

DECENTRALIZED ASSET TRADING PLATFORM WHITEPAPER VERSION 3.1 DATP.MARKET DECENTRALIZED ASSET TRADING PLATFORM WHITEPAPER VERSION 3.1 DATP.MARKET CONTENTS 1 INTRODUCING DECENTRALIZED ASSET TRADING PLATFORM 2 PROBLEM PROBLEM WITH EXCHANGE OF THIRD PARTY PAYMENTS USER EXPERIENCE

More information

F i nanci a l infr ast ruct u r a l P a yall pla t form

F i nanci a l infr ast ruct u r a l P a yall pla t form F i nanci a l infr ast ruct u r a l P a yall pla t form investment scheme, nor does it require the registration at or approval of the Monetary Authority of Singapore. Participants are encouraged to read

More information

VERSION 2.0 May 22th 2018 ENGLISH

VERSION 2.0 May 22th 2018 ENGLISH VERSION 2.0 May 22th 2018 ENGLISH CONTENT 1. Abstract 2. Introduction 3. The Healthcare Systems 4. Our Proposal 5. The Vita Ecosystem 6. The Power of the Obtained Data 7. Our Sustainability Model 8. Reward

More information

HOW TO PARTICIPATE IN THE MODL TOKEN SALE. Step-by-step guide

HOW TO PARTICIPATE IN THE MODL TOKEN SALE. Step-by-step guide HOW TO PARTICIPATE IN THE MODL TOKEN SALE. Step-by-step guide HI THERE! Want to buy MODL tokens? That s great! Thanks for your interest in our project. We have prepared stepby-step instructions for you

More information

ABSTRACT. There is a limited number of tokens available, and it is advised that you take advantage of the ICO discounts.

ABSTRACT. There is a limited number of tokens available, and it is advised that you take advantage of the ICO discounts. ABSTRACT As the cryptocurrency industry gets more recognized by mainstream users, it needs to evolve to ensure it finally achieves the core objectives that Satoshi Nakamoto had ten years ago when he developed

More information

FLASH TOKEN WHITE PAPER

FLASH TOKEN WHITE PAPER FLASH TOKEN WHITE PAPER 2017 Blockchain Technology Cryptocurrency and the Economy Cryptocurrency Market The Flash Company Mining Benefits in Business Company Structure FLASH TOKEN ICO: the Order of Implementation

More information

WHITEPAPER V4.1. Copyright 2018 Fox Trading FX

WHITEPAPER V4.1. Copyright 2018 Fox Trading FX WHITEPAPER V4.1 Copyright 2018 Fox Trading FX CONTENTS 1. DISCLAIMER... 4 2. INTRODUCTION... 6 2.1. Trading revolution with cryptocurrency... 6 2.2. Automatic trading with robots... 6 2.3. Advantages and

More information

Guidelines. 1 Purpose. 2 Making an enquiry. for enquiries regarding the regulatory framework for initial coin offerings (ICOs)

Guidelines. 1 Purpose. 2 Making an enquiry. for enquiries regarding the regulatory framework for initial coin offerings (ICOs) Guidelines for enquiries regarding the regulatory framework for initial coin offerings (ICOs) Published 16 February 2018 1 Purpose In an ICO, investors transfer funds, usually in the form of cryptocurrencies,

More information

X8 White paper - Executive Summary

X8 White paper - Executive Summary X8 White paper - Executive Summary The X8 Project The X8 Project has developed a complementing pair of crypto assets, backed up by a proprietary, tried, tested and stable platform which will ensure that

More information

Table of contents. 2

Table of contents. 2 Whitepaper Table of contents Table of contents... 2 Overview... 3 TrillionToken... 3 Sports Betting Platform... 3 Cryptocurrency... 3 Blockchain technology... 3 Ethereum network... 5 TrillionToken token...

More information

TECHNICAL WHITEPAPER

TECHNICAL WHITEPAPER TECHNICAL WHITEPAPER ARC Reserve Currency ( ARC ) is an intrinsic-value stablecoin. It is an ERC20 compliant token, whose price is related to a pool of underlying assets held by a special purpose vehicle

More information

Welcome to the Future of Crypto Investing

Welcome to the Future of Crypto Investing Welcome to the Future of Crypto Investing White paper 2018 Table of contents 3 4 6 7 8 10 11 13 17 Welcome to UpStake The Concept Exchange ICO Affiliate Program Why Invest in UpStake Tokens Road Map Most

More information

Lovar. Artificial Intelligence Investment Platform. White Paper

Lovar. Artificial Intelligence Investment Platform. White Paper Lovar Artificial Intelligence Investment Platform White Paper Version 1.06 Last amended: 05/23/2018 Table of Contents 1. Introduction... 1 2. About Us... 1 3. Our Services... 2 4. Lovar Features... 3 5.

More information

Executive Summary. What is purpose & mission of zuflo.io project?

Executive Summary. What is purpose & mission of zuflo.io project? Executive Summary What is purpose & mission of zuflo.io project? Executive Summary Zuflo aims to be a trading & financing platform for the industry 4.0 era using technologies like Blockchain & Artificial

More information

The first blockchain-based digital commodities platform

The first blockchain-based digital commodities platform The first blockchain-based digital commodities platform Singapore has long been a major trading centre for commodities and best-performing financial market in Asia. The commodity market has evolved significantly

More information

Symmetry FUND. Whitepaper October 2017

Symmetry FUND. Whitepaper October 2017 Symmetry FUND Whitepaper October 2017 www.symmetry.fund www.symmetry.fund 1 Introduction Cryptocurrencies like Bitcoin, Ethereum, Ripple, Dash and Litecoin are disrupting how currencies are distributed

More information

UBEX TOKEN ECONOMICS

UBEX TOKEN ECONOMICS www.ubex.com UBEX TOKEN ECONOMICS The Ubex team will generate an ERC-20 standard UBEX TOKEN (UBEX) via an Ethereum Smart Contract. All wallets supporting Ether, including MyEtherWallet, MetaMask, Parity,

More information

CoinPennant. White Paper. January 14, 2018 V

CoinPennant. White Paper. January 14, 2018 V CoinPennant White Paper January 14, 2018 V0.65 www.coinpennant.com contact@coinpennant.com This could be not the last version of White Paper. Please check on www.coinpennant.com for the last version. Table

More information

QuickLaunch University Webinar Series Initial Coin Offerings: Recent Developments and Legal Considerations for Startups

QuickLaunch University Webinar Series Initial Coin Offerings: Recent Developments and Legal Considerations for Startups QuickLaunch University Webinar Series Initial Coin Offerings: Recent Developments and Legal Considerations for Startups November 7, 2017 Attorney Advertising Speakers Glenn Luinenburg Partner WilmerHale

More information

Our team have invested more than $150M, especially in FinTech / Blockchain / Internet / IT / MedTech projects.

Our team have invested more than $150M, especially in FinTech / Blockchain / Internet / IT / MedTech projects. Page 0 / 10 CONTENT ABOUT CRYPTON VENTURE CAPITAL... 3 GOALS... 3 EXPERIENCE... 3 AWARDS AND CERTIFICATIONS... 4 CRYPTON VC PARTNERS... 4 THE MAIN ADVANTAGES OF THE CRYPTON VC... 5 TEAM... 5 BOARD OF INVESTORS

More information

Initial coin offerings a regulatory overview

Initial coin offerings a regulatory overview Initial coin offerings a regulatory overview Introduction What is an ICO? Comparison to other means of fundraising Legal implications The regulators approach Practical aspects Introduction On the back

More information

THE MOST INNOVATIVE AND LUCRATIVE WAY TO EARN BITCOIN.

THE MOST INNOVATIVE AND LUCRATIVE WAY TO EARN BITCOIN. THE MOST INNOVATIVE AND LUCRATIVE WAY TO EARN BITCOIN Abstract... Our Goal... The Marketplaces Issues... What is Kubic Coin?. What we do?... Why we use Ethereum?... Fast and Smooth Investment System...

More information

ICO Review: PolicyPal Network (PYPL)

ICO Review: PolicyPal Network (PYPL) ICO Review: PolicyPal Network (PYPL) Insurance for the Unbanked and Cryptoassets February 15, 2018 PROJECT OVERVIEW What is PolicyPal? PolicyPal Network is a non-regulated platform built with the vision

More information

Komodo Secured Bond KSB

Komodo Secured Bond KSB Komodo Secured Bond KSB Ø Crypto Union December 10, 2018 Abstract Komodo Secured Bond (KSB) is a secured and asset-backed token that answers the need to access capital via loans and to safely store value

More information

REAL DECENTRALIZED BETTING PLATFORM

REAL DECENTRALIZED BETTING PLATFORM REAL DECENTRALIZED BETTING PLATFORM C O N T E N T S 1. Executive Summary 1.1 Introduction 1.2 Betting World Today 1.3 The Problem & Challenges 2. The BET Network Platform 2.1 Hosting Betting Events for

More information

Disruptive evolution in digital currency technologies

Disruptive evolution in digital currency technologies Disruptive evolution in digital currency technologies A ground breaking platform leveraging unique Blockchain based multi-business model creating sustainable wealth for all the members. Litepaper, V.1

More information

BANK OF THE FUTURE COMBINING CONVENIENCE OF PLASTIC CARDS AND INDEPENDENCE OF BLOCKCHAIN FOR 2 BILLION TRANSACTIONS

BANK OF THE FUTURE COMBINING CONVENIENCE OF PLASTIC CARDS AND INDEPENDENCE OF BLOCKCHAIN FOR 2 BILLION TRANSACTIONS BANK OF THE FUTURE COMBINING CONVENIENCE OF PLASTIC CARDS AND INDEPENDENCE OF BLOCKCHAIN FOR 2 BILLION TRANSACTIONS White Paper 2017 STEP-BY-STEP INTRODUCTION 1 2 3 4 5 6 7 ABOUT US PROBLEMS WE SOLVE 5

More information

Business Plan ICO Consultancy

Business Plan ICO Consultancy Business Plan ICO Consultancy By Shariq Hashmi CO-FOUNDER & PROJECT LEAD zuflo.io ZFL Exchange zuflo coin (ZFL) Copyright 2018 zuflo.io What is zuflo coin (ZFL) ZFL is a utility token that enables frictionless

More information

EXCHANGE INFINITE. Website: Note : This is not a white paper. This is a pre-whitepaper executive summary.

EXCHANGE INFINITE. Website:    Note : This is not a white paper. This is a pre-whitepaper executive summary. EXCHANGE INFINITE Website: www.xinfin.org Email : info@xinfin.org Note : This is not a white paper. This is a pre-whitepaper executive summary. PROBLEM OVERVIEW The state of the world has evolved after

More information

WHITE PAPER. Smart Investments Into Crypto Technologies and Blockchain

WHITE PAPER. Smart Investments Into Crypto Technologies and Blockchain WHITE PAPER Smart Investments Into Crypto Technologies and Blockchain CONTENT What is CryptoFund 03 Market Review 04 Issues Identification and Management 05 How CryptoFund Works 06 Investment Strategy

More information

Harbor Token White Paper

Harbor Token White Paper ver 1.1 Harbor Token White Paper Harbor Token is an ERC20-based cryptocurrency of the Ethereum network as a token with the right to purchase all goods and services distributed on the Harbor platform. It

More information

MEDIA ROYALTY ACQUISITION TOKEN

MEDIA ROYALTY ACQUISITION TOKEN MEDIA ROYALTY ACQUISITION TOKEN THE 2-IN-1 CRYPTOCURRENCY WHITEPAPER V1.0 issued October 10th 2017 BUY!! TRADE!! OWN!! STAKE!! PROFIT!! www.mratoken.com TABLE OF CONTENTS Abstract 1 Overview of Media Royalties

More information

This document and information contained herein may not be sent and or addressed wholly or in

This document and information contained herein may not be sent and or addressed wholly or in 1 Page The purpose of this white paper is to present MATOX Exchange and MAT (Matox Token) to potential token holders in connection with the proposed ICO. The information set forth below may not be exhaustive

More information

FreeZone FOR BLOCKCHAIN BUSINESS WHITE PAPER

FreeZone FOR BLOCKCHAIN BUSINESS WHITE PAPER Contents 1. What is FreeZone? 2. FreeZone: Free Economic Blockchain Zone and its Benefits 3. Who Needs FreeZone and Why? 4. Five Businesses of FreeZone 4.1 Universal Trading Platform 4.2 Payment System

More information

TOKEN ECONOMY PAPER WHITEPAPER APPENDIX A

TOKEN ECONOMY PAPER WHITEPAPER APPENDIX A INNOVATION IMPACTFUL INTEGRITY AENCO Ecosystem Global Healthtech Blockchain Financial Solutions TOKEN ECONOMY PAPER WHITEPAPER APPENDIX A 48 APPENDIX A: TOKEN ECONOMY PAPER The Aenco Ecosystem and The

More information

More Intelligent Platform Designed for Higher Liquidity

More Intelligent Platform Designed for Higher Liquidity More Intelligent Platform Designed for Higher Liquidity 16th Dec 2017 www.otcbtc.com White Paper V0.3 Project Background With blockchain technology developing so quickly and gaining increasing usage in

More information

Blockchain: from electronic cash to redefining trust

Blockchain: from electronic cash to redefining trust Blockchain: from electronic cash to redefining trust Gabriel Aleixo researcher ITS Rio BLOCKCHAIN TECHNOLOGY Provides a new way for transferring and storing data in multiple aspects, without relying on

More information

SECRET COIN WHITE PAPER

SECRET COIN WHITE PAPER ABSTRACT With the development of blockchain technology and the rapid growth of the cryptocurrency market, new opportunities appear consistently in the field of investment. The traditional economy changes

More information

SUMMARY OF TERMS OF THE SIMPLE AGREEMENT FOR FUTURE TOKENS ISSUED BY BLOXABLE, INC. [Month] [Day], Background Information

SUMMARY OF TERMS OF THE SIMPLE AGREEMENT FOR FUTURE TOKENS ISSUED BY BLOXABLE, INC. [Month] [Day], Background Information SUMMARY OF TERMS OF THE SIMPLE AGREEMENT FOR FUTURE TOKENS ISSUED BY BLOXABLE, INC. [Month] [Day], 2018 Background Information This Summary of Terms of the Simple Agreement for Future Tokens (the SAFT

More information

Assurance in a blockchain world How you can prepare to address the risks

Assurance in a blockchain world How you can prepare to address the risks Assurance in a blockchain world How you can prepare to address the risks Brochure / report title goes here Section title goes here Introduction As your organization begins to embark on a journey to develop

More information

A Price-Stable Cryptocurrency. Government Debt Securities.

A Price-Stable Cryptocurrency. Government Debt Securities. STAPLE: A Price-Stable Cryptocurrency ensured by Government Debt Securities. Version 0.975 (June 28, 2018) Contents 1MISSION STATEMENT 2 2 INTRODUCTION 2 3 TERMS AND DEFENITIONS 2 4 KEY BENEFITS OF STAPLES

More information

ICO Review: Republic Protocol (REN)

ICO Review: Republic Protocol (REN) ICO Review: Republic Protocol (REN) Decentralized Dark Pool Exchange January 20, 2018 PROJECT OVERVIEW What is a dark pool? An exchange where orders are placed and executed on a hidden order book. Exists

More information

BLOCKCHAIN, CRYPTOCURRENCY & THE LEGAL ENVIRONMENT IN SINGAPORE. 28 November 2017

BLOCKCHAIN, CRYPTOCURRENCY & THE LEGAL ENVIRONMENT IN SINGAPORE. 28 November 2017 BLOCKCHAIN, CRYPTOCURRENCY & THE LEGAL ENVIRONMENT IN SINGAPORE 28 November 2017 I. Introduction In the wake of the recent explosion of the use of blockchain and cryptocurrencies in Singapore, we examine

More information

Product Overview. Version October 2, 2017 thetoken.io Page 1 of 9

Product Overview. Version October 2, 2017 thetoken.io Page 1 of 9 Product Overview Version 1.1.2 October 2, 2017 thetoken.io Page 1 of 9 Tokenbox Overview The Ecosystem Tokenbox is a unique ecosystem that brings together crypto-currency funds under the management of

More information

White Paper-Diamante NET

White Paper-Diamante NET White Paper- Copyright Notice 2018. All Rights Reserved. This documentation is the sole property of Diamante Blockchain. Diamante Blockchain believes the information in this document or page is accurate

More information

Fin Tech in Serbia: Legal Overview

Fin Tech in Serbia: Legal Overview Fin Tech in Serbia: Legal Overview FIN TECH IN SERBIA : LEGAL OVERVIEW Publisher: JPM Janković Popović Mitić NBGP Apartments, 6 Vladimira Popovića street www.jpm.rs AuthorS: Nikola Poznanović, Partner,

More information

Boon Coin Terms and Conditions

Boon Coin Terms and Conditions Boon Coin Terms and Conditions Please read carefully these Terms and Conditions (hereinafter the "Terms") before using a website "www.boon.vc" (hereinafter the "Website"), as they affect your obligations

More information

PlusCoin(PLC) Whitepaper

PlusCoin(PLC) Whitepaper PlusCoin(PLC) Whitepaper Abstract Metaps Plus Inc. (hereinafter referred to as Metaps Plus ) is a mobile marketing solution and mobile FinTech company, having Korea s biggest mobile commerce company Smartcon

More information

No se encuentran entradas de índice.

No se encuentran entradas de índice. No se encuentran entradas de índice. 2 1. Introduction The global economy is changing. The last decade have brought us big advances in fields that, until not so long ago, were barely exploited; amongst

More information

NAIRA COIN. Fiat Currency on the Ethereum Blockchain

NAIRA COIN. Fiat Currency on the Ethereum Blockchain NAIRA COIN Fiat Currency on the Ethereum Blockchain Content 3 Abstract 30 Naira Coin Technology Stack 4 6 7 8 Introduction Proposed Implementation Strategies Target Audience Why Merchants? 31 34 36 Fund

More information

PrivacyStake Whitepaper

PrivacyStake Whitepaper PrivacyStake Whitepaper Support@PrivacyStake.com Introduction PrivacyStake has seen cryptocurrency grow throughout the years. Since 2016 staking and lending platforms have become more popular. However,

More information

IEW. OINT OF NOTHER ROM BLOCKCHAIN 101 // EXECUTIVE DECK. Marcelo T. de Alvear 405 Oficina # 9 Ciudad de Buenos Aires Argentina

IEW. OINT OF NOTHER ROM BLOCKCHAIN 101 // EXECUTIVE DECK. Marcelo T. de Alvear 405 Oficina # 9 Ciudad de Buenos Aires Argentina // Marcelo T. de Alvear 405 Oficina # 9 Ciudad de Buenos Aires Argentina // T + 54 11 5352 1259 hi @ atixlabs.com // www.atixlabs.com ROM NOTHER OINT OF IEW. BLOCKCHAIN 101 // EXECUTIVE DECK > IT S NOT

More information

Initial Coin Offerings

Initial Coin Offerings Initial Coin Offerings Hossein Kazemi CAIA Association & Isenberg School of Management, University of Masschusetts May 30, 2018 1. Introduction In the late 1940s, W.J. Howey company owned a hotel and large

More information

The OneAlto Token (O-Token ) Standard. Version February 28, Abstract

The OneAlto Token (O-Token ) Standard. Version February 28, Abstract The OneAlto Token (O-Token ) Standard Version 1.0.0 February 28, 2019 Abstract OneAlto is building a decentralized compliance protocol to standardize the way cryptosecurities are issued and traded on blockchains.

More information

What is HomeBlockCoin

What is HomeBlockCoin Whitepaper This is not the final version of the HomeBlockCoin whitepaper. There won t be any significant changes but we will add more information as soon as possible. About HomeBlockCoin HomeBlockCoin

More information

Contents 1. Introduction 3 2. About the project Technology Jackpot 7 5. Income distribution For investors «OTT tok

Contents 1. Introduction 3 2. About the project Technology Jackpot 7 5. Income distribution For investors «OTT tok 1 Contents 1. Introduction 3 2. About the project.... 4 3. Technology..... 5 4. Jackpot 7 5. Income distribution.... 8 6. For investors... 9 7. «OTT token». 10 8. ICO goals.. 11 9. PRE-SALE, ICO... 11

More information

Description of the general aggregation scheme How do I perform trading transactions?... 6 REST API... 7 FIX API FortFC services...

Description of the general aggregation scheme How do I perform trading transactions?... 6 REST API... 7 FIX API FortFC services... Table of Contents Description of the general aggregation scheme... 3 How do I perform trading transactions?... 6 REST API... 7 FIX API... 7 FortFC services... 8 Services for banks, currency exchangers

More information

Swiss OTC Blockchain Information about the Swiss OTC Blockchain and further development

Swiss OTC Blockchain Information about the Swiss OTC Blockchain and further development Swiss OTC Blockchain Information about the Swiss OTC Blockchain and further development Michele Forte, Head of Fintech, michele.forte@ti8m.ch Consulting. Design. Agile Projects. Products. Innovation Hosting.

More information

Global food market: KEY ISSUES

Global food market: KEY ISSUES FOODCOIN PRESENTATION Important DISCLAIMER Foodcoin tokens are just utility tokens which can be used only on the 1000EcoFarms platform and network, and are not intended to be used as an investment. The

More information

NEOGOLD whitepaper NEOGOLD NEOGOLD

NEOGOLD whitepaper NEOGOLD NEOGOLD whitepaper ABSTRACT Thank you for taking your time to read this whitepaper for the Neo-Gold project. The information herein was simplified to make it understandable for both experts and novice in the cryptocurrency

More information

Hive Project Whitepaper

Hive Project Whitepaper Hive Project Whitepaper May 2017 Abstract With the emergence of blockchain technology and smart contracts, businesses no longer have to rely on centralized intermediaries when making transactions or obtaining

More information

Polaris (XPR) Dividend Paying Mining Farm on the Blockchain

Polaris (XPR) Dividend Paying Mining Farm on the Blockchain Polaris (XPR) Dividend Paying Mining Farm on the Blockchain 1 Abstract: The Polaris Token (XPR) is a representation of a share in the Polaris mining farm. Powerhouse Network, the parent company, has already

More information

EVERYTHING YOU NEED TO KNOW ABOUT DIGITAL LEDGER TECHNOLOGY, THE BLOCKCHAIN AND CRYPTOCURRENCIESÓ (Part I June 2018)

EVERYTHING YOU NEED TO KNOW ABOUT DIGITAL LEDGER TECHNOLOGY, THE BLOCKCHAIN AND CRYPTOCURRENCIESÓ (Part I June 2018) EVERYTHING YOU NEED TO KNOW ABOUT DIGITAL LEDGER TECHNOLOGY, THE BLOCKCHAIN AND CRYPTOCURRENCIESÓ (Part I June 2018) Robert C. Brighton, Jr. Brighton Legal Solutions P.A. rcbrightonbizlaw@gmail.com This

More information

Cream Ecosystem. Building the world s largest cryptocurrency ATM network and the first Ethereum-based dual token system. White paper. v1.2.

Cream Ecosystem. Building the world s largest cryptocurrency ATM network and the first Ethereum-based dual token system. White paper. v1.2. Cream Ecosystem Building the world s largest cryptocurrency ATM network and the first Ethereum-based dual token system. White paper v1.2.3 10/10/2017 Authored by Brett Westbrook and Narcis Ciobotariu 2017

More information

The First Certified Blockchain Based Diamond Exchange

The First Certified Blockchain Based Diamond Exchange The First Certified Blockchain Based Diamond Exchange Our Vision To Create an Open and Transparent Marketplace Where People can Invest in Diamonds as a New Asset Class What Is An Investment Asset Class?

More information

Mining Market Overview

Mining Market Overview NANO MINING TOKEN NanoPool is an end-to-end cryptocurrency mining services provider. It is launching NANOMining Token (NANO), a utility token based on ERC-20 standard on Ethereum Blockchain. NANO will

More information

SAI Blockchain. Dirk Hermans, KBC 24/10/2017. Company

SAI Blockchain. Dirk Hermans, KBC 24/10/2017. Company SAI Blockchain Dirk Hermans, KBC 24/10/2017 Company What it is not KBC 2 Cryptocurrencies And +1000 more!! Blockchain & financial institutions : the forgotten words LIABILITY GOVERNANCE REGULATIONS Ijsberg

More information

KILONOVA BLOCKCHAIN PLATFORM AND CRYPTOBANK KILONOVACOIN WHITEPAPER

KILONOVA BLOCKCHAIN PLATFORM AND CRYPTOBANK KILONOVACOIN WHITEPAPER KILONOVA BLOCKCHAIN PLATFORM AND CRYPTOBANK KILONOVACOIN WHITEPAPER 1 CONTENT: 1. WHAT IS THE KILONOVACOIN PLATFORM? WHAT IS KILONOVA CRYPTOCURRENCY? 1.1. INTRODUCTION 1.2. UNIQUE GOLD-BACKED CRYPTOCURRENCY,

More information

Whitepaper. Version 1.5

Whitepaper. Version 1.5 Whitepaper 2018 Version 1.5 Content 1 Current coin market 2 How CLB was formed 3 The CLB Concept - What is CB? 4 CLB Originality - Loan Service 5 CLB Introduction/Executives /Coin configuration 6 CLB technology

More information

Blockchain in travel for beginners

Blockchain in travel for beginners Blockchain in travel for beginners Blockchain - you have probably heard about it and may have dismissed it as another development in the technology industry, without realising its wide-reaching implications.

More information