Technical Overview. Version: 1.0 Date:

Size: px
Start display at page:

Download "Technical Overview. Version: 1.0 Date:"

Transcription

1 Technical Overview Version: 1.0 Date: Authors Ingemārs Ašmanis Jānis Kiršteins 2018 Notakey Latvia SIA. All Rights Reserved.

2 Abstract ICO Pass is a suite of tools for the gathering, verification and exchange of know-yourcustomer (KYC) information. The target audience are tokensale organizers on the Ethereum blockchain. For each contributor, ICO Pass gathers: full name date of birth mobile phone number nationality and country of residence address of residency photo of ID document photo of person. This information is verified against multiple backing providers (initial version uses Onfido), then it is signed with an ICO Pass key (0x612fadf295ce8bbbcf83ecd5dc2832b5ace583e3), encrypted against the public crowdsale address, and published to IPFS. For tokensale organizers, ICO Pass provides smart contracts with modifiers to verify sender address on time of payment, and a web-application to access and manage the gathered KYC information. No sign-up or up-front work is required. For contributors, ICO Pass publishes a mobile application, which facilitates the gathering of KYC information. Contributors will prove their address ownership via small token ethereum transfers, which will be refunded (minus the network fees). 2

3 Contents 4 Introduction 6 Document Guide 8 Part 1: ICO Pass 20 Part 2: Crowdsale Details 3

4 Introduction While legally KYC checks are increasingly more important, there are many ICO organizers that choose the path of the least resistance (and don t gather KYC information at all). So one of the end goals of ICO Pass is to enable KYC verification as easily as possible for the ICO organizers. Additionally, KYC verification does not guarantee that the ICO organizer will be able to get in touch with the contributor. Should a bank, or a regulatory agency ask for more information regarding a specific contributor, ICO Pass aims to have a way to allow ICO organizers to get in touch with the contributor. Even with contact information and KYC information available, there is the matter of tooling. There are no KYC management systems that can interact with blockchain-based data. Also, different ICOs use different smart contracts to manage their crowdsale. Often crowdsale contracts are audited, and may not be easily changed. Working back from these assumptions, we have decided on a few design goals: payments from non-eligible addresses should be refused at the smart contract level. This will reduce the amount of work required afterwards to refund non-eligible contributors enabling contributor verification should be simple - ideally with no more than just a Solidity function modifier. This should ease auditing constraints. additionally, a proxy contract can be deployed to forward only verified funds. However, since an audited crowdsale would have to audit the whole setup, then a proxy contract does not offer significant advantages over a Solidity function modifier. To satisfy these constraints, the KYC data needs to be queryable from Ethereum. On the blockchain, ICO Pass consists of a suite of contracts, which facilitate: proving ethereum address ownership to a verifier; a claim registry, where subject addresses can be matched to data (signed by a given verifier); Initially ICO organizers who would adopt the ICO Pass, would have to trust the ICO Pass verification key signatures - because there would be no other verifiers. However, in theory, new verifiers could appear and submit information about ethereum addresses. 4

5 Additionally, ICO Pass provides a few non-blockchain services as well: a mobile application for gathering information (including contributor photos); a webservice for interacting with the mobile application, and signing the KYC information gathered with the ICO Pass mobile application. The mobile application will be open-sourced after the ICO Pass crowdsale. At no point will it ask for private keys from the end-user. The webservice, which performs KYC verification and submits signed information to the blockchain, will not be made open-source initially. Since storing data in the blockchain is expensive, most of the data would have to be stored elsewhere. The blockchain-based registry will store only a value, which can be: nationality index as an integer value short text strings for public entity identification URLs to encrypted content of personal information additional Ethereum addresses, e.g. for address linking: An overview: What about non-ethereum funds? Formally, ICO Pass only supports Ethereum addresses. However, cryptocurrencies that use the same elliptic curve for its user keys should be verifiable as well. ICO Pass currently does not support smart contracts for contributor verification on non-ethereum platforms. It has not been tested with Counterparty. 5

6 Document Guide This document will focus on technical aspects of the product. For business analysis see Prospectus. 6

7 Scope This document aims to describe the internal operations of the product. Among other things, this includes: what components the product consists of data flows among the internal components how the KYC checks are carried out how the verified identity is associated with one or more Ethereum addresses how the information is stored and accessed by the ICO organizers This document does not describe non-technical aspects of the product. Non-technical information can be found in the ICO Pass prospectus document which can be found here. Structure The document is divided into multiple parts. The first part describes the workings of the main ICO Pass components - the mobile client, the verification webservice, the KYC providers and the smart contracts used to store and retrieve information about ethereum addresses The second part describes the mechanics of the token sale. Finally, at the end of the document, there are multiple appendices. These include more in-depth explanations, as well as the full source code of the Ethereum smart contracts at the time of publishing this document. 7

8 Part 1: ICO Pass Everything about technical side of ICO Pass - data collection, identity verification and data sharing. 8

9 ICO Pass Public Keys All data, which needs to be signed by ICO Pass, can be validated against the key 0x612fadf295ce8bbbcf83ecd5dc2832b5ace583e3. Smart Contracts There are two type of ethereum programs in the scope of ICO Pass: infrastructure contracts for verifying key holders, publishing signed attributes, attribute lookup, etc. verifier contract - smart contracts and libraries for consuming the ICO Pass information. Infrastructure Contracts The underlying address attribute system is foundational to ICO Pass, but not specific to the scope of ICOs. As such, it is described in a separate document. It is available here: Schemas and Claims ICO Pass uses the following ClaimRegistry claims for ICO contributors: Mandatory Optional For claims, which are used for ICO organizers, please see ICO Organizer Validation. Verifier Contract The verifier contract is meant as an abstract base contract, which includes the function modifier onlyverifiedsenders(address paymentaddress, uint256 nationalityblacklist). The modifier verifies that: 1. the subject address, that is linked to paymentaddress above, has these 2 attributes issued by a trusted verification key (passed in as a constructor parameter the ICO Pass key): 1.1. the report bundle value. The report bundle is a collection of JSON documents, and described together with the verification webservice. This confirms that identification and KYC check has been performed for this subject and that it has required ICO contributor attributes the nationality index value. Described below. 2. the subject does not have a nationality index value that has been blacklisted in parameter nationalityblacklist. 9

