- Jan 16, 2019
-
-
Luke Schoen authored
-
Luke Schoen authored
-
Luke Schoen authored
-
Luke Schoen authored
* Create TokenAddress similar to TokenBalance but doesn't need balance info from @withBalance
-
- Jan 14, 2019
-
-
Axel Chalon authored
-
Axel Chalon authored
-
Axel Chalon authored
-
Axel Chalon authored
-
Axel Chalon authored
-
- Jan 11, 2019
-
-
Thibaut Sardan authored
-
Axel Chalon authored
-
Axel Chalon authored
-
Axel Chalon authored
-
Thibaut Sardan authored
-
Axel Chalon authored
-
- Jan 10, 2019
-
-
Thibaut Sardan authored
-
- Jan 08, 2019
-
-
Thibaut Sardan authored
-
- Jan 07, 2019
-
-
Thibaut Sardan authored
-
Amaury Martiny authored
-
Amaury Martiny authored
-
Thibaut Sardan authored
-
Thibaut Sardan authored
-
Thibaut Sardan authored
-
Thibaut Sardan authored
-
Thibaut Sardan authored
-
Thibaut Sardan authored
-
Thibaut Sardan authored
-
Luke Schoen authored
-
Luke Schoen authored
-
Luke Schoen authored
-
Axel Chalon authored
-
Axel Chalon authored
-
Axel Chalon authored
- Add option to import a Parity Signer account. It is then stored in local storage. - Send transactions with Parity Signer accounts - Refactor sendStore so that "token" (and chainId) is inside this.tx; avoids having to pass `token` around every function, and it makes sense to put it in the object since it is part of the tx info. - Add account type (either node or signer) to accountsInfo - Add account type to withAccount; output props are now `{account: {address, type}}` instead of `{accountAddress}`
-
- Jan 06, 2019
-
-
Luke Schoen authored
* Move toggle details buttons and associated methods and showDetails state into nav of TxForm component * Pass showDetails down as props to TxDetails * Remove previous attempt to display TxDetails like a popup above other fields (i.e. remove form-details-wrapper and -details-value styles)
-
- Jan 05, 2019
-
-
Luke Schoen authored
-
Luke Schoen authored
-
Luke Schoen authored
-
Luke Schoen authored
-
Luke Schoen authored
-
- Jan 04, 2019
-
-
Luke Schoen authored
* Move "Details" / "Hide" buttons into the form-nav footer section * TxDetails now appears above the footer area above other input fields without causing the screen height to increase * Background of the TxDetails darkened so it stands out from surroudings * Change "Details" arrow to point upwards since TxDetails now shown above * Change "Hide" arrow to point downward since TxDetails now shown above * Rename classnames to `_` or `-` more consistently * Note: To quickly display the 'Details' button so you can click it change TxForm.js as follows: ``` {/* {valid && this.estimatedTxFee(values) ? ( */} <TxDetails // estimatedTxFee={this.estimatedTxFee(values)} estimatedTxFee={new BigNumber('8100000')} token={token} // values={values} values={ { amount: new BigNumber('0.1'), gasPrice: new BigNumber('21000') } } /> {/* ) : null} */}
-