Browse Source

Wireless renamed to WLC and Bitcoin Native GUI parts added

master
Satinder Grewal 8 years ago
parent
commit
3c49442187
  1. BIN
      assets/images/bg/btc_transparent_header_bg.png
  2. 0
      assets/images/cryptologo/WLC.png
  3. BIN
      assets/images/native/btc_header_title_logo.png
  4. 4
      assets/scripts/dashboard.js
  5. 2
      assets/scripts/iguana_api.js
  6. 8
      assets/scripts/iguana_api/IguanaAddcoin.js
  7. 2
      assets/scripts/login.js
  8. 12
      assets/scripts/sidebar.js
  9. 2
      assets/scripts/templates/addCoinOptions.js

BIN
assets/images/bg/btc_transparent_header_bg.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

0
assets/images/cryptologo/WIRELESS.png → assets/images/cryptologo/WLC.png

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

BIN
assets/images/native/btc_header_title_logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

4
assets/scripts/dashboard.js

@ -685,8 +685,8 @@ var Dashboard = function() {
coinlogo = 'REVS';
coinname = 'REVS';
break;
case 'WIRELESS':
coinlogo = 'WIRELESS';
case 'WLC':
coinlogo = 'WLC';
coinname = 'WIRELESS';
break;
case 'PANGEA':

2
assets/scripts/iguana_api.js

@ -210,7 +210,7 @@ function Iguana_utxorawtx(data) {
function checkAC(coinVal) {
if (coinVal == 'SUPERNET' ||
coinVal == 'REVS' ||
coinVal == 'WIRELESS' ||
coinVal == 'WLC' ||
coinVal == 'DEX' ||
coinVal == 'PANGEA' ||
coinVal == 'JUMBLR' ||

8
assets/scripts/iguana_api/IguanaAddcoin.js

@ -335,11 +335,11 @@ function Iguana_addcoin(addcoin_data) {
'AddCoinData': confpath ? Object.assign({}, _acPayloadOrigin, {"coin":"REVS","conf":"REVS.conf","path":confpath[0].path,"RELAY":-1,"VALIDATE":0,"startpend":4,"endpend":4,"maxpeers":8,"newcoin":"REVS","name":"REVS","netmagic":"905c3498","p2p":10195,"rpc":10196}) : {},
'AddCoinDataVar': Object.assign({}, _acPayloadOrigin, {'userpass':tmpIguanaRPCAuth,"RELAY":addcoin_data.mode,"VALIDATE":addcoin_data.mode,"startpend":tmpPendValue,"endpend":tmpPendValue,"maxpeers":8,"newcoin":"REVS","name":"REVS","netmagic":"905c3498","p2p":10195,"rpc":10196})
},
'WIRELESS': {
'WLC': {
'name': 'WIRELESS',
'supply': 21000000,
'AddCoinData': confpath ? Object.assign({}, _acPayloadOrigin, {"coin":"WIRELESS","conf":"WIRELESS.conf","path":confpath[0].path,"RELAY":-1,"VALIDATE":0,"startpend":4,"endpend":4,"maxpeers":8,"newcoin":"WIRELESS","name":"WIRELESS","netmagic":"62071ed3","p2p":11666,"rpc":11667}) : {},
'AddCoinDataVar': Object.assign({}, _acPayloadOrigin, {'userpass':tmpIguanaRPCAuth,"RELAY":addcoin_data.mode,"VALIDATE":addcoin_data.mode,"startpend":tmpPendValue,"endpend":tmpPendValue,"maxpeers":8,"newcoin":"WIRELESS","name":"WIRELESS","netmagic":"62071ed3","p2p":11666,"rpc":11667})
'AddCoinData': confpath ? Object.assign({}, _acPayloadOrigin, {"coin":"WLC","conf":"WLC.conf","path":confpath[0].path,"RELAY":-1,"VALIDATE":0,"startpend":4,"endpend":4,"maxpeers":8,"newcoin":"WLC","name":"WIRELESS","netmagic":"62071ed3","p2p":11666,"rpc":11667}) : {},
'AddCoinDataVar': Object.assign({}, _acPayloadOrigin, {'userpass':tmpIguanaRPCAuth,"RELAY":addcoin_data.mode,"VALIDATE":addcoin_data.mode,"startpend":tmpPendValue,"endpend":tmpPendValue,"maxpeers":8,"newcoin":"WLC","name":"WIRELESS","netmagic":"62071ed3","p2p":11666,"rpc":11667})
},
'PANGEA': {
'name': 'PANGEA',
@ -512,7 +512,7 @@ function Iguana_addcoin(addcoin_data) {
addcoin_data.coin === 'KV' ||
addcoin_data.coin === 'CEAL' ||
addcoin_data.coin === 'MESH' ||
addcoin_data.coin === 'WIRELESS') {
addcoin_data.coin === 'WLC') {
return 'ac';
}
}

2
assets/scripts/login.js

@ -788,7 +788,7 @@ var Login = function() {
}
if (tmp_coin_val == 'SUPERNET' ||
tmp_coin_val == 'REVS' ||
tmp_coin_val == 'WIRELESS' ||
tmp_coin_val == 'WLC' ||
tmp_coin_val == 'DEX' ||
tmp_coin_val == 'PANGEA' ||
tmp_coin_val == 'JUMBLR' ||

12
assets/scripts/sidebar.js

@ -443,8 +443,8 @@ function assetchain_pax_menu_actions(coin) {
case 'REVS':
renderAssetGFX('supernet', 'jumblr', coin);
break;
case 'WIRELESS':
renderAssetGFX('wireless', 'wireless', coin);
case 'WLC':
renderAssetGFX('wireless', 'wireless', 'Wireless (WLC)');
break;
case 'PANGEA':
renderAssetGFX('pangea', 'jumblr', coin);
@ -456,7 +456,7 @@ function assetchain_pax_menu_actions(coin) {
renderAssetGFX('supernet', 'jumblr', coin);
break;
case 'BET':
renderAssetGFX('wireless', 'wireless', coin);
renderAssetGFX('bet', 'bet', coin);
break;
case 'CRYPTO':
renderAssetGFX('supernet', 'jumblr', coin);
@ -465,7 +465,7 @@ function assetchain_pax_menu_actions(coin) {
renderAssetGFX('supernet', 'jumblr', coin);
break;
case 'SHARK':
renderAssetGFX('wireless', 'wireless', coin);
renderAssetGFX('shark', 'shark', coin);
break;
case 'BOTS':
renderAssetGFX('supernet', 'jumblr', coin);
@ -483,10 +483,10 @@ function assetchain_pax_menu_actions(coin) {
renderAssetGFX('ceal', 'ceal', coin);
break;
case 'MESH':
renderAssetGFX('mesh', 'mesh', coin);
renderAssetGFX('mesh', 'mesh', 'SuperMesh (MESH)');
break;
case 'BTC':
renderAssetGFX('btc', 'btc', coin);
renderAssetGFX('btc', 'btc', '(BTC)');
break;
case 'USD':
renderAssetGFX('usd', 'usd', 'US Dollar (USD)');

2
assets/scripts/templates/addCoinOptions.js

@ -34,7 +34,7 @@ templates.addCoinOptions =
<option value="SHARK">SHARK (SHARK)</option>
<option value="MESH">SpaceMesh (MESH)</option>
<option value="SUPERNET">SUPERNET (SUPERNET)</option>
<option value="WIRELESS">WIRELESS (WIRELESS)</option>
<option value="WLC">WIRELESS (WLC)</option>
</optgroup>
<optgroup label="Fiat Currencies">
<option value="AUD">Australian Dollar (AUD)</option>

Loading…
Cancel
Save