10 Attributes signed by unrecognized keys are ignored. Qualified keys are published during the time of verification framework contract deployment and cannot be altered at later point. Optional Modifier (with Agreement Verification) There is another modifier, which includes a third parameter - for ICO contributor agreement signature verification: onlyverifiedsenders(address paymentaddress, uint256 nationalityblacklist, bytes32 hash_with_disclaimer). hash_with_disclaimer is the message, which has to be signed by the subject. The actual signature will be found in the subject s claims in the ClaimRegistry smart contract. The value hash_with_disclaimer already needs to include the prefix used by eth_sign - \x19ethereum Signed Message:\n<message_length>. See ICO Contributor Agreements for more information on how the signature can be associated for the contributor s address. Constructor Parameter address _trustedissueraddr address _claimregistryaddr Description The public key of the verifier, which will have signed off on the KYC information. The address of the ClaimRegistry contract. This contract is described together with other infrastructure contracts. Nationality Verification While typically data is stored off-chain (e.g. the report bundle is a URL to IPFS), nationality (and residency) information is stored on-chain; so that smart contracts can verify it. When ClaimRegistry returns a value, instead of resolving it as a URL (as per the ClaimRegistry documentation), the value can be interpreted as-is. The nationality index is a 1-based index of ISO countries sorted by the ISO 3166 numeric code. E.g. the first countries are Afghanistan (index 1) and Albania (index 2). This is because their respective ISO 3166 codes are 4 and 8 (i.e. the smallest, then the second smallest). 10

11 The last countries are Yemen and Zambia. Sort by this ISO Values Index Numeric code 3-letter code Country 1 4 AFG Afghanistan 2 8 ALB Albania 3 10 ATA Antarctica 4 12 DZA Algeria 5 16 ASM American Samoa 6 20 AND Andorra 7 24 AGO Angola 8 28 ATG Antigua and Barbuda 9 31 AZE Azerbaijan ARG Argentina AUS Australia AUT Austria BHS Bahamas BHR Bahrain BGD Bangladesh There are less than 256 entries in the ISO 3166 list, and the EVM word size is 256 bits. This means that these values can be set and verified with bitmasks. To generate a mask for country with index N: mask = 1 << (N-1) e.g. for China, the index is 44, so the mask is: mask = 1 << (44-1) = Given a country mask (countrymask), and a blacklist mask (blacklistmask), the values are verified with 2 bitwise operations: is_eligible = ( (countrymask XOR blacklistmask) AND countrymask == countrymask ) 11

12 If the same bits are set in both the country mask, and the blacklist mask, the eligibility check will fail. 6th = Andorra Blacklist: American Samoa (5) & Angola (7) While the nationality index is referred to as the nationality, the verification webservice will include residency information in blacklist lookup by consuming the additional residency attribute (if it is available). Agreement Signature Verification The modifier will find all claims for the subject of type Each found claim will be verified to contain the right signature with this procedure: 1. resolve the claim to a bytes32 value (this will be the eth_sign result of the subject s signature operation) 2. extract the v, r and s parameters (see below) 3. perform ecrecover(hash_with_disclaimer, v, r, s) If ecrecover returns true, the modifier stops processing further signature claims. If none of the claims are valid signatures, the modifier fails. Extracting v, r, and s Given the value sigbytes (the byte value of the claim): assembly { r := mload(add(sigbytes, 32)) s := mload(add(sigbytes, 64)) v := and(mload(add(sigbytes, 65)), 255) } 12

13 Mobile Client The mobile client acts as a device for gathering information: it allows taking a photo or video recording of the user it allows taking photos of documents, and immediately giving feedback about the quality it allows verifying the phone number It also offers a way to give easy feedback to the contributor: when the KYC checks are done if more information is required perform ICO address trustworthiness evaluation by indicating that candidate ICO has not been registered Finally, it can automate tasks for the end-user, which improves the user experience. It can perform automated wallet key ownership verification and personal information storage for reuse in subsequent ICOs. First Run When the ICO Pass mobile application is first launched, it will generate an ethereum keypair, and store it in the devices keychain. NOTE: this key is never exposed externally. Then it performs onboarding with the verification webservice. The webservice will send a verification , and an SMS code to the address and phone number supplied by the end user. 13

14 The webservice will send a small amount of ethereum to the internal address. The application will use it to pay for the key ownership proof transaction (see: KeyProof contract in the infrastructure smart contracts documentation). Afterwards, the application will consider the user to be onboarded. Start Ask for Send to verification webservice Ask for confirmation code sent to Ask for phone number Send to verification webservice Ask for confirmation code sent to phone Ask the verification webservice for a unique challenge UUID (and a tiny amount of ethereum to pay for the response transaction) Sign a response with the internal ethereum private key Submit the challenge response to the KeyProof contract This row corresponds to the key ownership proof scenario (see: KeyProof smart contract) User is onboarded 14

15 Submitting Data for ICOs When the end-user wishes to enroll for an ICO, they will have to perform an in-app purchase. The in-app purchase receipt will be sent to the verification webservice, which will validate the receipt. If the receipt is valid, KYC verification will commence. The user will be asked to take a photo of themselves, and of their chosen identity documents. They will also enter their address and date of birth. This information will be re-usable, unless an ICO specifies expiry dates. The verification webservice will use this information to perform KYC verification against multiple sources: is the document valid does the document match the photo of the person is the person in PEP/global sanction lists If the person is in PEP or sanction lists, the identity verification will cease. If the person s document does not match the photo, the verification will cease. If the person s document image is invalid (e.g. invalid machine readable code), can not be scanned, or it is expired, then the verification will cease. Full details about how the KYC checks are carried out, and about all the possible failure cases, can be seen in our GitHub repository. As far as the mobile client is concerned, however, it only gathers data, then sends this data to the verification webservice. For each verification attempt, the webservice can respond (asynchronously) with: ok failed, ineligible (e.g. user is a PEP) failed, please repeat (e.g. user s passport image was too blurry) 15

16 Verification Webservice After the mobile client gathers information, the verification webservice analyzes it and orchestrates the delivery of this information to the recipient (i.e. the ICO organizer). It cross-references the gathered information with multiple backing data providers, and signs it. Then it encrypts this information against the ICO organizer s address, and publishes it to the claim registry. User Mobile ClaimRegistrySC VerificationWS IPFS enter the recipient ICO address read claims signed by ICO Pass display recipient information (e.g. name, green checkmark) enter data (DoB, address, identity documents, photos) an unverified address displays a warning forward all information verify information against backing providers bundle information together and sign result generate bundle encryption key K1 (AES256) encrypt bundle with K1 encrypt K1 against the mobile public key K2 encrypt K2 against the ICO address K3 publish file including (the encrypted bundle, K2 and K3) both parties can now decrypt the data return content hash publish attribute 'reportbundlev1' with the IPFS content URL publish the attribute 'nationalityindex' discard the gathered, unencrypted data status update display results User Mobile ClaimRegistrySC VerificationWS IPFS 16

