Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '45 9 * * 6'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
node_modules
.DS_Store
dist
yarn.lock
package-lock.json
yarn.lock
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# 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

To clone and run this repository you'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer. From your command line:

```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.
Expand Down
Binary file modified assets/images/EthoFS-Glitch.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/logo-glitch.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 14 additions & 13 deletions assets/styles/buttons.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.btn-etho {
color: #ffffff;
background-color: #840032;
background-color: #25D4DC;
border-color: #103024;
}

.btn-etho:hover {
background: #fff;
box-shadow: 0px 2px 10px 5px #840032;
box-shadow: 0px 2px 10px 5px #25D4DC;
color: #000;
}

Expand Down Expand Up @@ -41,12 +41,12 @@ fieldset[disabled] .btn-etho:active,
.btn-etho.disabled.active,
.btn-etho[disabled].active,
fieldset[disabled] .btn-etho.active {
background-color: #840032;
background-color: #25D4DC;
border-color: #450118;
}

.btn-etho .badge {
color: #840032;
color: #25D4DC;
background-color: #ffffff;
}

Expand All @@ -57,7 +57,7 @@ fieldset[disabled] .btn-etho.active {
font-size: 12px;
letter-spacing: 2px;
position: relative;
background-color: #840032;
background-color: #25D4DC;
border: none;
color: #fff;
padding: 2px;
Expand All @@ -71,13 +71,13 @@ fieldset[disabled] .btn-etho.active {

.button2:hover {
background: #fff;
box-shadow: 0px 2px 10px 5px #840032;
box-shadow: 0px 2px 10px 5px #25D4DC;
color: #000;
}

.button2:after {
content: "";
background: #840032;
background: #25D4DC;
display: block;
position: absolute;
padding-top: 300%;
Expand Down Expand Up @@ -106,7 +106,7 @@ fieldset[disabled] .btn-etho.active {
font-size: 10px;
letter-spacing: 1px;
position: relative;
background-color: #840032;
background-color: #25D4DC;
border: none;
color: #fff;
width: 110px;
Expand All @@ -119,13 +119,13 @@ fieldset[disabled] .btn-etho.active {

.button3:hover {
background: #fff;
box-shadow: 0px 2px 10px 5px #840032;
box-shadow: 0px 2px 10px 5px #25D4DC;
color: #000;
}

.button3:after {
content: "";
background: #840032;
background: #25D4DC;
display: block;
position: absolute;
padding-top: 300%;
Expand Down Expand Up @@ -154,7 +154,7 @@ fieldset[disabled] .btn-etho.active {
font-size: 12px;
letter-spacing: 2px;
position: relative;
background-color: #840032;
background-color: #25D4DC;
border: none;
color: #fff;
padding: 8px;
Expand All @@ -167,13 +167,13 @@ fieldset[disabled] .btn-etho.active {

.button4:hover {
background: #fff;
box-shadow: 0px 2px 10px 5px #840032;
box-shadow: 0px 2px 10px 5px #25D4DC;
color: #000;
}

.button4:after {
content: "";
background: #840032;
background: #25D4DC;
display: block;
position: absolute;
padding-top: 300%;
Expand All @@ -194,3 +194,4 @@ fieldset[disabled] .btn-etho.active {
.button4:focus {
outline: 0;
}

5 changes: 3 additions & 2 deletions assets/styles/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}

.dropdown-content li>a, .dropdown-content li>span {
color: rgb(36, 13, 21);
color: rgb(13, 36, 33);
}

#sendFeeRange {
Expand All @@ -27,7 +27,7 @@
}

#tableTransactionsForAll .fa-sign-out-alt {
color: red;
color: rgb(0, 238, 255);
}

#tableTransactionsForAll .fa-arrow-left {
Expand All @@ -45,3 +45,4 @@
#tableTransactionsForAll .fa-check {
color: #228B22;
}

Loading