-
Notifications
You must be signed in to change notification settings - Fork 17
DiveLane presentation and demo screencast. #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
FesenkoG
wants to merge
4
commits into
ethberlin-hackathon:master
Choose a base branch
from
matter-labs-archive:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,84 @@ | ||
| # Talks-presentations | ||
| Catch up with the presentations! they will all be uploaded here. | ||
| # DiveLane - Apple Pay for Ethereum | ||
|
|
||
| ## Presentations | ||
| - **Example** About some interesting topic. | ||
| - [pdf]() | ||
| - [other resources]() | ||
| <img src="https://github.com/matterinc/DiveLane/blob/master/dive%20logo.png" align="center" width="300"> | ||
|
|
||
| ## Submit your presentation | ||
| Thanks for presenting at ETHBerlin. Please consider uploading your files into a sub-directory of [resources](resources/) and add them to list above by making a pull request. | ||
| Check out our [presentation](https://github.com/matterinc/Talks-presentations/blob/master/resources/DiveLane/DiveLane%20Presentation.pdf) and [screencast](https://www.youtube.com/watch?v=Uidm5YccUas) | ||
| It will give you a brief overview of Dive Lane and it's message. | ||
|
|
||
| ## Freedom is **essential**. Privacy **Matter**! | ||
| Powered by [web3swift](https://github.com/matterinc/web3swift) | ||
|
|
||
| ### What is it? | ||
|
|
||
| - The universal way to sign transaction from **any apps**: | ||
| - mobile | ||
| - web | ||
| - dApps | ||
| - **Single and secure** place to store your private key. | ||
| - Transactions signer | ||
|
|
||
| ### So, let's go deeper into those statements: | ||
|
|
||
| ### Features | ||
| - Let you be **free from hard-bonded solution** like (`Laptop + Chrome + MetaMask + Private key`) binding. | ||
| - **No private key sharing** needed! Store it at one place, sign anywhere! | ||
| - Full support of [EIP-681](https://eips.ethereum.org/EIPS/eip-681) (URI scheme) | ||
| Even more: | ||
| - Sign transactions and **call arbitrary contract's methods** via deep links | ||
|
|
||
| ## Purpose | ||
|
|
||
| The solution that we **BUIDL**: a single keystore that accessible from any other applications via deep links and QR codes. It is the most advanced regarding security, and also quite user-friendly. | ||
|
|
||
|
|
||
| ### Kinda bridge between scientists and crypto-geeks and regular programmers: | ||
| Lots of experienced developers decline creation of DApps because of its technical hardness and, as a result, those apps are mostly written by scientific people, which don't know how to create excellent UX experience for their users. We want to provide a convenient way to avoid interaction with storing keys, signing and sending transactions, so great mobile developers could come into play and BUIDL amazing apps, without worrying about all that math around blockchain. | ||
| We did all the hard-lifting cryptography job done for you! | ||
|
|
||
| ## Usage: | ||
|
|
||
| ### in swift app: | ||
| ``` | ||
| //following by EIP-681: | ||
| let urlString = "ethereum:0xaaf3A96b8f5E663Fc47bCc19f14e10A3FD9c414B/pay?uint256=100000&value=1000" | ||
| UIApplication.shared.open(URL(string: urlString)!, options: [:], completionHandler: nil) | ||
| ``` | ||
| We have done it in PR: [Peepeth client PR](https://github.com/matterinc/PeepethClient/pull/8) | ||
|
|
||
|
|
||
| ### Web app: | ||
|
|
||
| [Pull request](https://github.com/ethereum/web3.js/pull/1929), that contains helper functions to work with ethereum links according to eip-681 | ||
|
|
||
|
|
||
|
|
||
| ## Smart contract interaction: | ||
| [Smart contract itself](https://rinkeby.etherscan.io/address/0xaaf3a96b8f5e663fc47bcc19f14e10a3fd9c414b): | ||
| ``` | ||
| pragma solidity ^0.4.23; | ||
|
|
||
| contract Shop { | ||
| mapping(uint256 => bool) invoices; | ||
|
|
||
| event InvoicePayed(uint256 invoice); | ||
|
|
||
| function pay(uint256 _invoice) public payable { | ||
| require (!invoices[_invoice] && msg.value > 0); | ||
| invoices[_invoice] = true; | ||
| emit InvoicePayed(_invoice); | ||
| } | ||
| } | ||
| ``` | ||
| String to encode into QR: `"ethereum:0xaaf3A96b8f5E663Fc47bCc19f14e10A3FD9c414B/pay?uint256=100000&value=1000"` | ||
|
|
||
| ## Plans (TBD) | ||
| During the hackathon, we have covered the whole iOS infrastructure (cross-app transaction signing and sign via QR-code for the calls outside of the phone). | ||
| Meanwhile, we want to continue working on that idea and adapt it to the whole Ethereum ecosystem, | ||
| i.e., BUIDL set of the libraries to full reference of FinTech ecosystem:: | ||
| - Android (TBD), | ||
| - JS(PR is during development already), | ||
| - IoT libraries + NFC support | ||
|
|
||
| ## Final Notes: | ||
|
|
||
| All in all, with all those things that will be implemented we will make ETH interaction as easy as wireless pay. | ||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don'd has to change this official readme. it's not for only this project :)
please revert it