17 ICO Organizer Validation The same mechanism used to associate KYC information with the contributor address can be leveraged to associate validation information with the organizer (crowdsale) address. The mobile client recognizes specific claims signed by a specific ICO Pass key, and will display this information to the end-user. For details about how claims in general are associated with an ethereum address, see the ClaimRegistry smart contract description in the infrastructure contract documentation. The specific claims, which the mobile client supports and ICO Pass issues, are subject to change (but can always be seen publicly, by examining the ClaimRegistry values for a given address). Initially the claims are: Type Claim name Description IcoOrganizer IcoOrganizer Crowdsale Crowdsale Crowdsale name website_url name website_url agreement_url Name of the organizer Organizer s website Name of the crowdsale Crowdsale-specific website URL of the Contributor Agreement. This is expected to be an HTML document, which will be displayed to the users in-app. The hash of the contents will be signed by the participant, as proof of agreement (see the ICO Contributor Agreements section. 17

18 These attributes are optional. If they are not present (and signed by a recognized ICO Pass key), then the contributor will not be prohibited from sending KYC information to the specified address. ICO Contributor Agreements Optionally, the ICO contributor can sign a message, indicating agreement to the terms of the crowdsale. If the optional claims and are present for a given ICO crowdsale address (and signed by an ICO Pass key), then the following will take place: 1. a hash of the content at the specified address will be hashed: hash = keccak256(content at agreement_url) 2. a modified hash is calculated: hash_with_disclaimer = keccak256( \x19ethereum Signed Message:\n + len(hash) + hash) 3. if hash_with_disclaimer!= required_agreement_hash, then an error is displayed, and the user can not proceed 4. otherwise - if the content hashes match - the agreement is displayed to the end user, and the user is prompted for agreement 5. if the user indicates agreement to the terms, then the hash value is signed: signature = eth_sign(hash). eth_sign takes hash as input, because it will pre-pend the disclaimer itself. The resulting signature value will be stored as the following claim in ClaimRegistry: As such, the verifier contract will be able to ensure only addresses with valid agreement signatures can participate in the crowdsale. Why Two Separate Claims? It is not enough for the ICO organizer to include just the required hash of the agreement, because the participant needs to know what is being signed. It is not enough for the URL to be known, because there is no guarantee that the URL will be resolvable (e.g. the website hosting the agreement becomes unavailable). 18

19 This way with 2 values the end-user can see the agreement contents at the given URL, and the mobile client can hash this content and compare against the pre-specified hash value. If they do not match, the mobile client will assume that the URL was resolved incorrectly, and not allow the end-user to proceed. Changes to agreement are not allowed after registration for the ICO is open as this would introduce several different hash versions. Payment Transaction Processing During Crowdsale (a.k.a. Address Linking) As payment transactions to ICO crowdsale contracts are made from addresses distinct from the ones that have ICO contributor attributes published, infrastructure and verifier contracts include convenience methods for creating, maintaining and discovering address links. Before participation in a crowdsale, contributors are required to link their payment wallet address to his identity address, that is issued during ICO pass application onboarding process. Linking is done by making a payment from candidate payment wallet of ICO contributor to the identity subject address. The amount transferred is not important as the funds will be returned to sender, except gas. This transaction is needed to prove that the same person that has control over identity key on app, has also control over the wallet address, and this is done by signing a generic payment transaction. After payment has been reverted ICO pass application discovers the incoming transaction and offers contributor to link both addresses. Both addresses are stored on blockchain with reference to a corresponding proof transaction. During crowdsale contributors are referenced by their payment wallet addresses and ICO crowdsale contract helper functions automatically takes care of discovering identity subjects, that have ICO contributor attributes issued. In case contributor payment address is not registered, transaction will be reverted. 19

20 ICO pass application allows linking multiple addresses to a single contributor subject address to allow flexible identity reuse in multiple ICOs and also deletion of unused addresses is possible. 20

21 Part 2: Crowdsale Details Technical summary about Token Sale. 21

22 Sale Mechanics Summary: the auction will be a spend-all second-price Dutch auction. The contract will be based on Parity Tehnologies audited crowdsale contract (available from here: The base-contract is modified to use Notakey KYC verification contracts. The goal is to allow the token price be determined by the market. Another goal is specifically to not write a new and unproven crowdsale contract, because it is crucial for the crowdsale contract to be proven and without bugs. The full crowdsale contract is published on GitHub. In this section, the modifications are explained. USDWEI The USDWEI constant is changed to 805 szabo to reflect the Ethereum price as of 1 Jan, 2018 ($1242). Note: the USDWEI constant might be further modified, if the price of Ethereum changes too much before the token sale goes live. The latest changes can be seen at our GitHub repository, in the file SecondPriceAuction.sol calculateendtime The calculateendtime function is modified to reach the auction end-time more rapidly (by a factor of 100). The crowdsale time should range from a bit more than a month (with no contributions) to 2 weeks (reaching the desired contribution size). Here is a chart showing the correlation between contributions and the length of auction: 50 Length of Auction (in Days) 37, , Total Contributions (in eth) 22

23 Audit The crowdsale base contract has been audited. The audit report can be seen here: The changes relevant to ICO Pass - specifically, eligibility verification code - has not been audited yet. These changes should not be able to cause loss of funds to any contributor. ICO Pass changes only affect contributor eligibility modifiers. The ICO Pass verification contracts shall be audited before public release, after the crowdsale. 23

24 For more information contact Janis Kirsteins Chief Executive Officer

Privacy-Enabled NFTs: User-Mintable, Non-Fungible Tokens With Private Off-Chain Data

Privacy-Enabled NFTs: User-Mintable, Non-Fungible Tokens With Private Off-Chain Data Privacy-Enabled NFTs: User-Mintable, Non-Fungible Tokens With Private Off-Chain Data Philip Stehlik Lucas Vogelsang August 8, 2018 1 Abstract Privacy-enabled NFTs (non-fungible tokens) are user-mintable

More information

How to Invest in the Gizer Token Sale. A guide for contributing to the Initial Offering of GZR Tokens

How to Invest in the Gizer Token Sale. A guide for contributing to the Initial Offering of GZR Tokens How to Invest in the Gizer Token Sale A guide for contributing to the Initial Offering of GZR Tokens Last Updated: November 26 th, 2017 1 Table of Contents How can I participate in the GZR Token Sale?...

More information

Technical Specifications for Platform Development

Technical Specifications for Platform Development Technical Specifications for Platform Development Contents 1. General Information about the Product... 2 2. Software Requirements... 3 2.1. Functional Requirements... 3 2.2. Server Requirements... 4 3.

More information

Once the required number of encrypted random numbers have been commited,

Once the required number of encrypted random numbers have been commited, What is Randao? The Random Number Generator (RNG) is a core part of any lottery system. Creating a secure and unpredictable RNG on the Ethereum blockchain was one of the lagest technical challenges for

More information

QIIBEE Security Audit

QIIBEE Security Audit PUBLIC QIIBEE Security Audit of QBX TOKEN Smart Contracts June 28, 2018 Produced for by Table Of Content Foreword...................................................... 1 Executive Summary................................................

More information

DISTRIBUTION PLAN. Operation of EMMARES smart contract. EMA Token Allocation

DISTRIBUTION PLAN. Operation of EMMARES smart contract. EMA Token Allocation DISTRIBUTION PLAN Operation of EMMARES smart contract When executed well and delivered with relevance to engaged customers, email marketing provides the highest ROI for modern marketers. Audience of nearly

More information

ICO Review: Raiden Network (RDN)

ICO Review: Raiden Network (RDN) ICO Review: Raiden Network (RDN) Scalable Transfers for Ethereum October 10, 2017 What is Raiden Network? Raiden is an payment network built on top of the Ethereum network. PAYMENT CHANNEL NETWORK It aims

More information

Register. Account Registration & Deposit / Withdrawal Guide

Register. Account Registration & Deposit / Withdrawal Guide Register Account Registration & Deposit / Withdrawal Guide Registration 1 Click here to register your account 2 Enter your details here 3 Check these to agree and proceed 4 Click Register to continue Page

More information

Blockchain for Enterprise: A Security & Privacy Perspective through Hyperledger/fabric

Blockchain for Enterprise: A Security & Privacy Perspective through Hyperledger/fabric Blockchain for Enterprise: A Security & Privacy Perspective through Hyperledger/fabric Elli Androulaki Staff member, IBM Research, Zurich Workshop on cryptocurrencies Athens, 06.03.2016 Blockchain systems

More information

TABLE OF CONTENTS 1.0 TOKEN SALE SUMMARY INTRODUCTION HOW TO BUY LION HOW TO BUY LION WITH METAMASK

TABLE OF CONTENTS 1.0 TOKEN SALE SUMMARY INTRODUCTION HOW TO BUY LION HOW TO BUY LION WITH METAMASK TABLE OF CONTENTS 1.0 TOKEN SALE SUMMARY... 2 2.0 INTRODUCTION... 3 3.0 HOW TO BUY LION... 3 3.1 HOW TO BUY LION WITH METAMASK... 3 3.2 HOW TO BUY LION WITH MYETHERWALLET... 5 4.0 HOW TO CHECK YOUR LION

More information

Gnosis Safe Documentation. Gnosis

Gnosis Safe Documentation. Gnosis Gnosis Aug 14, 2018 Content 1 Learn more about Gnosis Safe 3 1.1 Smart Contract Overview........................................ 3 1.2 Services Overview............................................ 10

More information

For further information about the GRID token sale, please visit gridplus.io/token-sale.

For further information about the GRID token sale, please visit  gridplus.io/token-sale. 1 1 Introduction Thank you for your interest in purchasing GRID tokens. The following information has been organized to help you complete your purchase using MyEtherWallet, Mist, or MetaMask. For further

More information

Swapy Network - Token Sale Contribution Guide

Swapy Network - Token Sale Contribution Guide Swapy Network - Token Sale Contribution Guide 23rd February, 2018 Please, read this document entirely prior to the token sale date or at least prior to your contribution. Please, do not get intimidated

More information

ONE ID Identity and Access Management System

ONE ID Identity and Access Management System ONE ID Identity and Access Management System Local Registration Authority User Guide Document Identifier: 2274 Version: 1.8 Page 1 Copyright Notice Copyright 2011, ehealth Ontario All rights reserved No

More information

TWEX Platform User Guide

TWEX Platform User Guide TWEX Platform User Guide TWEX This user guide has been prepared with the intension to serve the purpose of using the same by the investors of the system. T a g W o r l d E x c h a n g e L i m i t e d 2

More information

BUYING HEARDBEATS VIA KRAKEN

BUYING HEARDBEATS VIA KRAKEN BUYING HEARDBEATS VIA KRAKEN Step by step guide to creating your Kraken account, getting verified, adding & withdrawing funds and buying & selling cryptocurrency. STEP 1 Navigate to the Kraken website

More information

IP2PGO APP USER GUIDE Version 2

IP2PGO APP USER GUIDE Version 2 IP2PGO APP USER GUIDE Version 2 9 November 2018 Sections A. Registration B. Downloading the App C. Getting started on the App D. Creating your Wallet E. Making a Deposit F. Creating a Sell Offer G. When

More information

How to Buy TRVR Tokens

How to Buy TRVR Tokens How to Buy TRVR Tokens To participate in the distribution of TRVR tokens, you must send Ethers (ETH) to the address of the Token Sale smart contract. This process requires a MyEtherWallet and MetaMask

More information

Table of contents. Technical Features. Our approach. Technical Overview. Stage 1 (Using Ethereum blockchain) Participants. Data Owner.

Table of contents. Technical Features. Our approach. Technical Overview. Stage 1 (Using Ethereum blockchain) Participants. Data Owner. Table of contents Technical Features Our approach Technical Overview Stage 1 (Using Ethereum blockchain) Participants Data Owner Data Verifier Marketplace Data Buyer Creditor Data Platform Architecture

More information

kasko2go Token Contract Audit

kasko2go Token Contract Audit Version 1.0 / 17.04.2018 kasko2go Token Contract Audit inacta AG Eugen Lechner Cédric Walter Index 1. Introduction 2 2. Scope 2 3. Executive Summary

More information

NEW TOKEN SWAP INSTRUCTIONS For action after July 23, 2018.

NEW TOKEN SWAP INSTRUCTIONS For action after July 23, 2018. 1 NEW TOKEN SWAP INSTRUCTIONS For action after July 23, 2018. www.sophiatx.com 2 Table of contents 1. Introduction 2. Prerequesites 3. Generate a new SPHTX keypair (SophiaTX new Wallet) 4. Register the

More information

GENESIS VISION NETWORK

GENESIS VISION NETWORK GENESIS VISION NETWORK Contents 1. Description of the problem 7 11. Trust management 15 2. The problem with smart contracts 8 12. GVN Token 16 3. Centralised exchanges against decentralised 8 13. Deposit

More information

HowtobuyHUMToken. Table of Contents. Beforeproceedingwiththepurchase Pre-saleguideusingMyEtherWallet Pre-saleguideusingMetamask

HowtobuyHUMToken. Table of Contents. Beforeproceedingwiththepurchase Pre-saleguideusingMyEtherWallet Pre-saleguideusingMetamask HowtobuyHUMToken Table of Contents Beforeproceedingwiththepurchase Pre-saleguideusingMyEtherWallet Pre-saleguideusingMetamask Before proceeding with the purchase If you have been registered on our whitelist,

More information

DIGITAL AND MOBILE BANKING USER GUIDE

DIGITAL AND MOBILE BANKING USER GUIDE DIGITAL AND MOBILE BANKING USER GUIDE 2018 First Tennessee Bank National Association operating as First Tennessee Bank and Capital Bank. Member FDIC. NEW 04/18 USER GUIDE GETTING STARTED 3 Logging in with

More information

Lina Token Generation Event

Lina Token Generation Event 15, Jan, 2018 Greg Kushnir Lina Token Generation Event 1. How to join Lina Token Generation Event 2. How tokens are distributed to contributors I. How to join Lina Token Generation Event on Lina.network

More information

dataedge CA Certificate Issuance Policy

dataedge CA Certificate Issuance Policy Classification of Digital Certificate Digital Certificates are classified upon the purpose for which each class is used and the verification methods underlying the issuance of the certificate. Classification

More information

National enote Registry Requirements Document. Version 1.0

National enote Registry Requirements Document. Version 1.0 National enote Registry Requirements Document Version 1.0 Mar 7, 2003 1. Introduction a. This paper defines the concepts of operation, key assumptions and terms, and high level business requirements for

More information

INVESTOR PRIMER FOR PUBLIC CIRCULATION 2018

INVESTOR PRIMER FOR PUBLIC CIRCULATION 2018 INVESTOR PRIMER FOR PUBLIC CIRCULATION 2018 Overview PROTOCOL #1 TOKENIZATION PROTOCOL An end-to-end protocol for tokenization of assets across both the Stellar and Ethereum networks PROTOCOL #2 CROSS-CHAIN

More information

Security Audit of FuzeX Smart Contract This report is public. ChainSecurity Ltd. January 11, 2018

Security Audit of FuzeX Smart Contract This report is public. ChainSecurity Ltd. January 11, 2018 Security Audit of FuzeX Smart Contract This report is public. ChainSecurity Ltd. January 11, 2018 1 Contents 1 System Overview 3 1.1 TGE Overview................................. 4 1.2 Token Rewards.................................

More information

SOLUTION ARCHITECTURE AND TECHNICAL OVERVIEW. Decentralized platform for coordination and administration of healthcare and benefits

SOLUTION ARCHITECTURE AND TECHNICAL OVERVIEW. Decentralized platform for coordination and administration of healthcare and benefits SOLUTION ARCHITECTURE AND TECHNICAL OVERVIEW Decentralized platform for coordination and administration of healthcare and benefits ENABLING TECHNOLOGIES Blockchain Distributed ledgers Smart Contracts Relationship

More information

SECURITY AUDIT REPORT

SECURITY AUDIT REPORT PUBLIC REPORT SECURITY AUDIT REPORT of Smart Contracts December 27, 2017 Produced by for Table of Contents Foreword... 1 Introduction... 2 TGE overview... 2 Token distribution... 3 Extra features... 3

More information

Mile Privacy Policy. Ticket payment platform with Blockchain. Airline mileage system utilizing Ethereum platform. Mileico.com

Mile Privacy Policy. Ticket payment platform with Blockchain. Airline mileage system utilizing Ethereum platform. Mileico.com Mile Privacy Policy Ticket payment platform with Blockchain Version 1.1 Feb 2018 [ Mile ] www.mileico.com Airline mileage system utilizing Ethereum platform Chapter 1 General Provisions Article_1 (Basic

More information

PLEXUS PAY PORTAL YOUR HOW-TO GUIDE

PLEXUS PAY PORTAL YOUR HOW-TO GUIDE PLEXUS PAY PORTAL YOUR HOW-TO GUIDE - 1 - Table of Contents Activate Account Activating Your Pay Portal Account 3 Navigating your Plexus Pay Portal 8 Managing your funds 17 Activating your Prepaid Card

More information

Apple Inc. Certification Authority Certification Practice Statement

Apple Inc. Certification Authority Certification Practice Statement Apple Inc. Certification Authority Certification Practice Statement Apple Application Integration Sub-CA Apple Application Integration 2 Sub-CA Apple Application Integration - G3 Sub-CA Version 6.2 Effective

More information

Technical White Paper. Cube Engine Version 1.0

Technical White Paper. Cube Engine Version 1.0 Technical White Paper Cube Engine Version 1.0 Last Updated: Feb 06. 2018 1 Contents 1. Summary 1) Introduction 2) Overview 2. Features of Cube Chain 1) Cubing 2) Indexing Block 3) Statistics Block 4) Escrow

