diff --git a/EIPS/draft-dapp-html-authorization.md b/EIPS/draft-dapp-html-authorization.md
index f0809f0c..f34c59dd 100644
--- a/EIPS/draft-dapp-html-authorization.md
+++ b/EIPS/draft-dapp-html-authorization.md
@@ -9,9 +9,9 @@
Abstract
========
-This draft EIP describes the details of an authorization method that if provided by rpc enabled ethereum nodes would allow regular websites to send transactions (via ```eth_sendTransaction```) without the need to enable CORS for the website's domain but instead with the required consent from the users.
+This draft EIP describes the details of an authorization method that if provided by rpc enabled ethereum nodes would allow regular websites to send transactions (via ```eth_sendTransaction```) without the need to enable CORS. Instead, user would be asked to confirm the transaction via an html popup.
-For every transaction that the dapp wish to execute, an html popup is presented to the user to allow him/her to cancel or confirm the transaction. This allow users to safely interact with dapp running in their everyday web browser while their accounts are unlocked. In case the account is not unlocked and the node has allowed the "personal" api via rpc,the html page also allow the user to enter their password to unlock the account for the scope of the transaction.
+Every read only rpc calls the dapp want to perform are redirected to an invisible iframe from the node's domain and for every transaction that the dapp wish to execute, an html popup is presented to the user to allow him/her to cancel or confirm the transaction. This allow the dapp to connect to the node's rpc api without being granted any kind of privileges. This allow users to safely interact with dapp running in their everyday web browser while their accounts are unlocked. In case the account is not unlocked and the node has allowed the "personal" api via rpc,the html page also allow the user to enter their password to unlock the account for the scope of the transaction.
Motivation
==========
@@ -20,7 +20,7 @@ Currently, if a user navigate to a dapp running on a website using her/his every
- For more complex case, the user is asked to enter the transaction manually via the node command line interface.
-This proposal aims to provide a safe and user friendly alternative:
+This proposal aims to provide a safe and user friendly alternative.
Here are some screenshot of the provided implementation of that html popup:
@@ -49,15 +49,46 @@ In order for the mechanism to work, the node need to serve an html file via http
This file will then be used by the dapp in 2 different modes (invisible iframe and popup window).
-The invisible iframe will be embeded in the dapp to allow the dapp to send its read-only rpc call without having to enable CORS for the dapp's website domain. This is done by sending message to the iframe (via javascript ```window.postMessage```) which in turn execute the rpc call. This works since the iframe and the node share the same domain/port. The iframe first message is a message containing the string "ready" to let the parent know that it now accepts messages.
+The invisible iframe will be embeded in the dapp to allow the dapp to send its read-only rpc call without having to enable CORS for the dapp's website domain. This is done by sending message to the iframe (via javascript ```window.postMessage```) which in turn execute the rpc call. This works since the iframe and the node share the same domain/port.
In iframe node the html file's javascript code will ensure that no call requiring an unlocked key can be made. This is to prevent dapp for embedding the visible iframe and tricking the user into clicking the confirm button.
If the dapp requires to make an ```eth_sendTransaction``` call, the dapp will instead open a new window using the same url.
-In this popup window mode, the html file's javascript code will alow ```eth_sendTransaction``` (but not ```eth_sign``` as there is no way to display to the user the meaningfull content of the transaction to sign in a safe way) to be called. But instead of sending the call to the node directly, a confirmation dialog will be presented showing the sender and recipient addresses as well the amount being transfered along with the potential gas cost. Upon the user approving, the request will be sent and the result returned to the dapp. An error will be returned in case the user cancel the request. Similarly to the iframe mode, the window first message is a message containing the string "ready" to let the opener know that it now accepts messages.
+In this popup window mode, the html file's javascript code will alow ```eth_sendTransaction``` (but not ```eth_sign``` as there is no way to display to the user the meaningfull content of the transaction to sign in a safe way) to be called. But instead of sending the call to the node directly, a confirmation dialog will be presented showing the sender and recipient addresses as well the amount being transfered along with the potential gas cost. Upon the user approving, the request will be sent and the result returned to the dapp. An error will be returned in case the user cancel the request.
The html page also check for the availability of the "personal" api and if so, will ask the user to unlock the account if necessary. The unlocking is temporary (3s) so the password will be asked again if a transaction is attempted before the end of this short time.
+In both iframe mode and window mode, the communication with the dapp is achieved using ```window.postMessage```.
+The fist message the iframe/window send is a message containing the string "ready" to let the dapp know that it now accepts messages. Then the dapp can start performing rpc call by sending message using the following object :
+```
+{
+ id:, //so responses can be match as there is no guarantee of the order of the response
+ payload: //this is the exact object that usually send to the node
+}
+```
+
+For ```eth_sendTransaction``` the "gas", "gasPrice" and "from" field need to be set in the rpc parameter so that the window can display the correct value. If not all of these are passed in, the window will return an error.
+
+Upon receiving such message, the iframe will perform the actual rpc call to the node but only if such a call is a read only call (not requiring an unlocked key). If it is not it will return a error. The window on the other will also accept ```eth_sendTransaction``` calls but will display a dialog so the user can accept or cancel the request.
+
+In all the cases, the iframe/window will send a message back to the dapp using the following object:
+```
+{
+ id:,
+ result:,
+ error:
+}
+```
+
+the error object cannot be a javascript Error object due to postMessage limitation. Instead it is
+```
+{
+ message:,
+ type: //type="cancel" means the user cancel the transaction
+}
+```
+
+
Rationale
=========
The design for that proposal was chosen for its simplicity and security. A previous idea was to use an oauth-like protocol in order for the user to accept or deny a transaction request. It would have required deeper code change in the node and some geth contributors argues that such change did not fit into geth code base as it would have required dapp aware code.
@@ -68,406 +99,404 @@ The use of iframe/ window was required to have both security and user friendline
Implementations
===============
-In order to implement this design, the following html file need to be served at the url \/authorization.html
+In order to implement this design, the following html file or an equivalent one need to be served at the url \/authorization.html
+
That's it
```
-
- Ethereum Authorization
-
+
+ Ethereum Authorization
+
+
+
+
+
+
+
+
+
+
+
+
+
+ var pleaseWait = document.getElementById("pleasewait");
+ var form = document.getElementById("form");
+ var cancelButton = document.getElementById("cancel-button");
+ var confirmButton = document.getElementById("confirm-button");
+ var message = document.getElementById("message");
+ var password = document.getElementById("password");
+ var passwordField = document.getElementById("passwordField");
+ var modalDialog = document.getElementById("modal-dialog");
+ var modalDialogButton = document.getElementById("modal-dialog-button");
+ var modalDialogTitle = document.getElementById("modal-dialog-title");
+ var modalDialogMessage = document.getElementById("modal-dialog-message");
-
+ };
+
+ try {
+ request.send(JSON.stringify(payload));
+ } catch(e) {
+ callback({message:'CONNECTION ERROR: Couldn\'t connect to node '+ url +'.',type:"noConnection"});
+ }
+ }
-
-
-
-
-
+ function addBlocky(message, address){
+ var icon = blockies.create({
+ seed: address,
+ size: 8,
+ scale: 6
+ });
+ message.appendChild(icon);
+ }
-
-
-
-
+ }else{
+ sendAsync(data.url,data.payload,function(error,result){
+ sourceWindow.postMessage({id:data.id,result:result,error:error},sourceWindow.location.href);
+ });
+ }
+ }
+
+
+ window.addEventListener("message", receiveMessage);
+ if(source){
+ source.postMessage("ready",source.location.href);
+ }
+
+
+
```
\ No newline at end of file