diff --git a/README.md b/README.md index 86bf1b38e..3bf730a21 100644 --- a/README.md +++ b/README.md @@ -1,45 +1,36 @@
-
+
+
+ nOS is a blockchain powered virtual operating system that serves as the gateway to Decentralized Applications. +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The nOS Client (Developer MVP Release) allows for the development of Decentralized Applications that interact with Smart Contracts in the back-end. +
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- nOS is a blockchain powered virtual operating system that serves as the gateway to Decentralized Applications. -
-- The nOS Client (Developer MVP Release) allows for the development of Decentralized Applications that interact with Smart Contracts in the back-end. -
- ---- - # Getting Started with nOS The standalone client installers can be found [here](https://github.com/nos/client/releases). To build manually, the client can be cloned from GitHub and run using the development steps below. -### Commands +> Commands ```bash # Cloning from Github diff --git a/src/renderer/shared/components/NewWallet/Mnemonic/Mnemonic.js b/src/renderer/shared/components/NewWallet/Mnemonic/Mnemonic.js index 02a8b4dc4..9f9b91d50 100644 --- a/src/renderer/shared/components/NewWallet/Mnemonic/Mnemonic.js +++ b/src/renderer/shared/components/NewWallet/Mnemonic/Mnemonic.js @@ -22,7 +22,9 @@ export default class Mnemonic extends React.PureComponent { setPassphrase: func.isRequired, coinType: number.isRequired, setCoinType: func.isRequired, - addAccount: func.isRequired + addAccount: func.isRequired, + walletLabel: string.isRequired, + setWalletLabel: func.isRequired }; static defaultProps = { @@ -30,17 +32,26 @@ export default class Mnemonic extends React.PureComponent { }; render() { - const { className, account, coinType } = this.props; + const { className, account, coinType, passphrase, walletLabel } = this.props; const { secretWord } = account; return (