More information

/ 1. Online Banking User Guide SouthStateBank.com / (800)

/ 1. Online Banking User Guide SouthStateBank.com / (800) / 1 Online Banking User Guide SouthStateBank.com / (800) 277-2175 01242018 Welcome Thank you for using South State s Online Banking. Whether you are a first time user or an existing user, this guide will

More information

OpenbankIT: a banking platform for e- money management based on blockchain technology

OpenbankIT: a banking platform for e- money management based on blockchain technology OpenbankIT: a banking platform for e- money management based on blockchain technology Dr. Pavel Kravchenko, Sergiy Vasilchuk, Bohdan Skriabin pavel@distributedlab.com, vsv@atticlab.net, bohdan@distributedlab.com

More information

Guide to a Successful Wanchain Token Contribution

Guide to a Successful Wanchain Token Contribution Guide to a Successful Wanchain Token Contribution 1. Check if your address is whitelisted Make sure you use the wallet address you provided during the whitelist process. The wallet must be one where you

More information

Short review of the Coinmama.com. Registration on the Coinmama

Short review of the Coinmama.com. Registration on the Coinmama Short review of the Coinmama.com Coinmama is not an exchange in its' usual sense. Here you can only buy currency, so its' more like a currency exchanger. The platform doesn t have the built-in wallet and

