2020/11/23 Blocknet | API Documentation 1/92

Total Page:16

File Type:pdf, Size:1020Kb

2020/11/23 Blocknet | API Documentation 1/92 2020/11/23 Blocknet | API Documentation Introduction Blocknet Protocol Service Nodes XBridge XRouter XCloud Getting Started Wallet Setup XBridge Setup XRouter Setup XCloud Setup XBridge APIBETA dxMakeOrder dxMakePartialOrder dxTakeOrder dxCancelOrder dxGetOrder dxGetOrders dxGetOrderBook dxGetMyOrders dxFlushCancelledOrders dxGetOrderFills dxGetOrderHistory https://api.blocknet.co 1/92 2020/11/23 Blocknet | API Documentation dxGetTradingData dxGetLocalTokens dxGetNetworkTokens dxGetTokenBalances dxGetNewTokenAddress dxGetUtxos dxSplitAddress dxSplitInputs dxLoadXBridgeConf Status Codes Error Codes XRouter APIBETA xrGetNetworkServices xrUpdateNetworkServices xrConnect xrConnectedNodes xrGetBlockCount xrGetBlockHash xrGetBlock xrGetBlocks xrDecodeRawTransaction xrGetTransaction xrGetTransactions xrSendTransaction xrGetReply xrShowConfigs xrReloadConfigs xrStatus XCloud APIBETA xrService xrServiceConsensus Core API getnetworkinfo listproposals servicenodelist Web Endpoints ticker (1.0) ticker (2.0) history status servicenodelist (web) dxgetnetworktokens (web) dxgetorders (web) xrgetnetworkservices (web) Changelog Need Support? Introduction Blocknet provides a simple and powerful API to build previously impossible multi-chain applications that consume services on different blockchains, all while remaining 100% trustless and decentralized. The API is accessible through command line (cli) with additional endpoints on the way. Code examples can be viewed in the dark panels next to each respective API call. Please see Getting Started to begin using the APIs or continue reading below to learn more about the Blocknet Protocol, the different components, and how they all work. Blocknet Protocol Blocknet is an interoperability protocol that can be used as a 2nd layer on any compatible blockchain to enable decentralized communication and exchange between different blockchains in a permissionless and trustless manner. Blockchain interoperability comes in 2 parts: exchange (XBridge) and communication (XRouter). BLOCK is the utility token of the Blocknet blockchain and powers the Blocknet Protocol. BLOCK is used to pay fees for the network's services, such as those provided by XBridge and XRouter. Through these fees, BLOCK is also used for compensation to participating Service Nodes to incentivize support. https://api.blocknet.co 2/92 2020/11/23 Blocknet | API Documentation Service Nodes The protocol is supported by a network of Service Nodes, which are similar to masternodes with an increased level of participation. Service Nodes host full nodes of the supported blockchains, host microservices, verify UTXOs, route communication between blockchains, participate in governance by voting, and perform anti-spam and anti-DOS measures for the network. Read more about Service Nodes here. Service Nodes earn 100% of fees from XBridge, XRouter, and XCloud services. If you'd like to operate your own Service Node, see the Service Node Setup Guide. XBridge XBridge provides the ability to perform true trustless and decentralized exchanges between any digital asset that is supported by the Blocknet Protocol via APIs (view list). When paired with XRouter, any application can perform exchanges between any compatible blockchains using a decentralized SPV implementation. Unlike every other "decentralized" exchange protocols, XBridge doesn't use derivatives (proxy tokens or colored coins), the entire process is done in a trustless manner, and it decentralizes the four components of an exchange: Storage of Funds - Trading is non-custodial and occurs directly out of the client's wallet. Funds remain within the client's control throughout the entire process. Order Books - Orders are broadcasted directly peer-to-peer over the network. Each client compiles the order book themselves instead of relying on a central order book service. All integrators and services on the protocol share the orderbook and liquidity. Currently there is just support for a public order book, but there are plans for private order books and direct trading as well. Order Matching - This is performed peer-to-peer by the clients. Settlement - This is performed using BIP65 CLTV atomic swap contracts[1]. For blockchains that do not inherently support BIP65, such as Ethereum, similar methods are being emulated to extend the protocol to those blockchains and subsequent assets. [1] ACCT using Check Lock Time Verify (#4) The exchange takes place on each respective blockchain with the process overlooked by a network of 400+ Service Nodes running full nodes of the compatible blockchains to ensure no malicious behavior is ocurring. Note that once an exchange is completed, when the funds are received will be dependent on the blockchain's accepted confirmation time. By default, the required amount of confirmations for most assets is 0 and the funds aren't spent until each blockchain achieves their respective required amount of confirmations. For instance, let's look at an example of an exchange between BTC requiring 1 confirmation and BLOCK requiring 2 confirmations. BLOCK has a faster confirmation time so it will receive 2 confirmations while BTC has 0, but the funds will not be spent until BLOCK has at least 2 confirmation and BTC has at least 1 confirmation. Both conditions must be met. This setting applies to the asset that you are receiving. The setting for the asset that is being sold is set by the opposite party. There is currently a fixed fee of 0.015 BLOCK to take (fill) an order and no fee to make(create) an order. XBRIDGE DESIGN The following diagrams depict the events of an exchange with various outcomes. As seen in the diagrams, a "client" refers to software utilizing the Blocknet Protocol, which can be a blockchain, microservice, dApp, mobile app, website, etc. Successful Exchange (view full size image) The flow of the diagram above is top-to-bottom, left-to-right: 1. The maker client creates an order locally. The order is put in new state. 2. The order is broadcasted to the network. A network transaction fee for the maker asset's blockchain is charged to the maker. 3. The Service Node network verifies the order is good. 4. The order is added to the order books, which the Service Nodes relay. The order is put in open state. 5. The taker client responds to take the order. A network transaction fee for the taker asset's blockchain is charged. A fixed 0.015 BLOCK fee is charged to the taker. The order is put in accepting state. 6. The Service Node network verifies the response to take the order is good. 7. The maker acknowledges the taker. The order is put in hold state. 8. The maker and trader assets are deposited into the atomic swap P2SH address. The order is put in created state. 9. The Service Nodes verify the terms of the atomic swap contract are good. https://api.blocknet.co 3/92 2020/11/23 Blocknet | API Documentation 10. The transactions to the P2SH meet the required amount of confirmations. 11. The P2SH secrets are spent to the opposite party. The order is put in signed state. The order is put in commited state. 12. The maker and taker successfully receive the exchanged assets. The order is put in finished state. Failed Exchange - Bad Maker Order (view full size image) The flow of the diagram above is top-to-bottom, left-to-right: 1. The maker client creates an order locally. The order is put in new state. 2. The order is broadcasted to the network. A network transaction fee for the maker asset's blockchain is charged to the maker. 3. The Service Node network verifies the order is bad. 4. The order is rejected by the network. The order is put in canceled state. Failed Exchange - Bad Taker Response (view full size image) The flow of the diagram above is top-to-bottom, left-to-right: 1. The maker client creates an order locally. The order is put in new state. 2. The order is broadcasted to the network. A network transaction fee for the maker asset's blockchain is charged to the maker. 3. The Service Node network verifies the order is good. 4. The order is added to the order books, which the Service Nodes relay. The order is put in open state. 5. The taker client responds to take the order. A network transaction fee for the taker asset's blockchain is charged. A fixed 0.015 BLOCK fee is charged to the taker. The order is put in accepting state. 6. The Service Node network verifies the response to take the order is bad. The order is put in canceled state. https://api.blocknet.co 4/92 2020/11/23 Blocknet | API Documentation Failed Exchange - Bad Atomic Swap Terms (view full size image) The flow of the diagram above is top-to-bottom, left-to-right: 1. The maker client creates an order locally. The order is put in new state. 2. The order is broadcasted to the network. A network transaction fee for the maker asset's blockchain is charged to the maker. 3. The Service Node network verifies the order is good. 4. The order is added to the order books, which the Service Nodes relay. The order is put in open state. 5. The taker client responds to take the order. A network transaction fee for the taker asset's blockchain is charged. A fixed 0.015 BLOCK fee is charged to the taker. The order is put in accepting state. 6. The Service Node network verifies the response to take the order is good. 7. The maker acknowledges the taker. The order is put in hold state. 8. The maker and trader assets are deposited into the atomic swap P2SH address. The order is put in created state. 9. The Service Nodes verify the terms of the atomic swap contract are bad. 10. The funds in the P2SH addresses are redeemed back to the original party. The order is put in canceled state. XBRIDGE FEES Maker Fee - When creating an order with XBridge, there is no fee other than the transaction fee for the network of the asset being sold. This is the same type of fee you would incur if sending this asset to another party.
Recommended publications
  • Realising Blockchain's Surge in Mass Adoption with Unlimited Scaling, Speed and Cross-Chain Interope
    THE NuGENESIS REVOLUTION: REALISING BLOCKCHAIN’S SURGE IN MASS ADOPTION WITH UNLIMITED SCALING, SPEED AND CROSS-CHAIN INTEROPERABILITY; and, BRIDGING WITH LEGAL AND MAINSTEAM ECONOMIC SUPPORT PART A INTRODUCTION AND SUMMARY INTRODUCTION NuGenesis is a fully completed native blockchain originally built for Government and transnational corporate applications. In the context of building a blockchain for Central Bank Digital Currencies (CBDC’s), and an exchange clearing house for settlement, limitations to scaling and speed, latency and reliance on human miners and validators had to be eliminated. Security had to be enhanced, its integrity underscored by Artificial Intelligence (AI) and carbon neutral in its efficiency. We have now made the NuGenesis gasless network of cross-chain blockchains available for commercial and social application for use by modifying it to maximise its efficacy for the up-coming tidal wave of mass adoption. This has meant not only the most advanced next-generation layer 1 multi-chain blockchain configuration system that is cross-chain interoperable, but which it easy and cost effective for developers to customise their own version which can run as a parallel network and accessing explosive new potential capabilities for Smart Contracts, NFTs, virtual reality innovation. The NuGenesis multi-cross chain network provides: 1. The Most Advanced Tech The NuGenesis blockchain network currently consists of a quad cross chain configuration interoperability: (a) The NuGenesis Main blockchain, built on Substrate; (b) The Ledger X (Exchange) chain based on C++ that is itself a parallel processing chain made of a tri blockchain configuration; (c) The Ethereum chain; and, (d) The Bitcoin Chain NuGenesis achieves unlimited scalability and speed through eliminating the validation bottleneck to data flow, uses consensus before packing and, currently implementing load balancers, with their own blockchain, to maximise block data, creation and speed.
    [Show full text]
  • Blockchain & Cryptocurrency Regulation
    Blockchain & Cryptocurrency Regulation Third Edition Contributing Editor: Josias N. Dewey Global Legal Insights Blockchain & Cryptocurrency Regulation 2021, Third Edition Contributing Editor: Josias N. Dewey Published by Global Legal Group GLOBAL LEGAL INSIGHTS – BLOCKCHAIN & CRYPTOCURRENCY REGULATION 2021, THIRD EDITION Contributing Editor Josias N. Dewey, Holland & Knight LLP Head of Production Suzie Levy Senior Editor Sam Friend Sub Editor Megan Hylton Consulting Group Publisher Rory Smith Chief Media Officer Fraser Allan We are extremely grateful for all contributions to this edition. Special thanks are reserved for Josias N. Dewey of Holland & Knight LLP for all of his assistance. Published by Global Legal Group Ltd. 59 Tanner Street, London SE1 3PL, United Kingdom Tel: +44 207 367 0720 / URL: www.glgroup.co.uk Copyright © 2020 Global Legal Group Ltd. All rights reserved No photocopying ISBN 978-1-83918-077-4 ISSN 2631-2999 This publication is for general information purposes only. It does not purport to provide comprehensive full legal or other advice. Global Legal Group Ltd. and the contributors accept no responsibility for losses that may arise from reliance upon information contained in this publication. This publication is intended to give an indication of legal issues upon which you may need advice. Full legal advice should be taken from a qualified professional when dealing with specific situations. The information contained herein is accurate as of the date of publication. Printed and bound by TJ International, Trecerus Industrial Estate, Padstow, Cornwall, PL28 8RW October 2020 PREFACE nother year has passed and virtual currency and other blockchain-based digital assets continue to attract the attention of policymakers across the globe.
    [Show full text]
  • Cointelegraph Security Token Report
    The Security Token Report 2021 Research Partners We thank our research partners for their support of this report. Authors Demelza Hays, Ph.D. Demelza Hays is the director of research at Cointelegraph, and formerly was a Forbes 30 Under 30, U.S. Department of State Fulbright Scholar, and fund manager of two regulated crypto funds. Katharina Gehra Katharina Gehra is the CEO & Co-Founder of Immutable Insight GmbH and the fund manager of the first German crypto hedge fund, a 3-times Capital Top 40 under 40 and a supervisory board member at Fürstlich Castell’sche Bank. She is the co-host of the blockchain pod- cast Block52. Silvan Thoma and Martin Liebi Silvan Thoma ([email protected]) / Martin Liebi ([email protected]) both PwC Legal, Switzerland advise and have advised multiple digital assets operators in the legal aspects of the issuance of digital assets and the set-up and licensing process of the operation of mul- tilateral trading facilities. Urszula McCormack Partner, Cross-Border Finance and Technology, King & Wood Mallesons. Urszula McCormack is one of Asia’s leading regulatory and digital economy lawyers, with a focus on emerging technologies. Urszula advises global banks, payment institutions, large technology com- panies, virtual asset issuers and innovators on new products, compliance and financial services licensing. She also advises on privacy regulation, digital transformation and algorith- mic design. Urszula is a member of multiple advisory bodies and is regularly invited to brief governments, regulators and transnational policymakers. Urszula is admitted to practice law in Hong Kong, Australia and England & Wales. © Crypto Research Report, © Cointelegraph Research, Security Token Report, 2021 3 Rika Khurdayan and Lee Schneider Rika Khurdayan is a lawyer and strategist, with a particular focus on blockchain and DLT.
    [Show full text]
  • Detecting and Quantifying Wash Trading on Decentralized Cryptocurrency Exchanges
    Detecting and Quantifying Wash Trading on Decentralized Cryptocurrency Exchanges Friedhelm Victor Andrea Marie Weintraud Technische Universität Berlin Technische Universität Berlin Berlin, Germany Berlin, Germany [email protected] [email protected] ABSTRACT the umbrella term Decentralized Finance (DeFi) are establishing Cryptoassets such as cryptocurrencies and tokens are increasingly themselves as a key use case for distributed ledger technologies traded on decentralized exchanges. The advantage for users is that (DLTs) in general. The aim is to design financial products, that are the funds are not in custody of a centralized external entity. How- partly based on services from the traditional financial world yet ever, these exchanges are prone to manipulative behavior. In this completely new in other areas. The appeal lies in offering these paper, we illustrate how wash trading activity can be identified financial products in a decentralized way, excluding middlemen as on two of the first popular limit order book-based decentralized far as possible. exchanges on the Ethereum blockchain, IDEX and EtherDelta. We While the field now encompasses a multitude of services suchas identify a lower bound of accounts and trading structures that meet lending protocols, derivatives and insurances, so-called decentral- the legal definitions of wash trading, discovering that they arere- ized exchanges (DEX) were among the early drivers of the ecosys- sponsible for a wash trading volume in equivalent of 159 million tem. They allow for the exchange of virtual assets without having to U.S. Dollars. While self-trades and two-account structures are pre- rely on externally-controlled services such as centralized exchanges, dominant, complex forms also occur.
    [Show full text]
  • Decentralized Exchanges
    DECONSTRUCTING DECENTRALIZED EXCHANGES Lindsay X. Lin* INTRODUCTION Decentralized exchanges are becoming a critical tool for purchasing and selling an increasing percentage of cryptocurrencies. The term “decentralized exchange” generally refers to distributed ledger protocols and applications that enable users to transact cryptocurrencies without the need to trust a centralized entity to be an intermediary for the trade or a custodian for their cryptocurrencies. Decentralized exchanges provide a number of important benefits, including (1) lower counterparty risk (i.e., no need to trust a centralized exchange to secure and manage private keys),1 (2) the potential for lower transaction fees, and (3) a more diverse array of trading pairs that can unlock access to riskier or less liquid cryptocurrencies.2 As demand for these features increases, decentralized exchange technology may witness tremendous growth in usage, development, and adoption within the next couple of years. Additionally, decentralized exchange usage is being fueled by concurrent regulatory and industry trends, including (1) a surge in the quantity of distinct cryptocurrencies that makes comprehensive listing impractical,3 (2) regulatory risks of listing cryptocurrencies on centralized * Lindsay Lin is Legal Counsel at Interstellar and Stellar Development Foundation. This writing is not legal advice and is unaffiliated with Interstellar and Stellar Development Foundation. 1 Centralized exchanges have a history of significant security breaches, with many incidents resulting in tens or hundreds of millions of USD value of cryptocurrency stolen. See Julia Magas, Crypto Exchange Hacks in Review: Proactive Steps and Expert Advice, COINTELEGRAPH (Aug. 31, 2018), https://cointelegraph.com/news/crypto-exchange-hacks-in- review-proactive-steps-and-expert-advice.
    [Show full text]
  • Mobile Decentralized Exchange
    Alttex D X Mobile Decentralized Exchange Elky Bachtiar February 22, 2018 [email protected] ABSTRACT Trading cryptocurrencies on centralized exchanges, where funds are stored on centralized servers, exposes users to hackers and regulatory risks. To date, decentralized exchanges are desktop oriented and difficult to use. While mobile usage has worked its way into daily life, blockchain companies mainly focus to advance blockchain users. However, decentralized exchanges focus only on one blockchain, such as Ethereum or NEO. This paper describes the technical side of the Alttex Decentralized Exchange (AltDEX), a brand new decentralized exchange that focus mainly on mobile users. AltDEX uses the latest technology such as Atomic swaps, the Ethereum blockchain, the open source decentralized platform of 0x Protocol, Dogethereum technology of Truebit, and Non-Interactive Proofs of Proof-of-Work (NIPOPOW), to allow the interchangeability between various blockchain tokens. ¹ Atomic swap is a proposed feature in cryptocurrencies, that allows for the exchange of one cryptocurrency for another cryptocurrency without the need for a trusted third party. ² Ethereum is an open software platform based on blockchain technology that enables developers to build and deploy decentralized applications. ³ 0x protocol is 0x is a protocol using Etheereum smart contracts for anyone in the world to operate a decentralized exchange. 4 Dogethereum will be a first-of-its-kind "bridge" between the Dogecoin and Ethereum blockchains. Once constructed, shibes will be able to send doge back-and-forth to Ethereum without using an exchange. This will allow shibes to trade dogecoin for other Ethereum-based tokens and use doge in smart contracts 5 Non-Interactive Proofs of Proof-of-Work: the ability to save and check the proof of work of an blockchain and put it to another blockchain CHAIN RELAY The first chainrelay, BTCRelay of Ethereum, was developed by Joseph Chow.
    [Show full text]
  • Electronic Cash, Decentralized Exchange, and the Constitution
    Electronic Cash, Decentralized Exchange, and the Constitution Peter Van Valkenburgh March 2019 coincenter.org Peter Van Valkenburgh, Electronic Cash, Decentralized Exchange, and the Constitution, ​ ​ Coin Center Report, Mar. 2019, available at https://coincenter.org/entry/e-cash-dex-constitution Abstract Regulators, law enforcement, and the general public have come to expect that cryptocurrency transactions will leave a public record on a blockchain, and that most cryptocurrency exchanges will take place using centralized businesses that are regulated and surveilled through the Bank Secrecy Act. The emergence of electronic cash and decentralized exchange software challenges these expectations. Transactions need not leave any public record and exchanges can be accomplished peer to peer without using a regulated third party in between. Faced with diminished visibility into cryptocurrency transactions, policymakers may propose new approaches to financial surveillance. Regulating cryptocurrency software developers and individual users of that software under the Bank Secrecy Act would be unconstitutional under the Fourth Amendment because it would be a warrantless search and seizure of information private to cryptocurrency users. Furthermore, any law or regulation attempting to ban, require licensing for, or compel the altered publication (e.g. backdoors) of cryptocurrency software ​ ​ would be unconstitutional under First Amendment protections for speech. Author Peter Van Valkenburgh Coin Center [email protected] About Coin Center Coin Center is a non-profit research and advocacy center focused on the public policy issues facing open blockchain technologies such as Bitcoin. Our mission is to build a better understanding of these technologies and to promote a regulatory climate that preserves the freedom to innovate using blockchain technologies.
    [Show full text]
  • Decentralized Exchanges
    The Next Progression of Derivatives Markets: Distributed Ledger Technologies and Decentralized Exchanges June 20, 2019 Andrew Cross, Kari Larsen, and Mike Selig* *with thanks to Taylor Lindman for his contributions Perkins Coie LLP Blockchain Technology & Digital Currency Industry Group • Perkins Coie has been representing blockchain companies since 2011, beginning with the first wave of digital currency companies and trade associations. • We were the first law firm to launch an industry practice group focused specifically on blockchain. The group was established in May 2013 as a natural outgrowth of our long history representing fintech, Internet, mobile and technology companies. • Today, Perkins Coie has over 40 lawyers with experience advising companies on all aspects of We represent clients, ranging from blockchain and digital currency law. startups to leading financial institutions and Fortune 500 • The Perkins multidisciplinary blockchain practice is companies who are pioneering new blockchain solutions. on the front lines, helping major players in the industry address the complex legal and regulatory issues faced by blockchain and other distributed ledger technologies. Perkins Coie LLP | PerkinsCoie.com 2 Agenda Decentralized Exchange • DLT 101 • Smart Contracts 101 • Digital Assets 101 • Decentralized vs. Centralized Exchanges Examples and Regulatory Treatment • Typical DEXs • Issues with Off-Chain Order Books Additional Topics Perkins Coie LLP | 3PerkinsCoie.com Decentralized Exchange What is it? 4 Perkins Coie LLP | PerkinsCoie.com Distributed Ledger Technology • A distributed ledger consists of a distributed group of connected computers (“nodes”) that programmatically reach agreement through a “consensus mechanism” with respect to the status of, or changes to, certain shared data (often in the form of a digital asset).
    [Show full text]
  • Arxiv:2103.08842V4 [Q-Fin.TR] 21 Jul 2021
    The Adoption of Blockchain-Based Decentralized Exchanges Agostino Capponi,∗ Ruizhe Jia† July 22, 2021 Abstract We investigate the market microstructure of Automated Market Makers (AMMs), the most prominent type of blockchain-based decentralized exchanges. We show that the order execution mechanism yields token value loss for liquidity providers if token exchange rates are volatile. AMMs are adopted only if their token pairs are of high personal use for investors, or the token price movements of the pair are highly correlated. A pricing curve with higher curvature reduces the arbitrage problem but also investors' surplus. Pooling multiple tokens exacerbates the arbitrage problem. We provide statistical support for our main model implications using transaction-level data of AMMs. Keywords: Crypto tokens; FinTech; Decentralized Finance; Market Microstructure. arXiv:2103.08842v4 [q-fin.TR] 21 Jul 2021 ∗Columbia University, Department of Industrial Engineering and Operations Research, Email: [email protected] †Columbia University, Department of Industrial Engineering and Operations Research, Email: [email protected]. 1 1 Introduction Since the emergence of Bitcoin in 2008, practitioners and academics have argued that financial inno- vations such as tokenization of assets and decentralized ledgers, along with the backbone blockchain technology, will disrupt traditional financial services (see, e.g., Campbell (2016), Yermack (2017), Cong and He (2019), Chiu and Koeppl (2019), Cong, Li, and Wang (2020), Gan, Tsoukalas, and Netessine (2021)). However, despite thousands of crypto tokens have been created and the total capitalization of cryptocurrencies has exceeded 1.7 trillions as of early 2021, no blockchain-based financial service providers has yet truly challenged traditional financial intermediaries. Ironically, most transactions of crypto tokens still rely on unregulated centralized intermediaries that expose investors to the risk of thefts and exit scams (see, e.g., Gandal et al.
    [Show full text]
  • Security Token Offerings
    Security token offerings: The next phase of financial market evolution? Since the advent of Bitcoin in 2009, the profile of blockchain – a combination of distributed ledger technology (DLT) with a variety of block-based encryption technologies – has soared. While there has been a great deal of volatility and speculation in certain virtual assets and other blockchain-related financing, including a high profile peak in 2018, there is now wide consensus regarding the value of blockchain and other forms of DLT in finance. While Facebook’s announcement of Libra was probably the highest profile example, the most important examples going forward are likely to come as blockchain plays an increasing role in financial infrastructure such as securities settlement, in monetary and payments systems through central bank digital currencies, and in the context of liquidity and access to financing through tokenization, in particular security token offerings. Going forward, the real value of the underlying technologies of Bitcoin and cryptocurrencies comes in the form of its role in security, in transparency, in permanence, each of which is essential to financial markets efficiency, trust and confidence, as well as safety and soundness. Security Token Offerings (STOs) combine the technology of blockchain with the requirements of regulated securities markets to support liquidity of assets and wider availability of finance. STOs are typically the issuance of digital tokens in a blockchain environment in the form of regulated securities. The blockchain environment enhances securities regulatory objectives of disclosure, fairness and market integrity and supports innovation and efficiency through automation and “smart contracts”. In terms of the token aspect, an STO is essentially the digital representations of ownership of assets (e.g.
    [Show full text]
  • Thanks a Lot for Actively Participating in the Bitcratic AMA Held on 25Th August 2020 at The​ ​Game of Bitcoins Channel​
    Thanks a lot for actively participating in the Bitcratic AMA held on 25th August 2020 at the​ ​Game of Bitcoins Channel​. We really appreciate all your support. This post is a recap of the entire session held with ​Bitcratic We have with us Amrendra Mishra My Name is Amrendra Mishra, I am a Founder of Bitcratic, I have over 17 year experience in IT Project Management/ New Service Development. We have been running business since last 9 years in Software/IT. We moved to crypto in 2018, launched Bitcratic in Nov 2018, currently we are team of 6 based in New Delhi, India Since Crypto is here to decentralized the most inportant thing “Money” we had a clear vision to go for Decentalized Exchange over centralized Exchange. We know develping decentralized exchange is complicated and the progress will be slow as less peoples are using decentralized exchange. but we know sooner or later people will move to decentralized exchanges. Things are moving in a positive direction now. Bitcratic is Ethereum based Decentralized Exchange. Users don’t need to Register/Login to Trade. You can just Meta Mask, MEW or Legder Neno to trade. We recommend to use Meta Mask The most important thing about Bitcratic is. User has full control over their funds. No one have access of users funds expect user himself. User can also withdraw funds through myetherwallet, etherscan or many other ways. Q1. Can you tell us some of the latest achievements made by the Bitcratic project & can you describe in detail the current development efforts, such as market expansion plans, expected applications & new upcoming events? Not much achievement, but if I put the number In last 6 months combined over 32000 Transaction has been done on Bitcratic.(Transaction includes Deposit/Withdraw and Trade) all data are available on Etherscan) We are ranking on 10th position as per Etherscan Dex Tracker https://etherscan.io/stat/dextracker since developing decentralized exchanges is little complicated.
    [Show full text]
  • Blockchain Technology
    REAL WORLD APPLICATIONS OF Blockchain Technology 102 blockchain leaders share their insights into the use of blockchain both now and into the future. A ZAGE SPECIAL REPORT www.zage.io Foreword by Alex Cleanthous BEFORE WE BEGIN WE BEFORE CO-FOUNDER OF ZAGE MARKETING GROUP When the Internet first launched in the early 1990s, nobody could truly have envisaged the impact it would have on society, and the reach it would have globally. Blockchain is now where the Internet was in the early 1990s – some people can see its potential, most people don’t understand it, and the people who do are putting everything into being part of the next evolution of society. When I co-founded Web Profits in 2006, our aim was (and continues to be) to help companies drive growth by leveraging the full power of the Internet. Our timing was right and we were lucky enough to ride the wave that was the Internet. We launched Zage, the blockchain marketing arm of Web Profits, to ride the next wave. We believe that blockchain will have as much of an impact on society as the Internet, and we want to be a part of that journey. We created this report to move the conversation away from the hype that defined the industry throughout 2017, to now focus on how blockchain is currently being used, where it will be heading in the future, and which projects are already making an impact. 2 Rather than telling you what we think, we wanted to get insights from industry leaders and share them with you.
    [Show full text]