1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00

Merge pull request #1249 from MetaMask/kovan-notice

Kovan notice
This commit is contained in:
Kevin Serrano 2017-03-24 14:07:37 -07:00 committed by GitHub
commit fb39539214
4 changed files with 7 additions and 3 deletions

View File

@ -0,0 +1 @@
MetaMask now lists a new network on our dropdown list: Kovan, a [Proof of Authority](https://github.com/paritytech/parity/wiki/Proof-of-Authority-Chains) testchain managed by several blockchain organizations such as Digix, Etherscan, and Parity. It is designed to be a more stable and reliable testnet alternative to Ropsten and was created in response to recent attacks that slowed down the Ropsten network. You can read more about Kovan [here](https://medium.com/@Digix/announcing-kovan-a-stable-ethereum-public-testnet-10ac7cb6c85f#.6o8sz8cct) and [here](https://medium.com/@Digix/letter-from-the-ceo-some-context-regarding-kovan-7b5121adb901#.kfv7zhw83). As with Ropsten, the default remote node to connect to Kovan is managed by Infura.

View File

@ -1 +1 @@
1
2

File diff suppressed because one or more lines are too long

View File

@ -99,7 +99,10 @@ Notice.prototype.render = function () {
h('button', {
disabled,
onClick: onConfirm,
onClick: () => {
this.setState({disclaimerDisabled: true})
onConfirm()
},
style: {
marginTop: '18px',
},