More information

Technical White Paper of. MOAC Mother of All Chains. June 8 th, 2017

Technical White Paper of. MOAC Mother of All Chains. June 8 th, 2017 Technical White Paper of MOAC Mother of All Chains June 8 th, 2017 [Abstract] MOAC is to design a scalable and resilient Blockchain that supports transactions, data access, control flow in a layered structure.

More information

TOKENSALE PARTICIPATION GUIDE

TOKENSALE PARTICIPATION GUIDE NEXT GENERATION INTERNET An open source platform for creation of 3D and VR compatible web-spaces (websites) and objects, powered by Blockchain. TOKENSALE PARTICIPATION GUIDE TABLE OF CONTENTS Contribute

More information

10 minutes, 10 slides, goals, tech details and why it matters. Decentralized ID & Verifiable Claims

10 minutes, 10 slides, goals, tech details and why it matters. Decentralized ID & Verifiable Claims 10 minutes, 10 slides, goals, tech details and why it matters Decentralized ID & Verifiable Claims Terminology & Current Model Claim or Assertion a claim or way of communicating what a person or thing

More information

An efficient implementation of Monero subaddresses. 1 Introduction. Sarang Noether and Brandon Goodell Monero Research Lab October 3, 2017

An efficient implementation of Monero subaddresses. 1 Introduction. Sarang Noether and Brandon Goodell Monero Research Lab October 3, 2017 RESEARCH BULLETIN MRL-0006 An efficient implementation of Monero subaddresses Sarang Noether and Brandon Goodell Monero Research Lab October 3, 2017 Abstract Users of the Monero cryptocurrency who wish

