Merge pull request #15 from vbaranov/core

Updated loader logo; new address of metadata contract
This commit is contained in:
Victor 2017-12-21 15:30:24 +03:00 committed by GitHub
commit 9d6aa445f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 29 additions and 10 deletions

View File

@ -1,5 +1,5 @@
module.exports = {
METADATA_ADDRESS: '0xa1b344ee240564f61117f2dbf999547ad4b871ed',
METADATA_ADDRESS: '0xcBB2912666c7e8023B7ec78B6842702eB26336aC',
KEYS_MANAGER_ADDRESS: '0xfc90125492e58dbfe80c0bfb6a2a759c4f703ca8',
POA_ADDRESS: '0x8bf38d4764929064f2d4d3a56520a76ab3df415b'
}

View File

@ -219,6 +219,25 @@
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "_miningKey",
"type": "address"
}
],
"name": "onlyIfChangeExist",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 21 KiB

BIN
src/images/loading@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -259,21 +259,21 @@ button:focus {
position: absolute;
left: 50%;
top: 50%;
width: 146px;
margin: -30px 0 0 -81.5px;
width: 206px;
margin: -30px 0 0 -111.5px;
padding-top: 50px; }
.loading:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 146px;
width: 206px;
height: 35px;
background-image: url("../images/loading.png");
background-position: 0 0; }
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
.loading:before {
background-image: url("../images/loading.png");
background-image: url("../images/loading@2x.png");
background-size: 100% 100%; } }
.loading-container {
position: fixed;

View File

@ -18,19 +18,19 @@
position: absolute;
left: 50%;
top: 50%;
width: 146px;
margin: -30px 0 0 -81.5px;
width: 206px;
margin: -30px 0 0 -111.5px;
padding-top: 50px;
&:before {
@include image-2x('../images/loading.png');
@include image-2x('../images/loading@2x.png');
content: '';
position: absolute;
left: 0;
top: 0;
width: 146px;
width: 206px;
height: 35px;
background-image: url('../images/loading.png');
background-image: url("../images/loading.png");
background-position: 0 0;
}