Updated to Atlas 1.5.1
Updated links Updated richlist for transactions Updated geth to 1.5.1 +++
This commit is contained in:
10
README.md
10
README.md
@@ -1,8 +1,8 @@
|
||||
# Ether1 Desktop Wallet
|
||||
# Etho Protocol Desktop Wallet
|
||||
|
||||
**Clone and run to see it in action.**
|
||||
|
||||
This is a desktop wallet for the [Ether1](https://ether1.org/) project.
|
||||
This is a desktop wallet for the [Etho Protocol](https://ethoprotocol.com/) project.
|
||||
|
||||
## To Use
|
||||
|
||||
@@ -10,13 +10,13 @@ To clone and run this repository you'll need [Git](https://git-scm.com) and [Nod
|
||||
|
||||
```bash
|
||||
# Clone this repository
|
||||
git clone https://github.com/taeguscromis/Ether1DesktopWallet
|
||||
git clone https://github.com/Ether1Project/Ether1DesktopWallet.git
|
||||
# Go into the repository
|
||||
cd Ether1DesktopWallet
|
||||
# Install dependencies
|
||||
npm install
|
||||
yarn install
|
||||
# Run the app
|
||||
npm start
|
||||
yarn run start
|
||||
```
|
||||
|
||||
Note: If you're using Linux Bash for Windows, [see this guide](https://www.howtogeek.com/261575/how-to-run-graphical-linux-desktop-applications-from-windows-10s-bash-shell/) or use `node` from the command prompt.
|
||||
|
||||
@@ -35,10 +35,10 @@
|
||||
<div class="ui grid container">
|
||||
<div class="four column row">
|
||||
<div class="column">
|
||||
<button class="aboutbutton ui violet inverted button" type="button" onclick="require('electron').shell.openExternal('https://cryptowolf.eu')">CryptoWolf</button>
|
||||
<button class="aboutbutton ui violet inverted button" type="button" onclick="require('electron').shell.openExternal('https://www.probit.com/r/41540915')">ProBit</button>
|
||||
</div>
|
||||
<div class="column">
|
||||
<button class="aboutbutton ui violet inverted button" type="button" onclick="require('electron').shell.openExternal('https://safe.trade')">SafeTrade</button>
|
||||
<button class="aboutbutton ui violet inverted button" type="button" onclick="require('electron').shell.openExternal('https://www.kucoin.com/ucenter/signup?rcode=rJUCF6W')">KuCoin</button>
|
||||
</div>
|
||||
<div class="column">
|
||||
<button class="aboutbutton ui violet inverted button" type="button" onclick="require('electron').shell.openExternal('https://mercatox.com/?referrer=467736')">Mercatox</button>
|
||||
@@ -71,7 +71,7 @@
|
||||
<button class="aboutbutton ui inverted green button" type="button" onclick="require('electron').shell.openExternal('https://ethoprotocol.com')">Etho Protocol Website</button>
|
||||
</div>
|
||||
<div class="column">
|
||||
<button class="aboutbutton ui inverted green button" type="button" onclick="require('electron').shell.openExternal('https://ethofs.com')">ethoFS Website</button>
|
||||
<button class="aboutbutton ui inverted green button" type="button" onclick="require('electron').shell.openExternal('https://uploads.ethoprotocol.com/')">ethoFS Website</button>
|
||||
</div>
|
||||
<div class="column">
|
||||
<button class="aboutbutton ui inverted green button" type="button" onclick="require('electron').shell.openExternal('https://github.com/Ether1Project')">Etho Protocol Github</button>
|
||||
|
||||
BIN
bin/linux/geth
BIN
bin/linux/geth
Binary file not shown.
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d7effc7613fc51242f0c6e93ac1f5664e9bfac3fed3f8d229f4139e8bd6d4e3f
|
||||
size 116475858
|
||||
oid sha256:6722fcf6a62d2d9afa8ae65eaaf7eb946ae3a27a7983432b033e1eefaa4c7e51
|
||||
size 113914782
|
||||
|
||||
@@ -78,7 +78,7 @@ const template = [
|
||||
role: "help",
|
||||
submenu: [
|
||||
{
|
||||
label: "About Ether1 wallet",
|
||||
label: "About Etho Protocol wallet",
|
||||
click() {
|
||||
var infoData = {};
|
||||
infoData.version = app.getVersion();
|
||||
@@ -87,12 +87,12 @@ const template = [
|
||||
}, {
|
||||
label: "Ether1 documentation",
|
||||
click() {
|
||||
shell.openExternal("https://docs.ether1.org");
|
||||
shell.openExternal("https://docs.ethoprotocol.com/");
|
||||
}
|
||||
}, {
|
||||
label: "Report issue on GitHub",
|
||||
click() {
|
||||
shell.openExternal("https://github.com/taeguscromis/Ether1DesktopWallet/issues");
|
||||
shell.openExternal("https://github.com/Ether1Project/Ether1DesktopWallet/issues");
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
14
package.json
14
package.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Ether1Wallet",
|
||||
"version": "2.4.0",
|
||||
"description": "Desktop wallet for Ether-1 ($ETHO)",
|
||||
"name": "EthoWallet",
|
||||
"version": "2.4.1",
|
||||
"description": "Desktop wallet for Etho Protocol ($ETHO)",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"start": "electron .",
|
||||
@@ -12,7 +12,7 @@
|
||||
"bundle": "browserify assets/dashboard/js/node.js > assets/dashboard/js/bundle.js"
|
||||
},
|
||||
"build": {
|
||||
"appId": "Ether1DesktopWallet",
|
||||
"appId": "EthoDesktopWallet",
|
||||
"files": [
|
||||
"modules/*",
|
||||
"assets/**/*",
|
||||
@@ -46,13 +46,13 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"repository": "https://github.com/taeguscromis/Ether1DesktopWallet",
|
||||
"repository": "https://github.com/Ether1Project/Ether1DesktopWallet",
|
||||
"keywords": [
|
||||
"Ether1",
|
||||
"Etho",
|
||||
"Desktop",
|
||||
"Wallet"
|
||||
],
|
||||
"author": "Ether1",
|
||||
"author": "Etho",
|
||||
"license": "CC0-1.0",
|
||||
"dependencies": {
|
||||
"@unibeautify/beautifier-js-beautify": "^0.4.0",
|
||||
|
||||
@@ -46,7 +46,7 @@ class Transactions {
|
||||
lastBlock
|
||||
]);
|
||||
|
||||
$.getJSON("https://richlist.ether1.org/transactions_list.php" + params, function (result) {
|
||||
$.getJSON("https://richlist.ethoprotocol.io/transactions_list.php" + params, function (result) {
|
||||
result.data.forEach(element => {
|
||||
if (element.fromaddr && element.toaddr) {
|
||||
ipcRenderer.send("storeTransaction", {
|
||||
|
||||
Reference in New Issue
Block a user