More information

Executive Summary. (The Abridged Version of The White Paper) BLOCKCHAIN OF THINGS, INC. A Delaware Corporation

Executive Summary. (The Abridged Version of The White Paper) BLOCKCHAIN OF THINGS, INC. A Delaware Corporation 2017 Executive Summary (The Abridged Version of The White Paper) BLOCKCHAIN OF THINGS, INC. A Delaware Corporation www.blockchainofthings.com Abstract The Internet of Things (IoT) is not secure and we

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Wallets User Manual Release 18.1.0.0.0 Part No. E92727-01 January 2018 Wallets User Manual January 2018 Oracle Financial Services Software Limited Oracle Park Off Western

More information

Vladimir Groshev. COO, Project Coordinator.

Vladimir Groshev. COO, Project Coordinator. Vladimir Groshev COO, Project Coordinator If absolute anonymity and complete security is what you are looking for, Then SISHUB is what you need! 1. Anonymous STEEL Messenger 2. Built-in cryptocurrency

More information

ECA Trusted Agent Handbook

ECA Trusted Agent Handbook Revision 8.0 September 4, 2015 Introduction This Trusted Agent Handbook provides instructions for individuals authorized to perform personal presence identity verification of subscribers enrolling for

More information

Managing Certificates

Managing Certificates CHAPTER 12 The Cisco Identity Services Engine (Cisco ISE) relies on public key infrastructure (PKI) to provide secure communication for the following: Client and server authentication for Transport Layer

More information

Online Banking Wire Transfer Enrollment

Online Banking Wire Transfer Enrollment Online Banking Wire Transfer Enrollment Revised 9/2016 Page 1 Overview Wire Transfers (also referred to as Wire Transfer Payments) are a trusted instrument for transferring funds quickly and conveniently

More information

Token Sale Privacy Policy

Token Sale Privacy Policy Token Sale Privacy Policy PRIVACY POLICY LAST UPDATED ON: [11 SEP 2018] A. OVERVIEW You must read the entirety of this Privacy Policy carefully before making any decision to purchase Tokens. You must also

More information

PERSONAL ACCOUNT-HOLDER

PERSONAL ACCOUNT-HOLDER User Guide PERSONAL ACCOUNT-HOLDER How To Register & Verify Your Free Paxum Personal Account How To Register Your Free Paxum Personal Account Paxum accepts new accounts from individuals and businesses

More information

Hyperledger Quilt and Interledger Protocol. Nathan Aw - Technical Ambassador Edmund To - Organizer of Hyperledger Meetup Hong Kong

Hyperledger Quilt and Interledger Protocol. Nathan Aw - Technical Ambassador Edmund To - Organizer of Hyperledger Meetup Hong Kong Hyperledger Quilt and Interledger Protocol Nathan Aw - Technical Ambassador Edmund To - Organizer of Hyperledger Meetup Hong Kong Housekeeping Road Map of 2018 - More meet ups! Thank you to our sponsor

More information

The power of Blockchain: Smart Contracts. Foteini Baldimtsi

The power of Blockchain: Smart Contracts. Foteini Baldimtsi The power of Blockchain: Smart Contracts Foteini Baldimtsi The Blockchain at the heart of a cryptocurrency Alice sends 2 John sends 1 Dave sends 5 to Bob to Eve to Alice Bob sends 1 Eve sends 4 to Dave

More information

These terms and conditions are applicable to all Web Development projects that are undertaken by Maturski.Net.

These terms and conditions are applicable to all Web Development projects that are undertaken by Maturski.Net. Website Development Terms and Conditions These terms and conditions are applicable to all Web Development projects that are undertaken by Maturski.Net. 1.Acceptance. A copy of these terms and conditions

More information

cchannel Generalized State Channel Specification

cchannel Generalized State Channel Specification cchannel Generalized State Channel Specification Celer Network Core Team May 27, 2018 cchannel of the Celer Network is a generalized state channel and sidechain suite that provides a framework to support

More information

Token Sale. Participation guide

Token Sale. Participation guide Token Sale Participation guide 2 As the DataBroker DAO token sale is closing in, we want to inform our future participants on how to properly take part in our presale on 19th of March. At first glance,

More information

Starflow Token Sale Privacy Policy

Starflow Token Sale Privacy Policy Starflow Token Sale Privacy Policy Last Updated: 23 March 2018 Please read this Privacy Policy carefully. By registering your interest to participate in the sale of STAR tokens (the Token Sale ) through

More information

ETHERNITY DECENTRALIZED CLOUD COMPUTING

ETHERNITY DECENTRALIZED CLOUD COMPUTING ETHERNITY DECENTRALIZED CLOUD COMPUTING Whitepaper 4 August 2013 v1.3 HODL UG crowdsale@ethernity.cloud DISCLAIMER: The ETHERNITY Tokens are a crypto asset that is currently being developed by the ETHERNITY

More information

How to buy LIVE Token with Ethereum and Bitcoin step by step

How to buy LIVE Token with Ethereum and Bitcoin step by step How to buy LIVE Token with Ethereum and Bitcoin step by step Ethereum Step 1. Create new wallet. Go to https://www.myetherwallet.com/, think of a strong password and enter it here: Click the button Create

More information

Whitepaper The blockchain platform for building decentralized marketplaces

Whitepaper The blockchain platform for building decentralized marketplaces Whitepaper The blockchain platform for building decentralized marketplaces Matthew Liu Joshua Fraser Founders of originprotocol.com Certain statements in this document constitute forward-looking statements.

More information

Three-Dimensional Scalable Blockchain. Tokenomics draft v. 0.3 (En)

Three-Dimensional Scalable Blockchain. Tokenomics draft v. 0.3 (En) Three-Dimensional Scalable Blockchain Tokenomics draft v. 0.3 (En) info@thepower.io Introduction to tokenomiсs 1 Token "Smart Key" 1 Token purpose and functions 1 Token key features 1 Token distribution

More information

Privacy based Public Key Infrastructure (PKI) using Smart Contract in Blockchain Technology

Privacy based Public Key Infrastructure (PKI) using Smart Contract in Blockchain Technology 2 nd Advanced Workshop on Blockchain, IIT Bombay Privacy based Public Key Infrastructure (PKI) using Smart Contract in Blockchain Technology Sivakumar.P M.Tech (CSE), Sem-III, NIT Trichy Guide:- Dr Kunwar

More information

Entrust Cloud Enterprise. Enrollment Guide

