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
2,763 changes: 2,510 additions & 253 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,18 @@
},
"dependencies": {
"@babel/core": "^7.8.7",
"@chris.troutner/bch-js": "^2.3.15",
"@ionic/pwa-elements": "^1.5.1",
"@quasar/extras": "^1.6.0",
"bitcoinjs-lib": "^5.1.7",
"bitcore-lib-cash": "^8.19.0",
"canvas": "^2.6.1",
"cordova": "^9.0.0",
"dotenv": "^8.2.0",
"electron": "^7.1.7",
"es6-promise": "^4.2.8",
"ethers": "^4.0.44",
"int64-buffer": "^0.99.1007",
"module": "^1.2.5",
"qrcode.vue": "^1.7.0",
"qrious": "^4.0.2",
Expand Down
121 changes: 121 additions & 0 deletions src/css/BCH/BCH.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
body {
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
height: 100%;
width: 100%;
}

.btn-group button {
display: block; /* Make the buttons appear below each other */
width: 100%;
top: 50%;
left: 33%;
}

.mainButton {
text-decoration: none;
outline: none;
display: inline-block;
padding: 20px 30px;
margin: 10px 20px;
position: relative;
color: white;
border: 2px solid rgba(255,255,255,.4);
background: none;
font-weight: 300;
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
letter-spacing: 2px;
}
.mainButton:before,
.mainButton:after {
content: "";
position: absolute;
width: 0;
height: 0;
opacity: 0;
box-sizing: border-box;
}
.mainButton:before {
bottom: 0;
left: 0;
border-left: 1px solid white;
border-top: 1px solid white;
transition: 0s ease opacity .8s, .2s ease width .4s, .2s ease height .6s;
}
.mainButton:after {
top: 0;
right: 0;
border-right: 1px solid white;
border-bottom: 1px solid white;
transition: 0s ease opacity .4s, .2s ease width , .2s ease height .2s;
}
.mainButton:hover:before,
.mainButton:hover:after{
height: 100%;
width: 100%;
opacity: 1;
}
.mainButton:hover:before {transition: 0s ease opacity 0s, .2s ease height, .2s ease width .2s;}
.mainButton:hover:after {transition: 0s ease opacity .4s, .2s ease height .4s , .2s ease width .6s;}
.mainButton:hover {background: rgba(255,255,255,.2);}

.camera {
width: 60%;
margin: 50px auto;
z-index: 100;
}

.q-dialog__backdrop{
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
}

.prop-text{
color: #ffffff;
}

.code{
position: absolute;
top: 0%;
z-index: 100;
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
height: 100%;
padding: 0px 30%;
animation-duration: 4s;
}

.code > canvas{
margin: auto;
width: 50%;
min-width: 300px;
}

.creationMs{
color: #ffffff;
padding: 50px;
}

.msButton{
width: 300px;
height: 100px;
}
.text{
color: rgb(175, 219, 233);
font-style: unset;
font-family: cursive;
font-size: 18px;
}

.white{
color: rgb(220, 233, 238);
font-style: unset;
font-family: cursive;
font-size: 20px;

}
.black{
color: rgb(2, 8, 10);
font-style: unset;
font-family: cursive;
font-size: 20px;

}
121 changes: 121 additions & 0 deletions src/css/Bitcoin/Bitcoin.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
body {
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
height: 100%;
width: 100%;
}

.btn-group button {
display: block; /* Make the buttons appear below each other */
width: 100%;
top: 50%;
left: 33%;
}

.mainButton {
text-decoration: none;
outline: none;
display: inline-block;
padding: 20px 30px;
margin: 10px 20px;
position: relative;
color: white;
border: 2px solid rgba(255,255,255,.4);
background: none;
font-weight: 300;
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
letter-spacing: 2px;
}
.mainButton:before,
.mainButton:after {
content: "";
position: absolute;
width: 0;
height: 0;
opacity: 0;
box-sizing: border-box;
}
.mainButton:before {
bottom: 0;
left: 0;
border-left: 1px solid white;
border-top: 1px solid white;
transition: 0s ease opacity .8s, .2s ease width .4s, .2s ease height .6s;
}
.mainButton:after {
top: 0;
right: 0;
border-right: 1px solid white;
border-bottom: 1px solid white;
transition: 0s ease opacity .4s, .2s ease width , .2s ease height .2s;
}
.mainButton:hover:before,
.mainButton:hover:after{
height: 100%;
width: 100%;
opacity: 1;
}
.mainButton:hover:before {transition: 0s ease opacity 0s, .2s ease height, .2s ease width .2s;}
.mainButton:hover:after {transition: 0s ease opacity .4s, .2s ease height .4s , .2s ease width .6s;}
.mainButton:hover {background: rgba(255,255,255,.2);}

.camera {
width: 60%;
margin: 50px auto;
z-index: 100;
}

.q-dialog__backdrop{
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
}

.prop-text{
color: #ffffff;
}

.code{
position: absolute;
top: 0%;
z-index: 100;
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
height: 100%;
padding: 0px 30%;
animation-duration: 4s;
}

.code > canvas{
margin: auto;
width: 50%;
min-width: 300px;
}

.creationMs{
color: #ffffff;
padding: 50px;
}

.msButton{
width: 300px;
height: 100px;
}
.text{
color: rgb(175, 219, 233);
font-style: unset;
font-family: cursive;
font-size: 18px;
}

.white{
color: rgb(220, 233, 238);
font-style: unset;
font-family: cursive;
font-size: 20px;

}
.black{
color: rgb(2, 8, 10);
font-style: unset;
font-family: cursive;
font-size: 20px;

}
133 changes: 133 additions & 0 deletions src/css/Ethereum/Ethereum.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
body {
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
height: 100%;
width: 100%;
}

.btn-group button {
display: block; /* Make the buttons appear below each other */
width: 100%;
top: 50%;
left: 33%;
}

.mainButton {
text-decoration: none;
outline: none;
display: inline-block;
padding: 20px 30px;
margin: 10px 20px;
position: relative;
color: white;
border: 2px solid rgba(255,255,255,.4);
background: none;
font-weight: 300;
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
letter-spacing: 2px;
}
.mainButton:before,
.mainButton:after {
content: "";
position: absolute;
width: 0;
height: 0;
opacity: 0;
box-sizing: border-box;
}
.mainButton:before {
bottom: 0;
left: 0;
border-left: 1px solid white;
border-top: 1px solid white;
transition: 0s ease opacity .8s, .2s ease width .4s, .2s ease height .6s;
}
.mainButton:after {
top: 0;
right: 0;
border-right: 1px solid white;
border-bottom: 1px solid white;
transition: 0s ease opacity .4s, .2s ease width , .2s ease height .2s;
}
.mainButton:hover:before,
.mainButton:hover:after{
height: 100%;
width: 100%;
opacity: 1;
}
.mainButton:hover:before {transition: 0s ease opacity 0s, .2s ease height, .2s ease width .2s;}
.mainButton:hover:after {transition: 0s ease opacity .4s, .2s ease height .4s , .2s ease width .6s;}
.mainButton:hover {background: rgba(255,255,255,.2);}

.nextButton {
text-decoration: none;
outline: none;
display: inline-block;
padding: 5px 10px;
margin: 10px 20px;
position: relative;
overflow: hidden;
border: 2px solid #3794fe;
border-radius: 8px;
font-family: 'Montserrat', sans-serif;
color: #3a37fe;
transition: .2s ease-in-out;
}
.nextButton:before {
content: "";
background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(14, 102, 204, 0.5));
height: 50px;
width: 50px;
position: absolute;
top: -8px;
left: -75px;
transform: skewX(-45deg);
}
.nextButton:hover {
background: #2956eb;
color: #fff;
}
.nextButton:hover:before {
left: 150px;
transition: .5s ease-in-out;
}

.camera {
width: 60%;
margin: 50px auto;
z-index: 100;
}

.q-dialog__backdrop{
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
}

.prop-text{
color: #ffffff;
}

.code{
position: absolute;
top: 0%;
z-index: 100;
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,130,210,1) 100%);
height: 100%;
padding: 0px 30%;
animation-duration: 4s;
}

.code > canvas{
margin: auto;
width: 50%;
min-width: 300px;
}

.creationMs{
color: #ffffff;
padding: 50px;
}

.msButton{
width: 300px;
height: 100px;
}
Loading