Entrust Cloud Enterprise. Enrollment Guide Entrust Cloud Enterprise Enrollment Guide Entrust Cloud Enterprise Enrollment Guide Document issue: 1.0 Copyright 2016 Entrust. All rights reserved. Entrust is a trademark or a registered trademark of

More information

HOW TO PARTICIPATE IN VESTARIN PRE-ICO & ICO with ETHERIUM

HOW TO PARTICIPATE IN VESTARIN PRE-ICO & ICO with ETHERIUM HOW TO PARTICIPATE IN VESTARIN PRE-ICO & ICO with ETHERIUM Token sale address will be published on the official www.vestarin.io website on the day of Pre-ICO and ICO. Only Ether (ETH) is accepted. Use

More information

BUYING ELECTRONEUM VIA KRAKEN

BUYING ELECTRONEUM VIA KRAKEN BUYING ELECTRONEUM VIA KRAKEN Step by step guide to creating your Kraken account, getting verified, adding & withdrawing funds and buying & selling cryptocurrency. STEP 1 CREATING YOUR ACCOUNT Navigate

More information

Blockchain! What consultants should know about it. Daniel

Blockchain! What consultants should know about it. Daniel Blockchain! What consultants should know about it. Daniel Karzel @ Workshop Overview Quick overview of what is planned for the workshop. What you get out of this workshop Workshop goals Understand what

More information

/ 1. Online Banking User Guide SouthStateBank.com / (800)

/ 1. Online Banking User Guide SouthStateBank.com / (800) / 1 Online Banking User Guide SouthStateBank.com / (800) 277-2175 06132017 Welcome Thank you for using South State s Online Banking. Whether you are a first time user or an existing user, this guide will

More information

FLIP Token (FLP) How to Participate in the FLIP Token (FLP) Sale Event. 1 Disclaimer 2. 2 What You Will Need 2

FLIP Token (FLP) How to Participate in the FLIP Token (FLP) Sale Event. 1 Disclaimer 2. 2 What You Will Need 2 FLIP Token (FLP) How to Participate in the FLIP Token (FLP) Sale Event 1 Disclaimer 2 2 What You Will Need 2 3 Create a New MEW Account 2 Step 1: Go to https://www.myetherwallet.com 3 Step 2: Go to the

More information

ROJECT ANAGEMENT PROGRAM AND COURSE GUIDE

ROJECT ANAGEMENT PROGRAM AND COURSE GUIDE ROJECT ANAGEMENT PROGRAM AND COURSE GUIDE PROJECT MANAGEMENT CERTIFICATE PROGRAM Further your career and gain an understanding of what it takes to lead a project to successful completion functional skills,

More information

TABLE OF CONTENTS 1.0 TOKEN SALE SUMMARY INTRODUCTION HOW TO BUY LION HOW TO BUY LION WITH METAMASK

TABLE OF CONTENTS 1.0 TOKEN SALE SUMMARY INTRODUCTION HOW TO BUY LION HOW TO BUY LION WITH METAMASK TABLE OF CONTENTS 1.0 TOKEN SALE SUMMARY... 2 2.0 INTRODUCTION... 3 3.0 HOW TO BUY LION... 3 3.1 HOW TO BUY LION WITH METAMASK... 3 3.2 HOW TO BUY LION WITH MYETHERWALLET... 5 4.0 HOW TO CHECK YOUR LION

More information

Enhanced Immutability of Permissioned Blockchain Networks by Tethering Provenance with a Public Blockchain Network

Enhanced Immutability of Permissioned Blockchain Networks by Tethering Provenance with a Public Blockchain Network Enhanced Immutability of Permissioned Blockchain Networks by Tethering Provenance with a Public Blockchain Network Abstract Azeem Ahmed (azeem.ahmed@consensys.net) Jim Zhang (jim.zhang@consensys.net) Permissioned

More information

Madrid efiling User Guide

Madrid efiling User Guide Madrid efiling User Guide Contents 1. Introduction... 3 2. Accessing Madrid efiling... 4 3. Madrid efiling for Applicants... 6 3.1 Applicant Settings... 6 3.2 My request list... 7 3.3 Filing an international

More information

Knowledge Platform TOKEN SALE. GUIDELINE (MetaMask & MyEtherWallet)

Knowledge Platform TOKEN SALE. GUIDELINE (MetaMask & MyEtherWallet) Knowledge Platform TOKEN SALE GUIDELINE (MetaMask & MyEtherWallet) Table of Contents Token Sale Summary and Introduction 2 Token Sale Contribution Prerequisites 4 How to Purchase GIL Using MetaMask 8 How

More information

Online Filing Guide for Charities and Professional Fundraisers

Online Filing Guide for Charities and Professional Fundraisers South Carolina Secretary of State Online Filing Guide for Charities and Professional Fundraisers April 2010 1205 Pendleton Street, Suite 525 Columbia, South Carolina 29201 www.sos.sc.gov Charitable Organizations

More information

Online Services USER GUIDE. First Time Log In

Online Services USER GUIDE. First Time Log In Online Services USER GUIDE Welcome to online banking! Whether you re online or using a mobile device, access your accounts whenever and wherever it s convenient for you. First Time Log In Log In: BankMidwest.com

More information

Previous Name: D3. Fourth Estate. A secure, decentralized news data storing and sharing solution for journalists

Previous Name: D3. Fourth Estate. A secure, decentralized news data storing and sharing solution for journalists Previous Name: D3 Fourth Estate A secure, decentralized news data storing and sharing solution for journalists Aaron Chong Remini Yip International Student Blockchain Competition s Presentation 1 Problem

More information

Vertex Certified Achieve the highest standard to maximize your value Program Guide Vertex Indirect Tax O Series North America - Sales Tax Version 7.

Vertex Certified Achieve the highest standard to maximize your value Program Guide Vertex Indirect Tax O Series North America - Sales Tax Version 7. Vertex Certified Achieve the highest standard to maximize your value Program Guide Vertex Indirect Tax O Series North America - Sales Tax Version 7.x Copyright and legal notices Copyright 2016 Vertex Global

More information

Mailbox Rental Terms and Conditions

Mailbox Rental Terms and Conditions Mailbox Rental Terms and Conditions (valid from 26th September 2018) Subject to the customer ("the Customer") observing the Terms and Conditions set out below, Mail Boxes Etc. ("the Company") agrees to

More information

Frequently Asked Questions (FAQs) - Customers

Frequently Asked Questions (FAQs) - Customers Frequently Asked Questions (FAQs) - Customers What is Upay? Upay is Bangladesh s 1 st cryptographically secured QR (Quick Response) Code based digital payment system of UCB which can be used in payments

More information

Testing and Certification Regulations For an SA8000 Applicant Status Certification

Testing and Certification Regulations For an SA8000 Applicant Status Certification TSSA_CCU_43 a 1 of 5 Testing and Regulations 1. General Terms and Conditions 1.1. These Testing and Regulations apply to auditing and certification by TÜV SÜD South Asia Pvt. Ltd. (hereinafter referred

More information

Daman isupplier Portal User Guide. Procurement

Daman isupplier Portal User Guide. Procurement Procurement Table of Content 1. Introduction... 4 Benefits associated with using isupplier include:... 4 2. System Requirements... 4 2.1 Recommended Operating System:... 4 2.2 Browser Requirements:...

More information

CENTRAL INTAKE. AES Central Intake User Guide. AES University Manual. Adaptive Enterprise Solutions

CENTRAL INTAKE. AES Central Intake User Guide. AES University Manual. Adaptive Enterprise Solutions CENTRAL INTAKE AES Central Intake User Guide AES University Manual Adaptive prise Solutions 8401 Colesville Road Suite 450 Silver Spring, MD 20910 800.237.9785 Toll Free 301.589.3434 Voice 301.589.9254

More information

Digi-Sign Certification Services Limited Certification Practice Statement (OID: )

Digi-Sign Certification Services Limited Certification Practice Statement (OID: ) Digi-Sign Certification Services Limited Certification Practice Statement (OID: 1.3.6.1.4.1.8420.1.3.6) In support of Digi-Sign CA as a Recognized Certification Authority December 2015 Copyright and Patent

More information

Conjure Network LLC Privacy Policy

Conjure Network LLC Privacy Policy Conjure Network LLC Privacy Policy Effective September 28, 2018 Conjure Network LLC ( Conjure, us, we, or our ) operates http://www.conjure.network (the Site or Website ). This Privacy Policy (the Policy

More information

TOKEN PAPER.

TOKEN PAPER. TOKEN PAPER www.velix.id Table of Contents PAGE 2 Introduction: Identity Token Model... 3 VXD: A Utility Token... Tokenomics... Token Transactions... Business-to-Business (B2B)... Business-to-Customer

More information

VERSION: 1

VERSION: 1 HELLO@WEB3.FOUNDATION 20-09-2017 ERSION: 1 Introducing Table of Contents 3 The Existing Blockchain Landscape 5 The Polkadot Mission: Connect Blockchains 6 Interoperability 7 Scalability 8 Shared 9 The

More information

STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM

STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM 1. Candidates can start registering through the Register for an ITB Certification link on www.pearsonvue.com/itb or directly by clicking on Enrollment link of

More information

Blockchain-enabled peer-to-peer marketplaces

Blockchain-enabled peer-to-peer marketplaces Blockchain-enabled peer-to-peer marketplaces Creating the infrastructure and UX to enable mainstream commercial transactions on Ethereum Matthew Liu Cofounder Company Overview 2 Origin will enable decentralized

More information

DirectTrust Governmental Trust Anchor Bundle Standard Operating Procedure

DirectTrust Governmental Trust Anchor Bundle Standard Operating Procedure DirectTrust Governmental Trust Anchor Bundle Standard Operating Procedure Change Control Date Version Description of changes 15-December- 2016 1-December- 2016 17-March- 2016 4-February- 2016 3-February-

More information

Current Status of WG Activities

Current Status of WG Activities IGO/INGO PDP WG Current Status of WG Activities WG published its Initial Report on 14 June includes policy recommendation options under consideration by the WG for the protection of IGO, RCRC, IOC and

More information

DRAFT REVISIONS BR DOMAIN VALIDATION

DRAFT REVISIONS BR DOMAIN VALIDATION DRAFT REVISIONS BR 3.2.2.4 DOMAIN VALIDATION (Feb. 15, 2016) Summary of changes The primary purpose of this change is to replace Domain Validation item 7 "Using any other method of confirmation which has

More information

What is NPP, Osko and PayID?

What is NPP, Osko and PayID? What is NPP, Osko and PayID? The New Payment Platform (NPP) is a new way of making payments that is: Fast You can send funds to anyone in real-time. Easy You can send funds to a PayID (such as an email

More information

Nuclear Fuel Complex Recruitment Application User Manual

Nuclear Fuel Complex Recruitment Application User Manual Nuclear Fuel Complex Recruitment Application User Manual The application is best viewed in Google Chrome Version 66.0.3359.139 Browse the NFC website, following screen will be displayed. For New Applicant,

More information

PascalCoin Exchange Integration Guide. Compatible with version 4 of PascalCoin

PascalCoin Exchange Integration Guide. Compatible with version 4 of PascalCoin Exchange Integration Guide Compatible with version 4 of PascalCoin Introduction This document will explain how to integrate PascalCoin V4 into your exchange with the help of the inbuilt JSON RPC API. In

More information

Guide Installation and User Guide - Mac

Guide Installation and User Guide - Mac Guide Installation and User Guide - Mac With Fujitsu mpollux DigiSign Client, you can use your smart card for secure access to electronic services or organization networks, as well as to digitally sign

More information

RETIREMENT & BENEFIT PLAN SERVICES. Employee Notifications Guide

RETIREMENT & BENEFIT PLAN SERVICES. Employee Notifications Guide RETIREMENT & BENEFIT PLAN SERVICES Employee Notifications Guide Our goal is to provide meaningful communications that help participants easily manage their account. This reference guide provides the system-generated

More information

DTX Token. Starter guide

DTX Token. Starter guide DTX Token Starter guide 2 Choosing for the DTX token to buy and sell sensor data enables you to perform real microtransactions on DataBroker DAO. Every beginning is difficult, but this step-by-step introduction

More information

CruiseSmarter PRIVACY POLICY. I. Acceptance of Terms

CruiseSmarter PRIVACY POLICY. I. Acceptance of Terms I. Acceptance of Terms This Privacy Policy describes CRUISE SMARTER policies and procedures on the collection, use and disclosure of your information. CRUISE SMARTER LLC (hereinafter referred to as "we",

More information

CONTENTS. TESTING INSTRUCTIONS Appendix 1 to the Stakeholder testing plan. Project to establish the National Incomes Register 1(13)

CONTENTS. TESTING INSTRUCTIONS Appendix 1 to the Stakeholder testing plan. Project to establish the National Incomes Register 1(13) 1(13) CONTENTS 1 Start of testing... 4 2 Testing agreement... 4 3 Testing addresses... 5 4 Instructions for generating a test certificate in the certificate service... 5 4.1 Requirements for generating

More information

CHESS Release 10.0 Business and Technical Specification

CHESS Release 10.0 Business and Technical Specification CHESS Release 10.0 Business and Technical Specification ASX mfund Enhancements CHESS 10 Version: 1.6 Publication Date: 13 July 2018 Property of: ASX Operations Pty Limited Document History Version No.

More information