This commit is contained in:
sairaj mote 2023-01-06 02:42:54 +05:30
parent 40bcdb20e8
commit 7bbc85937b
12 changed files with 3309 additions and 2296 deletions

View File

@ -2,7 +2,12 @@
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
font-family: "Inter", sans-serif;
}
*:focus-visible {
outline: var(--accent-color) solid medium;
outline-offset: 0;
transition: outline-offset 0.3s;
}
:root {
@ -15,17 +20,20 @@ body {
}
body {
--accent-color: #4d77ff;
--text-color: 20, 20, 20;
--foreground-color: 252, 253, 255;
--background-color: 241, 243, 248;
--danger-color: rgb(255, 75, 75);
--accent-color: #234ebf;
--accent-color-rgb: 35, 78, 191;
--blue-accent-1: #f5f8ff;
--blue-accent-2: #f2f6ff;
--text-color: 58, 58, 58;
--foreground-color: 255, 255, 255;
--background-color: 243, 245, 250;
--danger-color: #ff6161;
--green: #1cad59;
--yellow: rgb(220, 165, 0);
scrollbar-width: thin;
scrollbar-gutter: stable;
color: rgba(var(--text-color), 1);
background-color: rgba(var(--background-color), 1);
background-color: rgba(var(--foreground-color), 1);
transition: background-color 0.3s;
position: relative;
display: flex;
@ -34,6 +42,9 @@ body {
body[data-theme=dark] {
--accent-color: #a0b6ff;
--accent-color-rgb: 160, 182, 255;
--blue-accent-1: #f5f8ff10;
--blue-accent-2: #f2f6ff10;
--text-color: 220, 220, 220;
--foreground-color: 27, 28, 29;
--background-color: 21, 22, 22;
@ -66,18 +77,8 @@ a {
text-decoration: none;
color: var(--accent-color);
}
a:focus-visible {
box-shadow: 0 0 0 0.1rem rgba(var(--text-color), 1) inset;
}
a.button {
padding: 0.4rem 0.6rem;
border-radius: 0.3rem;
font-size: 0.9rem;
font-weight: 500;
color: inherit;
}
.button,
button {
-webkit-user-select: none;
-moz-user-select: none;
@ -93,20 +94,21 @@ button {
font-weight: 500;
white-space: nowrap;
padding: 0.8rem;
border-radius: 0.3rem;
border-radius: 0.5rem;
justify-content: center;
color: inherit;
min-width: -webkit-max-content;
min-width: -moz-max-content;
min-width: max-content;
}
button:focus-visible {
outline: var(--accent-color) solid medium;
}
.button:not(:disabled),
button:not(:disabled) {
cursor: pointer;
}
.button {
color: var(--accent-color);
background-color: rgba(var(--text-color), 0.06);
background-color: var(--blue-accent-1);
}
.button .icon {
fill: var(--accent-color);
@ -152,18 +154,6 @@ button:disabled {
opacity: 0.5;
}
a:-webkit-any-link:focus-visible {
outline: rgba(var(--text-color), 1) 0.1rem solid;
}
a:-moz-any-link:focus-visible {
outline: rgba(var(--text-color), 1) 0.1rem solid;
}
a:any-link:focus-visible {
outline: rgba(var(--text-color), 1) 0.1rem solid;
}
details summary {
display: flex;
-webkit-user-select: none;
@ -172,7 +162,6 @@ details summary {
cursor: pointer;
align-items: center;
justify-content: space-between;
color: var(--accent-color);
}
details[open] summary {
@ -192,18 +181,8 @@ sm-textarea button .icon {
fill: var(--accent-color);
}
sm-button {
--padding: 0.8rem;
}
sm-button[variant=primary] .icon {
fill: rgba(var(--background-color), 1);
}
sm-button[disabled] .icon {
fill: rgba(var(--text-color), 0.6);
}
sm-button.danger {
--background: var(--danger-color);
color: rgba(var(--background-color), 1);
sm-copy {
font-size: 0.9rem;
}
sm-spinner {
@ -225,26 +204,26 @@ sm-option {
}
sm-chips {
--gap: 0;
background-color: rgba(var(--text-color), 0.06);
border-radius: 0.3rem;
padding: 0.3rem;
--gap: 0.3rem;
}
sm-chip {
font-size: 0.8rem;
--border-radius: 0.2rem;
position: relative;
font-size: 0.9rem;
--border-radius: 0.5rem;
--padding: 0.5rem 0.8rem;
--background: rgba(var(--text-color), 0.06);
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
font-weight: 500;
}
sm-chip[selected] {
--background: var(--accent-color);
color: rgba(var(--foreground-color), 1);
}
sm-copy {
font-size: 0.9rem;
}
ul,
ol {
ul {
list-style: none;
}
@ -440,6 +419,10 @@ ol li::before {
margin-right: 0.5rem;
}
.margin-right-auto {
margin-right: auto;
}
.margin-left-0-5 {
margin-left: 0.5rem;
}
@ -593,16 +576,16 @@ ol li::before {
height: 100%;
}
.page__header {
position: -webkit-sticky;
position: sticky;
top: 0;
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
min-height: 5rem;
}
.page__header .grid {
margin-top: auto;
}
.page__header h1 {
font-size: 2rem;
background-color: rgba(var(--foreground-color), 1);
z-index: 1;
}
#confirmation_popup,
@ -729,13 +712,36 @@ ol li::before {
#main_header {
display: grid;
gap: 1.5rem;
padding: 1rem 1rem;
gap: 1rem;
padding: 1rem;
align-items: center;
grid-template-columns: minmax(0, 1fr) auto;
grid-template-columns: 1fr auto auto auto;
min-height: 4rem;
}
#user_profile_button {
background-color: var(--blue-accent-1);
border-radius: 2rem;
font-size: 0.8rem;
padding: 0.6rem 0.8rem;
font-weight: 700;
}
#notifications_wrapper {
position: relative;
}
#notifications_panel {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
background-color: rgba(var(--foreground-color), 1);
padding: 1rem;
}
.logged-in-user-id {
background-color: rgba(var(--text-color), 0.06);
max-width: -webkit-fit-content;
@ -753,61 +759,11 @@ ol li::before {
height: 100%;
width: 100%;
transition: background-color 0.3s;
background-color: rgba(var(--background-color), 1);
}
#main_card.nav-hidden .inner-page {
grid-area: 2/1/3/-1;
}
#main_navbar {
display: flex;
background-color: rgba(var(--foreground-color), 0.8);
}
#main_navbar ul {
display: flex;
height: 100%;
width: 100%;
}
#main_navbar ul li {
width: 100%;
}
.nav-item {
position: relative;
display: flex;
flex: 1;
width: 100%;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0.5rem 0.3rem;
color: var(--text-color);
font-size: 0.8rem;
font-weight: 500;
gap: 0.5rem;
}
.nav-item .icon {
transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-item__title {
transition: opacity 0.2s, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-item--active {
color: var(--accent-color);
}
.nav-item--active .icon {
fill: var(--accent-color);
}
.nav-item__indicator {
position: absolute;
bottom: 0;
width: 2rem;
height: 0.3rem;
background: var(--accent-color);
border-radius: 1rem 1rem 0 0;
z-index: 1;
}
.badge {
display: flex;
align-items: center;
@ -864,9 +820,45 @@ ol li::before {
}
#home {
position: relative;
display: grid;
padding: 0;
gap: 3rem;
overflow-y: visible;
align-content: initial;
}
#home > * {
align-content: flex-start;
}
#wallet_section {
position: relative;
display: flex;
flex-direction: column;
height: 100%;
gap: 1.5rem;
background-color: rgba(var(--accent-color-rgb), 0.02);
}
#wallet_section sm-chips {
display: flex;
justify-content: center;
}
#wallet_section sm-chip::part(chip) {
width: 8rem;
justify-content: center;
}
#wallet_section > * {
width: 100%;
}
#wallet_section::before {
content: "";
position: absolute;
top: -10vmax;
left: 0;
width: 100%;
height: 10vmax;
background-color: inherit;
pointer-events: none;
}
#user,
@ -896,41 +888,30 @@ ol li::before {
#wallet_cards_wrapper {
display: grid;
gap: 0.5rem;
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
align-items: flex-start;
grid-template-columns: 6rem 1fr;
background-color: rgba(var(--text-color), 0.06);
border-radius: 0.5rem;
padding: 0 0.2rem;
}
#wallet_cards_wrapper sm-input {
--background: transparent;
}
#wallet_cards_wrapper sm-select {
margin: 0.2rem 0;
--background: rgba(var(--foreground-color), 1);
}
#wallet_cards_wrapper sm-select[open] {
z-index: 10;
}
.balance-card {
display: grid;
overflow: hidden;
border-radius: 0.8rem;
background-color: rgba(var(--foreground-color), 1);
background-color: rgba(var(--accent-color-rgb), 0.06);
border-radius: 0.5rem;
padding: 0.8rem;
font-size: 0.9rem;
}
.balance-card > * {
padding: 1rem;
gap: 1.5rem;
}
.balance-card > :last-child:not(:only-child) {
border-top: thin solid rgba(var(--text-color), 0.2);
}
.balance-card .asset-icon {
height: 2.5rem;
width: 2.5rem;
padding: 0.6rem;
border-radius: 1.1rem;
margin-right: 0.8rem;
fill: rgba(var(--background-color), 1);
}
.balance-card .asset-icon--rupee {
background-color: var(--green);
}
.balance-card .asset-icon--flo {
fill: white;
background-color: #4d77ff;
}
.balance-card .asset-icon--btc {
background-color: rgb(255, 173, 8);
font-weight: 500;
}
#rupee_balance span:first-of-type,
@ -945,9 +926,11 @@ ol li::before {
}
.actions-wrapper {
display: grid;
display: flex;
gap: 0.5rem;
grid-template-columns: repeat(auto-fill, minmax(4rem, 1fr));
}
.actions-wrapper > * {
flex: 1;
}
.wallet-action,
@ -955,12 +938,17 @@ ol li::before {
position: relative;
color: inherit;
font-weight: 500;
font-size: 0.9rem;
}
.wallet-action .icon:first-of-type,
.integrated-action-button .icon:first-of-type {
height: 1.5rem;
width: 1.5rem;
height: 3rem;
width: 3rem;
padding: 0.95rem;
overflow: visible;
fill: var(--accent-color);
border-radius: 2rem;
background-color: var(--blue-accent-2);
}
.wallet-action .badge,
.integrated-action-button .badge {
@ -969,20 +957,13 @@ ol li::before {
}
.wallet-action {
gap: 0.5rem;
flex-direction: column;
text-align: center;
align-items: center;
font-size: 0.8rem;
white-space: initial;
padding: 0.8rem;
border: solid thin rgba(var(--text-color), 0.1);
border-radius: 0.5rem;
}
.wallet-action:hover {
border: solid thin rgba(var(--text-color), 0.5);
}
.wallet-action .icon {
margin-bottom: 0.8rem;
padding: 0;
}
.integrated-action-button {
@ -992,8 +973,8 @@ ol li::before {
.integrated-action-button .icon:first-of-type {
margin-right: 1rem;
}
.integrated-action-button .icon:last-of-type {
margin-left: 0.5rem;
.integrated-action-button span:last-of-type {
font-size: 1rem;
}
.cashier-status {
@ -1049,53 +1030,48 @@ ol li::before {
position: relative;
}
#recent_contacts {
gap: 0;
}
#saved_ids_list {
display: grid;
gap: 0.5rem;
gap: 1rem;
grid-template-columns: minmax(0, 1fr);
margin-bottom: 1.5rem;
}
.saved-id {
align-items: center;
grid-template-columns: auto 1fr;
gap: 0 0.8rem;
border-radius: 0.5rem;
padding: 0.5rem;
gap: 0 1rem;
padding: 0.5rem 0;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
background-color: rgba(var(--foreground-color), 1);
border-radius: 0.5rem;
}
.saved-id.highlight {
box-shadow: 0 0 0.1rem 0.1rem var(--accent-color) inset;
}
.saved-id .edit-saved {
grid-area: 1/1/3/2;
padding: 0.3rem;
position: relative;
}
.saved-id .edit-saved .icon {
position: absolute;
right: 0;
bottom: 0;
border-radius: 0.5rem;
padding: 0.2rem;
background-color: rgba(var(--background-color), 1);
}
.saved-id__initials {
display: flex;
align-items: center;
justify-content: center;
height: 2.4rem;
width: 2.4rem;
height: 2.5rem;
width: 2.5rem;
font-size: 1.2rem;
text-transform: uppercase;
color: rgba(var(--background-color), 1);
color: var(--accent-color);
font-weight: 700;
line-height: 1;
background-color: var(--accent-color);
justify-self: flex-start;
background-color: rgba(var(--text-color), 0.03);
border-radius: 2rem;
grid-area: 1/1/3/2;
}
.saved-id__title {
align-self: flex-end;
@ -1107,6 +1083,11 @@ ol li::before {
.saved-id__flo-id {
font-size: 0.8rem;
}
.saved-id__copy {
padding: 0.3rem 0.5rem;
border-radius: 0.3rem;
background-color: rgba(var(--text-color), 0.03);
}
#saved_ids_tip {
background-color: rgba(var(--text-color), 0.03);
@ -1187,25 +1168,15 @@ ol li::before {
font-size: 0.8rem;
}
#history .page__header {
margin-bottom: 0;
}
#history_applied_filters_wrapper {
position: -webkit-sticky;
position: sticky;
top: 0;
#history_applied_filters {
padding: 0.2rem 0 0.5rem 0;
background-color: rgba(var(--background-color), 1);
z-index: 1;
transition: background-color 0.3s;
}
.applied-filter {
display: flex;
align-items: center;
padding: 0.5rem 0.6rem 0.5rem 0.8rem;
border-radius: 1rem;
border-radius: 0.5rem;
border: solid thin rgba(var(--text-color), 0.2);
text-transform: uppercase;
font-size: 0.8rem;
@ -1219,6 +1190,17 @@ ol li::before {
margin-left: 0.3rem;
}
fieldset {
border: none;
padding: 0;
margin: 0;
}
fieldset legend {
font-size: 0.8rem;
font-weight: 500;
margin-bottom: 0.5rem;
}
.category-chip {
display: inline-flex;
align-items: center;
@ -1228,11 +1210,6 @@ ol li::before {
font-size: 0.8rem;
border: solid thin rgba(var(--text-color), 0.2);
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.category-chip:focus {
outline: solid var(--accent-color);
}
.category-chip input {
display: none;
@ -1266,6 +1243,7 @@ ol li::before {
display: grid;
gap: 2rem;
margin-top: 1.5rem;
padding-bottom: 3rem;
}
.transaction {
@ -1276,16 +1254,16 @@ ol li::before {
.transaction__amount {
white-space: nowrap;
}
.transaction.sent .icon {
fill: rgba(var(--text-color), 0.8);
.transaction.sent .icon--tx-type {
fill: var(--danger-color);
}
.transaction.sent .transaction__amount {
color: rgba(var(--text-color), 0.8);
color: var(--danger-color);
}
.transaction.sent .transaction__amount::before {
content: "- ";
}
.transaction.received .icon {
.transaction.received .icon--tx-type {
fill: var(--green);
}
.transaction.received .transaction__amount {
@ -1295,14 +1273,30 @@ ol li::before {
content: "+ ";
}
.transaction__icon {
display: flex;
position: relative;
grid-area: icon;
display: grid;
align-items: center;
justify-content: center;
grid-area: 1/1/3/2;
width: 2.5rem;
height: 2.5rem;
background-color: rgba(var(--text-color), 0.03);
border-radius: 2rem;
grid-area: 1/1/3/2;
}
.transaction__icon > * {
grid-area: 1/1;
}
.transaction__icon .icon--tx-type {
position: absolute;
background-color: inherit;
right: -0.3rem;
bottom: -0.3rem;
border-radius: 1rem;
padding: 0.2rem;
height: 1.5rem;
width: 1.5rem;
border: solid medium rgba(var(--foreground-color), 1);
}
.transaction__receiver {
font-weight: 500;
@ -1313,7 +1307,7 @@ ol li::before {
}
.transaction__amount {
font-size: 1rem;
font-weight: 700;
font-weight: 500;
grid-area: 1/3/3/4;
}
@ -1323,13 +1317,10 @@ ol li::before {
align-items: center;
grid-template-areas: "icon time amount" "icon receiver receiver" "icon txid txid";
}
.btc-tx:not(:last-of-type) {
padding-bottom: 1rem;
}
.btc-tx__amount {
white-space: nowrap;
}
.btc-tx.out .icon {
.btc-tx.out .icon--tx-type {
fill: var(--danger-color);
}
.btc-tx.out .btc-tx__amount {
@ -1338,7 +1329,7 @@ ol li::before {
.btc-tx.out .btc-tx__amount::before {
content: "- ";
}
.btc-tx.in .icon {
.btc-tx.in .icon--tx-type {
fill: var(--green);
}
.btc-tx.in .btc-tx__amount {
@ -1354,8 +1345,9 @@ ol li::before {
fill: var(--yellow);
}
.btc-tx__icon {
position: relative;
grid-area: icon;
display: flex;
display: grid;
align-items: center;
justify-content: center;
width: 2.5rem;
@ -1363,23 +1355,37 @@ ol li::before {
background-color: rgba(var(--text-color), 0.03);
border-radius: 2rem;
}
.btc-tx__icon > * {
grid-area: 1/1;
}
.btc-tx__icon .icon--tx-type {
position: absolute;
background-color: inherit;
right: -0.3rem;
bottom: -0.3rem;
border-radius: 1rem;
padding: 0.2rem;
height: 1.5rem;
width: 1.5rem;
border: solid medium rgba(var(--foreground-color), 1);
}
.btc-tx__receiver {
grid-area: receiver;
font-weight: 500;
}
.btc-tx__time {
grid-area: time;
font-size: 0.9rem;
font-size: 0.8rem;
color: rgba(var(--text-color), 0.8);
}
.btc-tx__amount {
grid-area: amount;
font-size: 1rem;
font-weight: 700;
font-weight: 500;
}
.btc-tx__id {
grid-area: txid;
font-size: 0.9rem;
font-size: 0.8rem;
color: rgba(var(--text-color), 0.8);
}
.btc-tx .unconfirmed-wrapper {
@ -1411,12 +1417,6 @@ ol li::before {
background-color: rgba(var(--foreground-color), 1);
}
#add_address_button {
border-radius: 0.5rem;
background-color: transparent;
border: solid 0.1rem var(--accent-color);
}
.user-action-result__icon {
justify-self: center;
height: 4rem;
@ -1561,6 +1561,9 @@ ol li::before {
color: var(--accent-color);
background-color: rgba(var(--foreground-color), 1);
}
.payment-request--pending {
padding: 0;
}
.wallet-request {
display: grid;
@ -1652,13 +1655,14 @@ ol li::before {
}
@media screen and (max-width: 40rem) {
.inner-page {
padding-bottom: 7rem;
#home {
padding-bottom: 3rem;
}
#main_navbar.hide-away {
bottom: 0;
left: 0;
right: 0;
#home > * {
padding: 0 1rem;
}
.integrated-action-button .icon:last-of-type {
margin-left: auto;
}
.nav-item--active .icon {
transform: translateY(50%);
@ -1670,6 +1674,9 @@ ol li::before {
.integrated-action-button .icon:last-of-type {
margin-left: auto;
}
.hide-on-mobile {
display: none;
}
}
@media screen and (min-width: 40rem) {
sm-popup {
@ -1682,51 +1689,39 @@ ol li::before {
align-items: center;
justify-content: center;
}
#main_card {
display: grid;
grid-template-columns: 10rem 1fr;
grid-template-rows: auto 1fr;
grid-template-areas: "header header" "navbar content";
.inner-page {
padding: 0 14vw;
}
#main_header {
grid-area: header;
padding: 1rem 1.5rem;
background-color: rgba(var(--foreground-color), 1);
}
#main_navbar {
height: 100%;
grid-area: navbar;
}
#main_navbar ul {
flex-direction: column;
gap: 0.3rem;
padding: 0.3rem;
}
.nav-item {
padding: 1rem;
padding-right: 2rem;
border-radius: 0.5rem;
flex-direction: row;
justify-content: start;
gap: 0.5rem;
font-size: 0.9rem;
opacity: 0.8;
}
.nav-item--active {
opacity: 1;
}
.nav-item__indicator {
width: 0.25rem;
height: 50%;
left: 0;
border-radius: 0 1rem 1rem 0;
bottom: auto;
padding: 1.5rem 3vw;
}
.card {
padding: 1.5rem;
}
.balance-card > * {
padding: 1.5rem;
#home {
grid-template-columns: 26rem 1fr;
gap: 4vw;
padding-right: 3vw;
}
#profile_popup {
--width: 32rem;
}
#notifications_panel {
position: absolute;
top: 100%;
left: auto;
bottom: auto;
right: 0;
border-radius: 0.5rem;
z-index: 10;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
border: solid 1px rgba(var(--text-color), 0.1);
background-color: rgba(var(--foreground-color), 1);
width: max(24rem, 100%);
}
#wallet_section {
padding: 0 3vw;
grid-row: 1/3;
}
#contact > * {
padding: 1rem 12vw;
@ -1735,10 +1730,16 @@ ol li::before {
padding: 0.5rem 12vw;
}
#saved_ids_list {
grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
gap: 1.5rem;
grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}
.inner-page {
padding: 1.5rem 14vw;
.hide-on-desktop {
display: none;
}
}
@media screen and (min-width: 68rem) {
#home {
grid-template-columns: 26rem 1fr 1fr;
}
}
@media (any-hover: hover) {
@ -1753,20 +1754,24 @@ ol li::before {
::-webkit-scrollbar-thumb:hover {
background: rgba(var(--text-color), 0.5);
}
.interact:not([disabled]) {
.button--primary:not([disabled]),
.button--danger:not([disabled]) {
transition: filter 0.3s;
}
.button--primary:not([disabled]):hover,
.button--danger:not([disabled]):hover {
filter: brightness(1.3);
}
.interact:not([disabled]),
button:not([disabled], .button--primary, .button--danger),
.button:not([disabled], .button--primary, .button--danger) {
transition: background-color 0.3s;
}
.interact:not([disabled]):hover {
.interact:not([disabled]):hover,
button:not([disabled], .button--primary, .button--danger):hover,
.button:not([disabled], .button--primary, .button--danger):hover {
background-color: rgba(var(--text-color), 0.06);
}
button:not([disabled]),
.button:not([disabled]) {
transition: background-color 0.3s, filter 0.3s;
}
button:not([disabled]):hover,
.button:not([disabled]):hover {
filter: contrast(2);
}
}
@supports (overflow: overlay) {
body {

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,12 @@
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
font-family: "Inter", sans-serif;
&:focus-visible {
outline: var(--accent-color) solid medium;
outline-offset: 0;
transition: outline-offset 0.3s;
}
}
:root {
font-size: clamp(1rem, 1.2vmax, 1.2rem);
@ -14,17 +19,20 @@ body {
}
body {
--accent-color: #4d77ff;
--text-color: 20, 20, 20;
--foreground-color: 252, 253, 255;
--background-color: 241, 243, 248;
--danger-color: rgb(255, 75, 75);
--accent-color: #234ebf;
--accent-color-rgb: 35, 78, 191;
--blue-accent-1: #f5f8ff;
--blue-accent-2: #f2f6ff;
--text-color: 58, 58, 58;
--foreground-color: 255, 255, 255;
--background-color: 243, 245, 250;
--danger-color: #ff6161;
--green: #1cad59;
--yellow: rgb(220, 165, 0);
scrollbar-width: thin;
scrollbar-gutter: stable;
color: rgba(var(--text-color), 1);
background-color: rgba(var(--background-color), 1);
background-color: rgba(var(--foreground-color), 1);
transition: background-color 0.3s;
position: relative;
display: flex;
@ -33,6 +41,9 @@ body {
body[data-theme="dark"] {
--accent-color: #a0b6ff;
--accent-color-rgb: 160, 182, 255;
--blue-accent-1: #f5f8ff10;
--blue-accent-2: #f2f6ff10;
--text-color: 220, 220, 220;
--foreground-color: 27, 28, 29;
--background-color: 21, 22, 22;
@ -62,18 +73,8 @@ strong {
a {
text-decoration: none;
color: var(--accent-color);
&:focus-visible {
box-shadow: 0 0 0 0.1rem rgba(var(--text-color), 1) inset;
}
}
a.button {
padding: 0.4rem 0.6rem;
border-radius: 0.3rem;
font-size: 0.9rem;
font-weight: 500;
color: inherit;
}
.button,
button {
user-select: none;
position: relative;
@ -87,19 +88,17 @@ button {
font-weight: 500;
white-space: nowrap;
padding: 0.8rem;
border-radius: 0.3rem;
border-radius: 0.5rem;
justify-content: center;
color: inherit;
&:focus-visible {
outline: var(--accent-color) solid medium;
}
min-width: max-content;
&:not(:disabled) {
cursor: pointer;
}
}
.button {
color: var(--accent-color);
background-color: rgba(var(--text-color), 0.06);
background-color: var(--blue-accent-1);
.icon {
fill: var(--accent-color);
}
@ -143,17 +142,12 @@ button:disabled {
opacity: 0.5;
}
a:any-link:focus-visible {
outline: rgba(var(--text-color), 1) 0.1rem solid;
}
details summary {
display: flex;
user-select: none;
cursor: pointer;
align-items: center;
justify-content: space-between;
color: var(--accent-color);
}
details[open] {
@ -175,23 +169,8 @@ sm-textarea {
}
}
}
sm-button {
--padding: 0.8rem;
&[variant="primary"] {
.icon {
fill: rgba(var(--background-color), 1);
}
}
&[disabled] {
.icon {
fill: rgba(var(--text-color), 0.6);
}
}
&.danger {
--background: var(--danger-color);
color: rgba(var(--background-color), 1);
}
sm-copy {
font-size: 0.9rem;
}
sm-spinner {
--size: 1rem;
@ -208,21 +187,23 @@ sm-option {
font-size: 0.9rem;
}
sm-chips {
--gap: 0;
background-color: rgba(var(--text-color), 0.06);
border-radius: 0.3rem;
padding: 0.3rem;
--gap: 0.3rem;
}
sm-chip {
font-size: 0.8rem;
--border-radius: 0.2rem;
user-select: none;
}
sm-copy {
position: relative;
font-size: 0.9rem;
--border-radius: 0.5rem;
--padding: 0.5rem 0.8rem;
--background: rgba(var(--text-color), 0.06);
user-select: none;
font-weight: 500;
&[selected] {
--background: var(--accent-color);
color: rgba(var(--foreground-color), 1);
}
}
ul,
ol {
ul {
list-style: none;
}
ol {
@ -403,7 +384,9 @@ ol {
.margin-right-0-5 {
margin-right: 0.5rem;
}
.margin-right-auto {
margin-right: auto;
}
.margin-left-0-5 {
margin-left: 0.5rem;
}
@ -540,16 +523,15 @@ ol {
.page {
height: 100%;
&__header {
position: sticky;
top: 0;
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
min-height: 5rem;
.grid {
margin-top: auto;
}
h1 {
font-size: 2rem;
}
background-color: rgba(var(--foreground-color), 1);
z-index: 1;
}
}
#confirmation_popup,
@ -671,12 +653,32 @@ ol {
}
#main_header {
display: grid;
gap: 1.5rem;
padding: 1rem 1rem;
gap: 1rem;
padding: 1rem;
align-items: center;
grid-template-columns: minmax(0, 1fr) auto;
grid-template-columns: 1fr auto auto auto;
min-height: 4rem;
}
#user_profile_button {
background-color: var(--blue-accent-1);
border-radius: 2rem;
font-size: 0.8rem;
padding: 0.6rem 0.8rem;
font-weight: 700;
}
#notifications_wrapper {
position: relative;
}
#notifications_panel {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
background-color: rgba(var(--foreground-color), 1);
padding: 1rem;
}
.logged-in-user-id {
background-color: rgba(var(--text-color), 0.06);
max-width: fit-content;
@ -691,62 +693,12 @@ ol {
height: 100%;
width: 100%;
transition: background-color 0.3s;
background-color: rgba(var(--background-color), 1);
&.nav-hidden {
.inner-page {
grid-area: 2/1/3/-1;
}
}
}
#main_navbar {
display: flex;
background-color: rgba(var(--foreground-color), 0.8);
ul {
display: flex;
height: 100%;
width: 100%;
li {
width: 100%;
}
}
}
.nav-item {
position: relative;
display: flex;
flex: 1;
width: 100%;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0.5rem 0.3rem;
color: var(--text-color);
font-size: 0.8rem;
font-weight: 500;
gap: 0.5rem;
.icon {
transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
&__title {
transition: opacity 0.2s,
transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
&--active {
color: var(--accent-color);
.icon {
fill: var(--accent-color);
}
}
&__indicator {
position: absolute;
bottom: 0;
width: 2rem;
height: 0.3rem;
background: var(--accent-color);
border-radius: 1rem 1rem 0 0;
z-index: 1;
}
}
.badge {
display: flex;
align-items: center;
@ -801,9 +753,44 @@ ol {
overflow-y: auto;
}
#home {
position: relative;
display: grid;
padding: 0;
gap: 3rem;
overflow-y: visible;
align-content: initial;
& > * {
align-content: flex-start;
}
}
#wallet_section {
position: relative;
display: flex;
flex-direction: column;
height: 100%;
gap: 1.5rem;
background-color: rgba(var(--accent-color-rgb), 0.02);
sm-chips {
display: flex;
justify-content: center;
}
sm-chip::part(chip) {
width: 8rem;
justify-content: center;
}
> * {
width: 100%;
}
&::before {
content: "";
position: absolute;
top: -10vmax;
left: 0;
width: 100%;
height: 10vmax;
background-color: inherit;
pointer-events: none;
}
}
#user,
#cashier {
@ -830,40 +817,28 @@ ol {
}
#wallet_cards_wrapper {
display: grid;
gap: 0.5rem;
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
align-items: flex-start;
grid-template-columns: 6rem 1fr;
background-color: rgba(var(--text-color), 0.06);
border-radius: 0.5rem;
padding: 0 0.2rem;
sm-input {
--background: transparent;
}
sm-select {
margin: 0.2rem 0;
--background: rgba(var(--foreground-color), 1);
&[open] {
z-index: 10;
}
}
}
.balance-card {
display: grid;
overflow: hidden;
border-radius: 0.8rem;
background-color: rgba(var(--foreground-color), 1);
background-color: rgba(var(--accent-color-rgb), 0.06);
border-radius: 0.5rem;
padding: 0.8rem;
font-size: 0.9rem;
& > * {
padding: 1rem;
gap: 1.5rem;
}
& > :last-child:not(:only-child) {
border-top: thin solid rgba(var(--text-color), 0.2);
}
.asset-icon {
height: 2.5rem;
width: 2.5rem;
padding: 0.6rem;
border-radius: 1.1rem;
margin-right: 0.8rem;
fill: rgba(var(--background-color), 1);
}
.asset-icon--rupee {
background-color: var(--green);
}
.asset-icon--flo {
fill: white;
background-color: #4d77ff;
}
.asset-icon--btc {
background-color: rgba(255, 173, 8);
font-weight: 500;
}
}
#rupee_balance,
@ -877,19 +852,26 @@ ol {
}
}
.actions-wrapper {
display: grid;
display: flex;
gap: 0.5rem;
grid-template-columns: repeat(auto-fill, minmax(4rem, 1fr));
> * {
flex: 1;
}
}
.wallet-action,
.integrated-action-button {
position: relative;
color: inherit;
font-weight: 500;
font-size: 0.9rem;
.icon:first-of-type {
height: 1.5rem;
width: 1.5rem;
height: 3rem;
width: 3rem;
padding: 0.95rem;
overflow: visible;
fill: var(--accent-color);
border-radius: 2rem;
background-color: var(--blue-accent-2);
}
.badge {
left: 0;
@ -897,20 +879,13 @@ ol {
}
}
.wallet-action {
gap: 0.5rem;
flex-direction: column;
text-align: center;
align-items: center;
font-size: 0.8rem;
white-space: initial;
padding: 0.8rem;
border: solid thin rgba(var(--text-color), 0.1);
border-radius: 0.5rem;
&:hover {
border: solid thin rgba(var(--text-color), 0.5);
}
.icon {
margin-bottom: 0.8rem;
}
padding: 0;
}
.integrated-action-button {
padding: 0;
@ -918,8 +893,8 @@ ol {
.icon:first-of-type {
margin-right: 1rem;
}
.icon:last-of-type {
margin-left: 0.5rem;
span:last-of-type {
font-size: 1rem;
}
}
.cashier-status {
@ -970,49 +945,43 @@ ol {
#contacts {
position: relative;
}
#recent_contacts {
gap: 0;
}
#saved_ids_list {
display: grid;
gap: 0.5rem;
gap: 1rem;
grid-template-columns: minmax(0, 1fr);
margin-bottom: 1.5rem;
}
.saved-id {
align-items: center;
grid-template-columns: auto 1fr;
gap: 0 0.8rem;
border-radius: 0.5rem;
padding: 0.5rem;
gap: 0 1rem;
padding: 0.5rem 0;
user-select: none;
background-color: rgba(var(--foreground-color), 1);
border-radius: 0.5rem;
&.highlight {
box-shadow: 0 0 0.1rem 0.1rem var(--accent-color) inset;
}
.edit-saved {
grid-area: 1/1/3/2;
padding: 0.3rem;
position: relative;
.icon {
position: absolute;
right: 0;
bottom: 0;
border-radius: 0.5rem;
padding: 0.2rem;
background-color: rgba(var(--background-color), 1);
}
}
&__initials {
display: flex;
align-items: center;
justify-content: center;
height: 2.4rem;
width: 2.4rem;
height: 2.5rem;
width: 2.5rem;
font-size: 1.2rem;
text-transform: uppercase;
color: rgba(var(--background-color), 1);
color: var(--accent-color);
font-weight: 700;
line-height: 1;
background-color: var(--accent-color);
justify-self: flex-start;
background-color: rgba(var(--text-color), 0.03);
border-radius: 2rem;
grid-area: 1/1/3/2;
}
&__title {
align-self: flex-end;
@ -1024,6 +993,11 @@ ol {
&__flo-id {
font-size: 0.8rem;
}
&__copy {
padding: 0.3rem 0.5rem;
border-radius: 0.3rem;
background-color: rgba(var(--text-color), 0.03);
}
}
#saved_ids_tip {
background-color: rgba(var(--text-color), 0.03);
@ -1101,25 +1075,14 @@ ol {
font-size: 0.8rem;
}
}
#history {
.page__header {
margin-bottom: 0;
}
}
#history_applied_filters_wrapper {
position: sticky;
top: 0;
#history_applied_filters {
padding: 0.2rem 0 0.5rem 0;
background-color: rgba(var(--background-color), 1);
z-index: 1;
transition: background-color 0.3s;
}
.applied-filter {
display: flex;
align-items: center;
padding: 0.5rem 0.6rem 0.5rem 0.8rem;
border-radius: 1rem;
border-radius: 0.5rem;
border: solid thin rgba(var(--text-color), 0.2);
text-transform: uppercase;
font-size: 0.8rem;
@ -1132,6 +1095,16 @@ ol {
margin-left: 0.3rem;
}
}
fieldset {
border: none;
padding: 0;
margin: 0;
legend {
font-size: 0.8rem;
font-weight: 500;
margin-bottom: 0.5rem;
}
}
.category-chip {
display: inline-flex;
align-items: center;
@ -1141,11 +1114,6 @@ ol {
font-size: 0.8rem;
border: solid thin rgba(var(--text-color), 0.2);
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
&:focus {
outline: solid var(--accent-color);
}
input {
display: none;
}
@ -1178,6 +1146,7 @@ ol {
display: grid;
gap: 2rem;
margin-top: 1.5rem;
padding-bottom: 3rem;
}
.transaction {
grid-template-columns: auto 1fr auto;
@ -1187,18 +1156,18 @@ ol {
white-space: nowrap;
}
&.sent {
.icon {
fill: rgba(var(--text-color), 0.8);
.icon--tx-type {
fill: var(--danger-color);
}
.transaction__amount {
color: rgba(var(--text-color), 0.8);
color: var(--danger-color);
&::before {
content: "- ";
}
}
}
&.received {
.icon {
.icon--tx-type {
fill: var(--green);
}
.transaction__amount {
@ -1209,14 +1178,30 @@ ol {
}
}
&__icon {
display: flex;
position: relative;
grid-area: icon;
display: grid;
align-items: center;
justify-content: center;
grid-area: 1/1/3/2;
width: 2.5rem;
height: 2.5rem;
background-color: rgba(var(--text-color), 0.03);
border-radius: 2rem;
grid-area: 1/1/3/2;
& > * {
grid-area: 1/1;
}
.icon--tx-type {
position: absolute;
background-color: inherit;
right: -0.3rem;
bottom: -0.3rem;
border-radius: 1rem;
padding: 0.2rem;
height: 1.5rem;
width: 1.5rem;
border: solid medium rgba(var(--foreground-color), 1);
}
}
&__receiver {
font-weight: 500;
@ -1227,7 +1212,7 @@ ol {
}
&__amount {
font-size: 1rem;
font-weight: 700;
font-weight: 500;
grid-area: 1/3/3/4;
}
}
@ -1236,14 +1221,11 @@ ol {
gap: 0.5rem 1rem;
align-items: center;
grid-template-areas: "icon time amount" "icon receiver receiver" "icon txid txid";
&:not(:last-of-type) {
padding-bottom: 1rem;
}
&__amount {
white-space: nowrap;
}
&.out {
.icon {
.icon--tx-type {
fill: var(--danger-color);
}
.btc-tx__amount {
@ -1254,7 +1236,7 @@ ol {
}
}
&.in {
.icon {
.icon--tx-type {
fill: var(--green);
}
.btc-tx__amount {
@ -1271,14 +1253,29 @@ ol {
}
}
&__icon {
position: relative;
grid-area: icon;
display: flex;
display: grid;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
background-color: rgba(var(--text-color), 0.03);
border-radius: 2rem;
& > * {
grid-area: 1/1;
}
.icon--tx-type {
position: absolute;
background-color: inherit;
right: -0.3rem;
bottom: -0.3rem;
border-radius: 1rem;
padding: 0.2rem;
height: 1.5rem;
width: 1.5rem;
border: solid medium rgba(var(--foreground-color), 1);
}
}
&__receiver {
grid-area: receiver;
@ -1286,17 +1283,17 @@ ol {
}
&__time {
grid-area: time;
font-size: 0.9rem;
font-size: 0.8rem;
color: rgba(var(--text-color), 0.8);
}
&__amount {
grid-area: amount;
font-size: 1rem;
font-weight: 700;
font-weight: 500;
}
&__id {
grid-area: txid;
font-size: 0.9rem;
font-size: 0.8rem;
color: rgba(var(--text-color), 0.8);
}
.unconfirmed-wrapper {
@ -1326,11 +1323,6 @@ ol {
border-radius: 3rem;
background-color: rgba(var(--foreground-color), 1);
}
#add_address_button {
border-radius: 0.5rem;
background-color: transparent;
border: solid 0.1rem var(--accent-color);
}
.user-action-result__icon {
justify-self: center;
height: 4rem;
@ -1448,6 +1440,9 @@ ol {
color: var(--accent-color);
background-color: rgba(var(--foreground-color), 1);
}
&--pending {
padding: 0;
}
}
.wallet-request {
display: grid;
@ -1545,14 +1540,15 @@ ol {
background-color: rgba(var(--text-color), 0.03);
}
@media screen and (max-width: 40rem) {
.inner-page {
padding-bottom: 7rem;
#home {
padding-bottom: 3rem;
> * {
padding: 0 1rem;
}
}
#main_navbar {
&.hide-away {
bottom: 0;
left: 0;
right: 0;
.integrated-action-button {
.icon:last-of-type {
margin-left: auto;
}
}
.nav-item {
@ -1571,6 +1567,9 @@ ol {
margin-left: auto;
}
}
.hide-on-mobile {
display: none;
}
}
@media screen and (min-width: 40rem) {
sm-popup {
@ -1583,55 +1582,39 @@ ol {
align-items: center;
justify-content: center;
}
#main_card {
display: grid;
grid-template-columns: 10rem 1fr;
grid-template-rows: auto 1fr;
grid-template-areas:
"header header"
"navbar content";
.inner-page {
padding: 0 14vw;
}
#main_header {
grid-area: header;
padding: 1rem 1.5rem;
background-color: rgba(var(--foreground-color), 1);
}
#main_navbar {
height: 100%;
grid-area: navbar;
ul {
flex-direction: column;
gap: 0.3rem;
padding: 0.3rem;
}
}
.nav-item {
padding: 1rem;
padding-right: 2rem;
border-radius: 0.5rem;
flex-direction: row;
justify-content: start;
gap: 0.5rem;
font-size: 0.9rem;
opacity: 0.8;
&--active {
opacity: 1;
}
&__indicator {
width: 0.25rem;
height: 50%;
left: 0;
border-radius: 0 1rem 1rem 0;
bottom: auto;
}
padding: 1.5rem 3vw;
}
.card {
padding: 1.5rem;
}
.balance-card {
& > * {
padding: 1.5rem;
}
#home {
grid-template-columns: 26rem 1fr;
gap: 4vw;
padding-right: 3vw;
}
#profile_popup {
--width: 32rem;
}
#notifications_panel {
position: absolute;
top: 100%;
left: auto;
bottom: auto;
right: 0;
border-radius: 0.5rem;
z-index: 10;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
border: solid 1px rgba(var(--text-color), 0.1);
background-color: rgba(var(--foreground-color), 1);
width: max(24rem, 100%);
}
#wallet_section {
padding: 0 3vw;
grid-row: 1/3;
}
#contact {
& > * {
@ -1642,10 +1625,16 @@ ol {
}
}
#saved_ids_list {
grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
gap: 1.5rem;
grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}
.inner-page {
padding: 1.5rem 14vw;
.hide-on-desktop {
display: none;
}
}
@media screen and (min-width: 68rem) {
#home {
grid-template-columns: 26rem 1fr 1fr;
}
}
@media (any-hover: hover) {
@ -1661,19 +1650,21 @@ ol {
background: rgba(var(--text-color), 0.5);
}
}
.interact:not([disabled]) {
.button--primary:not([disabled]),
.button--danger:not([disabled]) {
transition: filter 0.3s;
&:hover {
filter: brightness(1.3);
}
}
.interact:not([disabled]),
button:not([disabled], .button--primary, .button--danger),
.button:not([disabled], .button--primary, .button--danger) {
transition: background-color 0.3s;
&:hover {
background-color: rgba(var(--text-color), 0.06);
}
}
button:not([disabled]),
.button:not([disabled]) {
transition: background-color 0.3s, filter 0.3s;
&:hover {
filter: contrast(2);
}
}
}
@supports (overflow: overlay) {

1911
index.html

File diff suppressed because one or more lines are too long

747
scripts/btcOperator.js Normal file
View File

@ -0,0 +1,747 @@
(function (EXPORTS) { //btcOperator v1.0.14b
/* BTC Crypto and API Operator */
const btcOperator = EXPORTS;
//This library uses API provided by chain.so (https://chain.so/)
const URL = "https://chain.so/api/v2/";
const fetch_api = btcOperator.fetch = function (api) {
return new Promise((resolve, reject) => {
console.debug(URL + api);
fetch(URL + api).then(response => {
response.json()
.then(result => result.status === "success" ? resolve(result) : reject(result))
.catch(error => reject(error))
}).catch(error => reject(error))
})
};
const SATOSHI_IN_BTC = 1e8;
function get_fee_rate() {
return new Promise((resolve, reject) => {
fetch('https://api.blockchain.info/mempool/fees').then(response => {
if (response.ok)
response.json()
.then(result => resolve(parseFloat((result.regular / SATOSHI_IN_BTC).toFixed(8))))
.catch(error => reject(error));
else
reject(response);
}).catch(error => reject(error))
})
}
const broadcastTx = btcOperator.broadcastTx = rawTxHex => new Promise((resolve, reject) => {
let url = 'https://coinb.in/api/?uid=1&key=12345678901234567890123456789012&setmodule=bitcoin&request=sendrawtransaction';
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: "rawtx=" + rawTxHex
}).then(response => {
response.text().then(resultText => {
let r = resultText.match(/<result>.*<\/result>/);
if (!r)
reject(resultText);
else {
r = r.pop().replace('<result>', '').replace('</result>', '');
if (r == '1') {
let txid = resultText.match(/<txid>.*<\/txid>/).pop().replace('<txid>', '').replace('</txid>', '');
resolve(txid);
} else if (r == '0') {
let error = resultText.match(/<response>.*<\/response>/).pop().replace('<response>', '').replace('</response>', '');
reject(decodeURIComponent(error.replace(/\+/g, " ")));
} else reject(resultText);
}
}).catch(error => reject(error))
}).catch(error => reject(error))
});
Object.defineProperties(btcOperator, {
newKeys: {
get: () => {
let r = coinjs.newKeys();
r.segwitAddress = coinjs.segwitAddress(r.pubkey).address;
r.bech32Address = coinjs.bech32Address(r.pubkey).address;
return r;
}
},
pubkey: {
value: key => key.length >= 66 ? key : (key.length == 64 ? coinjs.newPubkey(key) : coinjs.wif2pubkey(key).pubkey)
},
address: {
value: (key, prefix = undefined) => coinjs.pubkey2address(btcOperator.pubkey(key), prefix)
},
segwitAddress: {
value: key => coinjs.segwitAddress(btcOperator.pubkey(key)).address
},
bech32Address: {
value: key => coinjs.bech32Address(btcOperator.pubkey(key)).address
}
});
coinjs.compressed = true;
const verifyKey = btcOperator.verifyKey = function (addr, key) {
if (!addr || !key)
return undefined;
switch (coinjs.addressDecode(addr).type) {
case "standard":
return btcOperator.address(key) === addr;
case "multisig":
return btcOperator.segwitAddress(key) === addr;
case "bech32":
return btcOperator.bech32Address(key) === addr;
default:
return null;
}
}
const validateAddress = btcOperator.validateAddress = function (addr) {
if (!addr)
return undefined;
let type = coinjs.addressDecode(addr).type;
if (["standard", "multisig", "bech32", "multisigBech32"].includes(type))
return type;
else
return false;
}
btcOperator.multiSigAddress = function (pubKeys, minRequired, bech32 = true) {
if (!Array.isArray(pubKeys))
throw "pubKeys must be an array of public keys";
else if (pubKeys.length < minRequired)
throw "minimum required should be less than the number of pubKeys";
if (bech32)
return coinjs.pubkeys2MultisigAddressBech32(pubKeys, minRequired);
else
return coinjs.pubkeys2MultisigAddress(pubKeys, minRequired);
}
//convert from one blockchain to another blockchain (target version)
btcOperator.convert = {};
btcOperator.convert.wif = function (source_wif, target_version = coinjs.priv) {
let keyHex = decodeLegacy(source_wif).hex;
if (!keyHex || keyHex.length < 66 || !/01$/.test(keyHex))
return null;
else
return encodeLegacy(keyHex, target_version);
}
btcOperator.convert.legacy2legacy = function (source_addr, target_version = coinjs.pub) {
let rawHex = decodeLegacy(source_addr).hex;
if (!rawHex)
return null;
else
return encodeLegacy(rawHex, target_version);
}
btcOperator.convert.legacy2bech = function (source_addr, target_version = coinjs.bech32.version, target_hrp = coinjs.bech32.hrp) {
let rawHex = decodeLegacy(source_addr).hex;
if (!rawHex)
return null;
else
return encodeBech32(rawHex, target_version, target_hrp);
}
btcOperator.convert.bech2bech = function (source_addr, target_version = coinjs.bech32.version, target_hrp = coinjs.bech32.hrp) {
let rawHex = decodeBech32(source_addr).hex;
if (!rawHex)
return null;
else
return encodeBech32(rawHex, target_version, target_hrp);
}
btcOperator.convert.bech2legacy = function (source_addr, target_version = coinjs.pub) {
let rawHex = decodeBech32(source_addr).hex;
if (!rawHex)
return null;
else
return encodeLegacy(rawHex, target_version);
}
function decodeLegacy(source) {
var decode = coinjs.base58decode(source);
var raw = decode.slice(0, decode.length - 4),
checksum = decode.slice(decode.length - 4);
var hash = Crypto.SHA256(Crypto.SHA256(raw, {
asBytes: true
}), {
asBytes: true
});
if (hash[0] != checksum[0] || hash[1] != checksum[1] || hash[2] != checksum[2] || hash[3] != checksum[3])
return null;
let version = raw.shift();
return {
version: version,
hex: Crypto.util.bytesToHex(raw)
}
}
function encodeLegacy(hex, version) {
var bytes = Crypto.util.hexToBytes(hex);
bytes.unshift(version);
var hash = Crypto.SHA256(Crypto.SHA256(bytes, {
asBytes: true
}), {
asBytes: true
});
var checksum = hash.slice(0, 4);
return coinjs.base58encode(bytes.concat(checksum));
}
function decodeBech32(source) {
let decode = coinjs.bech32_decode(source);
if (!decode)
return null;
var raw = decode.data;
let version = raw.shift();
raw = coinjs.bech32_convert(raw, 5, 8, false);
return {
hrp: decode.hrp,
version: version,
hex: Crypto.util.bytesToHex(raw)
}
}
function encodeBech32(hex, version, hrp) {
var bytes = Crypto.util.hexToBytes(hex);
bytes = coinjs.bech32_convert(bytes, 8, 5, true);
bytes.unshift(version)
return coinjs.bech32_encode(hrp, bytes);
}
//BTC blockchain APIs
btcOperator.getBalance = addr => new Promise((resolve, reject) => {
fetch_api(`get_address_balance/BTC/${addr}`)
.then(result => resolve(parseFloat(result.data.confirmed_balance)))
.catch(error => reject(error))
});
const BASE_TX_SIZE = 12,
BASE_INPUT_SIZE = 41,
LEGACY_INPUT_SIZE = 107,
BECH32_INPUT_SIZE = 27,
BECH32_MULTISIG_INPUT_SIZE = 35,
SEGWIT_INPUT_SIZE = 59,
MULTISIG_INPUT_SIZE_ES = 351,
BASE_OUTPUT_SIZE = 9,
LEGACY_OUTPUT_SIZE = 25,
BECH32_OUTPUT_SIZE = 23,
BECH32_MULTISIG_OUTPUT_SIZE = 34,
SEGWIT_OUTPUT_SIZE = 23;
function _redeemScript(addr, key) {
let decode = coinjs.addressDecode(addr);
switch (decode.type) {
case "standard":
return false;
case "multisig":
return key ? coinjs.segwitAddress(btcOperator.pubkey(key)).redeemscript : null;
case "bech32":
return decode.redeemscript;
default:
return null;
}
}
function _sizePerInput(addr, rs) {
switch (coinjs.addressDecode(addr).type) {
case "standard":
return BASE_INPUT_SIZE + LEGACY_INPUT_SIZE;
case "bech32":
return BASE_INPUT_SIZE + BECH32_INPUT_SIZE;
case "multisigBech32":
return BASE_INPUT_SIZE + BECH32_MULTISIG_INPUT_SIZE;
case "multisig":
switch (coinjs.script().decodeRedeemScript(rs).type) {
case "segwit__":
return BASE_INPUT_SIZE + SEGWIT_INPUT_SIZE;
case "multisig__":
return BASE_INPUT_SIZE + MULTISIG_INPUT_SIZE_ES;
default:
return null;
};
default:
return null;
}
}
function _sizePerOutput(addr) {
switch (coinjs.addressDecode(addr).type) {
case "standard":
return BASE_OUTPUT_SIZE + LEGACY_OUTPUT_SIZE;
case "bech32":
return BASE_OUTPUT_SIZE + BECH32_OUTPUT_SIZE;
case "multisigBech32":
return BASE_OUTPUT_SIZE + BECH32_MULTISIG_OUTPUT_SIZE;
case "multisig":
return BASE_OUTPUT_SIZE + SEGWIT_OUTPUT_SIZE;
default:
return null;
}
}
function validateTxParameters(parameters) {
let invalids = [];
//sender-ids
if (parameters.senders) {
if (!Array.isArray(parameters.senders))
parameters.senders = [parameters.senders];
parameters.senders.forEach(id => !validateAddress(id) ? invalids.push(id) : null);
if (invalids.length)
throw "Invalid senders:" + invalids;
}
if (parameters.privkeys) {
if (!Array.isArray(parameters.privkeys))
parameters.privkeys = [parameters.privkeys];
if (parameters.senders.length != parameters.privkeys.length)
throw "Array length for senders and privkeys should be equal";
parameters.senders.forEach((id, i) => {
let key = parameters.privkeys[i];
if (!verifyKey(id, key)) //verify private-key
invalids.push(id);
if (key.length === 64) //convert Hex to WIF if needed
parameters.privkeys[i] = coinjs.privkey2wif(key);
});
if (invalids.length)
throw "Invalid keys:" + invalids;
}
//receiver-ids (and change-id)
if (!Array.isArray(parameters.receivers))
parameters.receivers = [parameters.receivers];
parameters.receivers.forEach(id => !validateAddress(id) ? invalids.push(id) : null);
if (invalids.length)
throw "Invalid receivers:" + invalids;
if (parameters.change_address && !validateAddress(parameters.change_address))
throw "Invalid change_address:" + parameters.change_address;
//fee and amounts
if ((typeof parameters.fee !== "number" || parameters.fee <= 0) && parameters.fee !== null) //fee = null (auto calc)
throw "Invalid fee:" + parameters.fee;
if (!Array.isArray(parameters.amounts))
parameters.amounts = [parameters.amounts];
if (parameters.receivers.length != parameters.amounts.length)
throw "Array length for receivers and amounts should be equal";
parameters.amounts.forEach(a => typeof a !== "number" || a <= 0 ? invalids.push(a) : null);
if (invalids.length)
throw "Invalid amounts:" + invalids;
//return
return parameters;
}
function createTransaction(senders, redeemScripts, receivers, amounts, fee, change_address, fee_from_receiver) {
return new Promise((resolve, reject) => {
let total_amount = parseFloat(amounts.reduce((t, a) => t + a, 0).toFixed(8));
const tx = coinjs.transaction();
let output_size = addOutputs(tx, receivers, amounts, change_address);
addInputs(tx, senders, redeemScripts, total_amount, fee, output_size, fee_from_receiver).then(result => {
if (result.change_amount > 0 && result.change_amount > result.fee) //add change amount if any (ignore dust change)
tx.outs[tx.outs.length - 1].value = parseInt(result.change_amount * SATOSHI_IN_BTC); //values are in satoshi
if (fee_from_receiver) { //deduce fee from receivers if fee_from_receiver
let fee_remaining = parseInt(result.fee * SATOSHI_IN_BTC);
for (let i = 0; i < tx.outs.length - 1 && fee_remaining > 0; i++) {
if (fee_remaining < tx.outs[i].value) {
tx.outs[i].value -= fee_remaining;
fee_remaining = 0;
} else {
fee_remaining -= tx.outs[i].value;
tx.outs[i].value = 0;
}
}
if (fee_remaining > 0)
return reject("Send amount is less than fee");
}
tx.outs = tx.outs.filter(o => o.value != 0); //remove all output with value 0
result.output_size = output_size;
result.output_amount = total_amount - (fee_from_receiver ? result.fee : 0);
result.total_size = BASE_TX_SIZE + output_size + result.input_size;
result.transaction = tx;
resolve(result);
}).catch(error => reject(error))
})
}
function addInputs(tx, senders, redeemScripts, total_amount, fee, output_size, fee_from_receiver) {
return new Promise((resolve, reject) => {
if (fee !== null) {
addUTXOs(tx, senders, redeemScripts, fee_from_receiver ? total_amount : total_amount + fee, false).then(result => {
result.fee = fee;
resolve(result);
}).catch(error => reject(error))
} else {
get_fee_rate().then(fee_rate => {
let net_fee = BASE_TX_SIZE * fee_rate;
net_fee += (output_size * fee_rate);
(fee_from_receiver ?
addUTXOs(tx, senders, redeemScripts, total_amount, false) :
addUTXOs(tx, senders, redeemScripts, total_amount + net_fee, fee_rate)
).then(result => {
result.fee = parseFloat((net_fee + (result.input_size * fee_rate)).toFixed(8));
result.fee_rate = fee_rate;
resolve(result);
}).catch(error => reject(error))
}).catch(error => reject(error))
}
})
}
function addUTXOs(tx, senders, redeemScripts, required_amount, fee_rate, rec_args = {}) {
return new Promise((resolve, reject) => {
required_amount = parseFloat(required_amount.toFixed(8));
if (typeof rec_args.n === "undefined") {
rec_args.n = 0;
rec_args.input_size = 0;
rec_args.input_amount = 0;
}
if (required_amount <= 0)
return resolve({
input_size: rec_args.input_size,
input_amount: rec_args.input_amount,
change_amount: required_amount * -1 //required_amount will be -ve of change_amount
});
else if (rec_args.n >= senders.length)
return reject("Insufficient Balance");
let addr = senders[rec_args.n],
rs = redeemScripts[rec_args.n];
let addr_type = coinjs.addressDecode(addr).type;
let size_per_input = _sizePerInput(addr, rs);
fetch_api(`get_tx_unspent/BTC/${addr}`).then(result => {
let utxos = result.data.txs;
console.debug("add-utxo", addr, rs, required_amount, utxos);
for (let i = 0; i < utxos.length && required_amount > 0; i++) {
if (!utxos[i].confirmations) //ignore unconfirmed utxo
continue;
var script;
if (!rs || !rs.length) //legacy script
script = utxos[i].script_hex;
else if (((rs.match(/^00/) && rs.length == 44)) || (rs.length == 40 && rs.match(/^[a-f0-9]+$/gi)) || addr_type === 'multisigBech32') {
//redeemScript for segwit/bech32 and multisig (bech32)
let s = coinjs.script();
s.writeBytes(Crypto.util.hexToBytes(rs));
s.writeOp(0);
s.writeBytes(coinjs.numToBytes((utxos[i].value * SATOSHI_IN_BTC).toFixed(0), 8));
script = Crypto.util.bytesToHex(s.buffer);
} else //redeemScript for multisig (segwit)
script = rs;
tx.addinput(utxos[i].txid, utxos[i].output_no, script, 0xfffffffd /*sequence*/); //0xfffffffd for Replace-by-fee
//update track values
rec_args.input_size += size_per_input;
rec_args.input_amount += parseFloat(utxos[i].value);
required_amount -= parseFloat(utxos[i].value);
if (fee_rate) //automatic fee calculation (dynamic)
required_amount += size_per_input * fee_rate;
}
rec_args.n += 1;
addUTXOs(tx, senders, redeemScripts, required_amount, fee_rate, rec_args)
.then(result => resolve(result))
.catch(error => reject(error))
}).catch(error => reject(error))
})
}
function addOutputs(tx, receivers, amounts, change_address) {
let size = 0;
for (let i in receivers) {
tx.addoutput(receivers[i], amounts[i]);
size += _sizePerOutput(receivers[i]);
}
tx.addoutput(change_address, 0);
size += _sizePerOutput(change_address);
return size;
}
/*
function autoFeeCalc(tx) {
return new Promise((resolve, reject) => {
get_fee_rate().then(fee_rate => {
let tx_size = tx.size();
for (var i = 0; i < this.ins.length; i++)
switch (tx.extractScriptKey(i).type) {
case 'scriptpubkey':
tx_size += SIGN_SIZE;
break;
case 'segwit':
case 'multisig':
tx_size += SIGN_SIZE * 0.25;
break;
default:
console.warn('Unknown script-type');
tx_size += SIGN_SIZE;
}
resolve(tx_size * fee_rate);
}).catch(error => reject(error))
})
}
function editFee(tx, current_fee, target_fee, index = -1) {
//values are in satoshi
index = parseInt(index >= 0 ? index : tx.outs.length - index);
if (index < 0 || index >= tx.outs.length)
throw "Invalid index";
let edit_value = parseInt(current_fee - target_fee), //rip of any decimal places
current_value = tx.outs[index].value; //could be BigInterger
if (edit_value < 0 && edit_value > current_value)
throw "Insufficient value at vout";
tx.outs[index].value = current_value instanceof BigInteger ?
current_value.add(new BigInteger('' + edit_value)) : parseInt(current_value + edit_value);
}
*/
btcOperator.sendTx = function (senders, privkeys, receivers, amounts, fee = null, options = {}) {
return new Promise((resolve, reject) => {
createSignedTx(senders, privkeys, receivers, amounts, fee, options).then(result => {
debugger;
broadcastTx(result.transaction.serialize())
.then(txid => resolve(txid))
.catch(error => reject(error));
}).catch(error => reject(error))
})
}
const createSignedTx = btcOperator.createSignedTx = function (senders, privkeys, receivers, amounts, fee = null, options = {}) {
return new Promise((resolve, reject) => {
try {
({
senders,
privkeys,
receivers,
amounts
} = validateTxParameters({
senders,
privkeys,
receivers,
amounts,
fee,
change_address: options.change_address
}));
} catch (e) {
return reject(e)
}
let redeemScripts = [],
wif_keys = [];
for (let i in senders) {
let rs = _redeemScript(senders[i], privkeys[i]); //get redeem-script (segwit/bech32)
redeemScripts.push(rs);
rs === false ? wif_keys.unshift(privkeys[i]) : wif_keys.push(privkeys[i]); //sorting private-keys (wif)
}
if (redeemScripts.includes(null)) //TODO: segwit
return reject("Unable to get redeem-script");
//create transaction
createTransaction(senders, redeemScripts, receivers, amounts, fee, options.change_address || senders[0], options.fee_from_receiver).then(result => {
let tx = result.transaction;
console.debug("Unsigned:", tx.serialize());
new Set(wif_keys).forEach(key => console.debug("Signing key:", key, tx.sign(key, 1 /*sighashtype*/))); //Sign the tx using private key WIF
console.debug("Signed:", tx.serialize());
resolve(result);
}).catch(error => reject(error));
})
}
btcOperator.createTx = function (senders, receivers, amounts, fee = null, options = {}) {
return new Promise((resolve, reject) => {
try {
({
senders,
receivers,
amounts
} = validateTxParameters({
senders,
receivers,
amounts,
fee,
change_address: options.change_address
}));
} catch (e) {
return reject(e)
}
let redeemScripts = senders.map(id => _redeemScript(id));
if (redeemScripts.includes(null)) //TODO: segwit
return reject("Unable to get redeem-script");
//create transaction
createTransaction(senders, redeemScripts, receivers, amounts, fee, options.change_address || senders[0], options.fee_from_receiver).then(result => {
result.tx_hex = result.transaction.serialize();
delete result.transaction;
resolve(result);
}).catch(error => reject(error))
})
}
btcOperator.createMultiSigTx = function (sender, redeemScript, receivers, amounts, fee = null, options = {}) {
return new Promise((resolve, reject) => {
//validate tx parameters
let addr_type = validateAddress(sender);
if (!(["multisig", "multisigBech32"].includes(addr_type)))
return reject("Invalid sender (multisig):" + sender);
else {
let script = coinjs.script();
let decode = (addr_type == "multisig") ?
script.decodeRedeemScript(redeemScript) :
script.decodeRedeemScriptBech32(redeemScript);
if (!decode || decode.address !== sender)
return reject("Invalid redeem-script");
}
try {
({
receivers,
amounts
} = validateTxParameters({
receivers,
amounts,
fee,
change_address: options.change_address
}));
} catch (e) {
return reject(e)
}
//create transaction
createTransaction([sender], [redeemScript], receivers, amounts, fee, options.change_address || sender, options.fee_from_receiver).then(result => {
result.tx_hex = result.transaction.serialize();
delete result.transaction;
resolve(result);
}).catch(error => reject(error))
})
}
function deserializeTx(tx) {
if (typeof tx === 'string' || Array.isArray(tx)) {
try {
tx = coinjs.transaction().deserialize(tx);
} catch {
throw "Invalid transaction hex";
}
} else if (typeof tx !== 'object' || typeof tx.sign !== 'function')
throw "Invalid transaction object";
return tx;
}
btcOperator.signTx = function (tx, privkeys, sighashtype = 1) {
tx = deserializeTx(tx);
if (!Array.isArray(privkeys))
privkeys = [privkeys];
for (let i in privkeys)
if (privkeys[i].length === 64)
privkeys[i] = coinjs.privkey2wif(privkeys[i]);
new Set(privkeys).forEach(key => tx.sign(key, sighashtype)); //Sign the tx using private key WIF
return tx.serialize();
}
const checkSigned = btcOperator.checkSigned = function (tx, bool = true) {
tx = deserializeTx(tx);
let n = [];
for (let i in tx.ins) {
var s = tx.extractScriptKey(i);
if (s['type'] !== 'multisig' && s['type'] !== 'multisig_bech32')
n.push(s.signed == 'true' || (tx.witness[i] && tx.witness[i].length == 2))
else {
var rs = coinjs.script().decodeRedeemScript(s.script); //will work for bech32 too, as only address is diff
let x = {
s: s['signatures'],
r: rs['signaturesRequired'],
t: rs['pubkeys'].length
};
if (x.r > x.t)
throw "signaturesRequired is more than publicKeys";
else if (x.s < x.r)
n.push(x);
else
n.push(true);
}
}
return bool ? !(n.filter(x => x !== true).length) : n;
}
btcOperator.checkIfSameTx = function (tx1, tx2) {
tx1 = deserializeTx(tx1);
tx2 = deserializeTx(tx2);
if (tx1.ins.length !== tx2.ins.length || tx1.outs.length !== tx2.outs.length)
return false;
for (let i = 0; i < tx1.ins.length; i++)
if (tx1.ins[i].outpoint.hash !== tx2.ins[i].outpoint.hash || tx1.ins[i].outpoint.index !== tx2.ins[i].outpoint.index)
return false;
for (let i = 0; i < tx2.ins.length; i++)
if (tx1.outs[i].value !== tx2.outs[i].value || Crypto.util.bytesToHex(tx1.outs[i].script.buffer) !== Crypto.util.bytesToHex(tx2.outs[i].script.buffer))
return false;
return true;
}
const getTxOutput = (txid, i) => new Promise((resolve, reject) => {
fetch_api(`get_tx_outputs/BTC/${txid}/${i}`)
.then(result => resolve(result.data.outputs))
.catch(error => reject(error))
});
btcOperator.parseTransaction = function (tx) {
return new Promise((resolve, reject) => {
tx = deserializeTx(tx);
let result = {};
let promises = [];
//Parse Inputs
for (let i = 0; i < tx.ins.length; i++)
promises.push(getTxOutput(tx.ins[i].outpoint.hash, tx.ins[i].outpoint.index));
Promise.all(promises).then(inputs => {
result.inputs = inputs.map(inp => Object({
address: inp.address,
value: parseFloat(inp.value)
}));
let signed = checkSigned(tx, false);
result.inputs.forEach((inp, i) => inp.signed = signed[i]);
//Parse Outputs
result.outputs = tx.outs.map(out => {
var address;
switch (out.script.chunks[0]) {
case 0: //bech32, multisig-bech32
address = encodeBech32(Crypto.util.bytesToHex(out.script.chunks[1]), coinjs.bech32.version, coinjs.bech32.hrp);
break;
case 169: //segwit, multisig-segwit
address = encodeLegacy(Crypto.util.bytesToHex(out.script.chunks[1]), coinjs.multisig);
break;
case 118: //legacy
address = encodeLegacy(Crypto.util.bytesToHex(out.script.chunks[2]), coinjs.pub);
}
return {
address,
value: parseFloat(out.value / SATOSHI_IN_BTC)
}
});
//Parse Totals
result.total_input = parseFloat(result.inputs.reduce((a, inp) => a += inp.value, 0).toFixed(8));
result.total_output = parseFloat(result.outputs.reduce((a, out) => a += out.value, 0).toFixed(8));
result.fee = parseFloat((result.total_input - result.total_output).toFixed(8));
resolve(result);
}).catch(error => reject(error))
})
}
btcOperator.transactionID = function (tx) {
tx = deserializeTx(tx);
let clone = coinjs.clone(tx);
clone.witness = null;
let raw_bytes = Crypto.util.hexToBytes(clone.serialize());
let txid = Crypto.SHA256(Crypto.SHA256(raw_bytes, { asBytes: true }), { asBytes: true }).reverse();
return Crypto.util.bytesToHex(txid);
}
btcOperator.getTx = txid => new Promise((resolve, reject) => {
fetch_api(`get_tx/BTC/${txid}`)
.then(result => resolve(result.data))
.catch(error => reject(error))
});
btcOperator.getAddressData = addr => new Promise((resolve, reject) => {
fetch_api(`address/BTC/${addr}`)
.then(result => resolve(result.data))
.catch(error => reject(error))
});
btcOperator.getBlock = block => new Promise((resolve, reject) => {
fetch_api(`get_block/BTC/${block}`)
.then(result => resolve(result.data))
.catch(error => reject(error))
});
})('object' === typeof module ? module.exports : window.btcOperator = {});

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
(function(EXPORTS) { //floBlockchainAPI v2.3.3b
(function (EXPORTS) { //floBlockchainAPI v2.3.3d
/* FLO Blockchain Operator to send/receive data from blockchain using API calls*/
'use strict';
const floBlockchainAPI = EXPORTS;
@ -11,6 +11,7 @@
},
sendAmt: 0.001,
fee: 0.0005,
minChangeAmt: 0.0005,
receiverID: floGlobals.adminID
};
@ -102,7 +103,7 @@
});
//Promised function to get data from API
const promisedAPI = floBlockchainAPI.promisedAPI = floBlockchainAPI.fetch = function(apicall) {
const promisedAPI = floBlockchainAPI.promisedAPI = floBlockchainAPI.fetch = function (apicall) {
return new Promise((resolve, reject) => {
//console.log(apicall);
fetch_api(apicall)
@ -112,7 +113,7 @@
}
//Get balance for the given Address
const getBalance = floBlockchainAPI.getBalance = function(addr) {
const getBalance = floBlockchainAPI.getBalance = function (addr) {
return new Promise((resolve, reject) => {
promisedAPI(`api/addr/${addr}/balance`)
.then(balance => resolve(parseFloat(balance)))
@ -121,7 +122,7 @@
}
//Send Tx to blockchain
const sendTx = floBlockchainAPI.sendTx = function(senderAddr, receiverAddr, sendAmt, privKey, floData = '', strict_utxo = true) {
const sendTx = floBlockchainAPI.sendTx = function (senderAddr, receiverAddr, sendAmt, privKey, floData = '', strict_utxo = true) {
return new Promise((resolve, reject) => {
if (!floCrypto.validateASCII(floData))
return reject("Invalid FLO_Data: only printable ASCII characters are allowed");
@ -171,7 +172,7 @@
else {
trx.addoutput(receiverAddr, sendAmt);
var change = utxoAmt - sendAmt - fee;
if (change > 0)
if (change > DEFAULT.minChangeAmt)
trx.addoutput(senderAddr, change);
trx.addflodata(floData.replace(/\n/g, ' '));
var signedTxHash = trx.sign(privKey, 1);
@ -187,7 +188,7 @@
}
//Write Data into blockchain
floBlockchainAPI.writeData = function(senderAddr, data, privKey, receiverAddr = DEFAULT.receiverID, options = {}) {
floBlockchainAPI.writeData = function (senderAddr, data, privKey, receiverAddr = DEFAULT.receiverID, options = {}) {
let strict_utxo = options.strict_utxo === false ? false : true,
sendAmt = isNaN(options.sendAmt) ? DEFAULT.sendAmt : options.sendAmt;
return new Promise((resolve, reject) => {
@ -200,7 +201,7 @@
}
//merge all UTXOs of a given floID into a single UTXO
floBlockchainAPI.mergeUTXOs = function(floID, privKey, floData = '') {
floBlockchainAPI.mergeUTXOs = function (floID, privKey, floData = '') {
return new Promise((resolve, reject) => {
if (!floCrypto.validateFloID(floID))
return reject(`Invalid floID`);
@ -234,7 +235,7 @@
* @param {boolean} preserveRatio (optional) preserve ratio or equal contribution
* @return {Promise}
*/
floBlockchainAPI.writeDataMultiple = function(senderPrivKeys, data, receivers = [DEFAULT.receiverID], preserveRatio = true) {
floBlockchainAPI.writeDataMultiple = function (senderPrivKeys, data, receivers = [DEFAULT.receiverID], preserveRatio = true) {
return new Promise((resolve, reject) => {
if (!Array.isArray(senderPrivKeys))
return reject("Invalid senderPrivKeys: SenderPrivKeys must be Array");
@ -266,7 +267,7 @@
* @param {string} floData FLO data of the txn
* @return {Promise}
*/
const sendTxMultiple = floBlockchainAPI.sendTxMultiple = function(senderPrivKeys, receivers, floData = '') {
const sendTxMultiple = floBlockchainAPI.sendTxMultiple = function (senderPrivKeys, receivers, floData = '') {
return new Promise((resolve, reject) => {
if (!floCrypto.validateASCII(floData))
return reject("Invalid FLO_Data: only printable ASCII characters are allowed");
@ -421,7 +422,7 @@
}
//Broadcast signed Tx in blockchain using API
const broadcastTx = floBlockchainAPI.broadcastTx = function(signedTxHash) {
const broadcastTx = floBlockchainAPI.broadcastTx = function (signedTxHash) {
return new Promise((resolve, reject) => {
if (signedTxHash.length < 1)
return reject("Empty Signature");
@ -441,7 +442,7 @@
})
}
floBlockchainAPI.getTx = function(txid) {
floBlockchainAPI.getTx = function (txid) {
return new Promise((resolve, reject) => {
promisedAPI(`api/tx/${txid}`)
.then(response => resolve(response))
@ -450,7 +451,7 @@
}
//Read Txs of Address between from and to
const readTxs = floBlockchainAPI.readTxs = function(addr, from, to) {
const readTxs = floBlockchainAPI.readTxs = function (addr, from, to) {
return new Promise((resolve, reject) => {
promisedAPI(`api/addrs/${addr}/txs?from=${from}&to=${to}`)
.then(response => resolve(response))
@ -459,7 +460,7 @@
}
//Read All Txs of Address (newest first)
floBlockchainAPI.readAllTxs = function(addr) {
floBlockchainAPI.readAllTxs = function (addr) {
return new Promise((resolve, reject) => {
promisedAPI(`api/addrs/${addr}/txs?from=0&to=1`).then(response => {
promisedAPI(`api/addrs/${addr}/txs?from=0&to=${response.totalItems}0`)
@ -481,15 +482,15 @@
sender : flo-id(s) of sender
receiver : flo-id(s) of receiver
*/
floBlockchainAPI.readData = function(addr, options = {}) {
floBlockchainAPI.readData = function (addr, options = {}) {
options.limit = options.limit || 0;
options.ignoreOld = options.ignoreOld || 0;
if (typeof options.sender === "string") options.sender = [options.sender];
if (typeof options.receiver === "string") options.receiver = [options.receiver];
if (typeof options.senders === "string") options.senders = [options.senders];
if (typeof options.receivers === "string") options.receivers = [options.receivers];
return new Promise((resolve, reject) => {
promisedAPI(`api/addrs/${addr}/txs?from=0&to=1`).then(response => {
var newItems = response.totalItems - options.ignoreOld;
promisedAPI(`api/addrs/${addr}/txs?from=0&to=${newItems*2}`).then(response => {
promisedAPI(`api/addrs/${addr}/txs?from=0&to=${newItems * 2}`).then(response => {
if (options.limit <= 0)
options.limit = response.items.length;
var filteredData = [];
@ -520,10 +521,10 @@
}
if (!flag) continue;
}
if (Array.isArray(options.sender)) {
if (Array.isArray(options.senders)) {
let flag = false;
for (let vin of response.items[i].vin)
if (options.sender.includes(vin.addr)) {
if (options.senders.includes(vin.addr)) {
flag = true;
break;
}
@ -538,10 +539,10 @@
}
if (!flag) continue;
}
if (Array.isArray(options.receiver)) {
if (Array.isArray(options.receivers)) {
let flag = false;
for (let vout of response.items[i].vout)
if (options.receiver.includes(vout.scriptPubKey.addresses[0])) {
if (options.receivers.includes(vout.scriptPubKey.addresses[0])) {
flag = true;
break;
}
@ -555,6 +556,8 @@
d.txid = response.items[i].txid;
d.time = response.items[i].time;
d.blockheight = response.items[i].blockheight;
d.senders = new Set(response.items[i].vin.map(v => v.addr));
d.receivers = new Set(response.items[i].vout.map(v => v.scriptPubKey.addresses[0]));
d.data = response.items[i].floData;
filteredData.push(d);
} else

View File

@ -1,4 +1,4 @@
(function(EXPORTS) { //floCloudAPI v2.4.2d
(function (EXPORTS) { //floCloudAPI v2.4.3
/* FLO Cloud operations to send/request application data*/
'use strict';
const floCloudAPI = EXPORTS;
@ -79,6 +79,9 @@
get: () => generalData,
set: data => generalData = data
},
generalDataset: {
value: (type, options = {}) => generalData[filterKey(type, options)]
},
lastVC: {
get: () => lastVC,
set: vc => lastVC = vc
@ -91,7 +94,7 @@
});
var kBucket;
const K_Bucket = floCloudAPI.K_Bucket = function(masterID, nodeList) {
const K_Bucket = floCloudAPI.K_Bucket = function (masterID, nodeList) {
const decodeID = floID => {
let k = bitjs.Base58.decode(floID);
@ -125,7 +128,7 @@
});
self.isNode = floID => _CO.includes(floID);
self.innerNodes = function(id1, id2) {
self.innerNodes = function (id1, id2) {
if (!_CO.includes(id1) || !_CO.includes(id2))
throw Error('Given nodes are not supernode');
let iNodes = []
@ -136,7 +139,7 @@
}
return iNodes
}
self.outterNodes = function(id1, id2) {
self.outterNodes = function (id1, id2) {
if (!_CO.includes(id1) || !_CO.includes(id2))
throw Error('Given nodes are not supernode');
let oNodes = []
@ -147,7 +150,7 @@
}
return oNodes
}
self.prevNode = function(id, N = 1) {
self.prevNode = function (id, N = 1) {
let n = N || _CO.length;
if (!_CO.includes(id))
throw Error('Given node is not supernode');
@ -161,7 +164,7 @@
}
return (N == 1 ? pNodes[0] : pNodes)
}
self.nextNode = function(id, N = 1) {
self.nextNode = function (id, N = 1) {
let n = N || _CO.length;
if (!_CO.includes(id))
throw Error('Given node is not supernode');
@ -176,7 +179,7 @@
}
return (N == 1 ? nNodes[0] : nNodes)
}
self.closestNode = function(id, N = 1) {
self.closestNode = function (id, N = 1) {
let decodedId = decodeID(id);
let n = N || _CO.length;
let cNodes = _KB.closest(decodedId, n)
@ -290,8 +293,8 @@
fetch_ActiveAPI(floID, data).then(response => {
if (response.ok)
response.json()
.then(result => resolve(result))
.catch(error => reject(error))
.then(result => resolve(result))
.catch(error => reject(error))
else response.text()
.then(result => reject(response.status + ": " + result)) //Error Message from Node
.catch(error => reject(error))
@ -367,21 +370,21 @@
const util = floCloudAPI.util = {};
const encodeMessage = util.encodeMessage = function(message) {
const encodeMessage = util.encodeMessage = function (message) {
return btoa(unescape(encodeURIComponent(JSON.stringify(message))))
}
const decodeMessage = util.decodeMessage = function(message) {
const decodeMessage = util.decodeMessage = function (message) {
return JSON.parse(decodeURIComponent(escape(atob(message))))
}
const filterKey = util.filterKey = function(type, options) {
const filterKey = util.filterKey = function (type, options = {}) {
return type + (options.comment ? ':' + options.comment : '') +
'|' + (options.group || options.receiverID || DEFAULT.adminID) +
'|' + (options.application || DEFAULT.application);
}
const proxyID = util.proxyID = function(address) {
const proxyID = util.proxyID = function (address) {
if (!address)
return;
var bytes;
@ -486,7 +489,7 @@
}
//set status as online for user_id
floCloudAPI.setStatus = function(options = {}) {
floCloudAPI.setStatus = function (options = {}) {
return new Promise((resolve, reject) => {
let callback = options.callback instanceof Function ? options.callback : DEFAULT.callback;
var request = {
@ -505,7 +508,7 @@
}
//request status of floID(s) in trackList
floCloudAPI.requestStatus = function(trackList, options = {}) {
floCloudAPI.requestStatus = function (trackList, options = {}) {
return new Promise((resolve, reject) => {
if (!Array.isArray(trackList))
trackList = [trackList];
@ -522,7 +525,7 @@
}
//send any message to supernode cloud storage
const sendApplicationData = floCloudAPI.sendApplicationData = function(message, type, options = {}) {
const sendApplicationData = floCloudAPI.sendApplicationData = function (message, type, options = {}) {
return new Promise((resolve, reject) => {
var data = {
senderID: user.id,
@ -544,7 +547,7 @@
}
//request any data from supernode cloud
const requestApplicationData = floCloudAPI.requestApplicationData = function(type, options = {}) {
const requestApplicationData = floCloudAPI.requestApplicationData = function (type, options = {}) {
return new Promise((resolve, reject) => {
var request = {
receiverID: options.receiverID || DEFAULT.adminID,
@ -647,7 +650,7 @@
*/
//tag data in supernode cloud (subAdmin access only)
floCloudAPI.tagApplicationData = function(vectorClock, tag, options = {}) {
floCloudAPI.tagApplicationData = function (vectorClock, tag, options = {}) {
return new Promise((resolve, reject) => {
if (!floGlobals.subAdmins.includes(user.id))
return reject("Only subAdmins can tag data")
@ -668,7 +671,7 @@
}
//note data in supernode cloud (receiver only or subAdmin allowed if receiver is adminID)
floCloudAPI.noteApplicationData = function(vectorClock, note, options = {}) {
floCloudAPI.noteApplicationData = function (vectorClock, note, options = {}) {
return new Promise((resolve, reject) => {
var request = {
receiverID: options.receiverID || DEFAULT.adminID,
@ -687,7 +690,7 @@
}
//send general data
floCloudAPI.sendGeneralData = function(message, type, options = {}) {
floCloudAPI.sendGeneralData = function (message, type, options = {}) {
return new Promise((resolve, reject) => {
if (options.encrypt) {
let encryptionKey = options.encrypt === true ?
@ -701,7 +704,7 @@
}
//request general data
floCloudAPI.requestGeneralData = function(type, options = {}) {
floCloudAPI.requestGeneralData = function (type, options = {}) {
return new Promise((resolve, reject) => {
var fk = filterKey(type, options)
lastVC[fk] = parseInt(lastVC[fk]) || 0;
@ -725,7 +728,7 @@
}
//request an object data from supernode cloud
floCloudAPI.requestObjectData = function(objectName, options = {}) {
floCloudAPI.requestObjectData = function (objectName, options = {}) {
return new Promise((resolve, reject) => {
options.lowerVectorClock = options.lowerVectorClock || lastVC[objectName] + 1;
options.senderID = [false, null].includes(options.senderID) ? null :
@ -762,7 +765,7 @@
})
}
floCloudAPI.closeRequest = function(requestID) {
floCloudAPI.closeRequest = function (requestID) {
return new Promise((resolve, reject) => {
let conn = _liveRequest[requestID]
if (!conn)
@ -776,7 +779,7 @@
}
//reset or initialize an object and send it to cloud
floCloudAPI.resetObjectData = function(objectName, options = {}) {
floCloudAPI.resetObjectData = function (objectName, options = {}) {
return new Promise((resolve, reject) => {
let message = {
reset: appObjects[objectName]
@ -790,7 +793,7 @@
}
//update the diff and send it to cloud
floCloudAPI.updateObjectData = function(objectName, options = {}) {
floCloudAPI.updateObjectData = function (objectName, options = {}) {
return new Promise((resolve, reject) => {
let message = {
diff: diff.find(lastCommit.get(objectName), appObjects[
@ -809,7 +812,7 @@
findDiff(original, updatedObj) returns an object with the added, deleted and updated differences
mergeDiff(original, allDiff) returns a new object from original object merged with all differences (allDiff is returned object of findDiff)
*/
var diff = (function() {
var diff = (function () {
const isDate = d => d instanceof Date;
const isEmpty = o => Object.keys(o).length === 0;
const isObject = o => o != null && typeof o === 'object';
@ -983,23 +986,23 @@
}, {});
};
const mergeRecursive = (obj1, obj2) => {
const mergeRecursive = (obj1, obj2, deleteMode = false) => {
for (var p in obj2) {
try {
if (obj2[p].constructor == Object)
obj1[p] = mergeRecursive(obj1[p], obj2[p]);
obj1[p] = mergeRecursive(obj1[p], obj2[p], deleteMode);
// Property in destination object set; update its value.
else if (Ext.isArray(obj2[p])) {
else if (Array.isArray(obj2[p])) {
// obj1[p] = [];
if (obj2[p].length < 1)
obj1[p] = obj2[p];
else
obj1[p] = mergeRecursive(obj1[p], obj2[p]);
obj1[p] = mergeRecursive(obj1[p], obj2[p], deleteMode);
} else
obj1[p] = obj2[p];
obj1[p] = deleteMode && obj2[p] === null ? undefined : obj2[p];
} catch (e) {
// Property in destination object not set; create it and set its value.
obj1[p] = obj2[p];
obj1[p] = deleteMode && obj2[p] === null ? undefined : obj2[p];
}
}
return obj1;
@ -1008,20 +1011,13 @@
const cleanse = (obj) => {
Object.keys(obj).forEach(key => {
var value = obj[key];
if (typeof value === "object" && value !== null) {
// Recurse...
cleanse(value);
// ...and remove if now "empty" (NOTE: insert your definition of "empty" here)
//if (!Object.keys(value).length)
// delete obj[key];
} else if (value === null)
delete obj[key]; // null, remove it
if (typeof value === "object" && value !== null)
obj[key] = cleanse(value);
else if (typeof value === 'undefined')
delete obj[key]; // undefined, remove it
});
if (obj.constructor.toString().indexOf("Array") != -1) {
obj = obj.filter(function(el) {
return el != null;
});
}
if (Array.isArray(obj))
obj = obj.filter(v => typeof v !== 'undefined');
return obj;
}
@ -1037,7 +1033,7 @@
if (Object.keys(diff.updated).length !== 0)
obj = mergeRecursive(obj, diff.updated)
if (Object.keys(diff.deleted).length !== 0) {
obj = mergeRecursive(obj, diff.deleted)
obj = mergeRecursive(obj, diff.deleted, true)
obj = cleanse(obj)
}
if (Object.keys(diff.added).length !== 0)

View File

@ -1,4 +1,4 @@
(function(EXPORTS) { //floCrypto v2.3.3d
(function (EXPORTS) { //floCrypto v2.3.3e
/* FLO Crypto Operators */
'use strict';
const floCrypto = EXPORTS;
@ -78,14 +78,14 @@
}
//generate a random Interger within range
floCrypto.randInt = function(min, max) {
floCrypto.randInt = function (min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(securedMathRandom() * (max - min + 1)) + min;
}
//generate a random String within length (options : alphaNumeric chars only)
floCrypto.randString = function(length, alphaNumeric = true) {
floCrypto.randString = function (length, alphaNumeric = true) {
var result = '';
var characters = alphaNumeric ? 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789' :
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_+-./*?@#&$<>=[]{}():';
@ -95,7 +95,7 @@
}
//Encrypt Data using public-key
floCrypto.encryptData = function(data, receiverPublicKeyHex) {
floCrypto.encryptData = function (data, receiverPublicKeyHex) {
var senderECKeyData = getSenderPublicKeyString();
var senderDerivedKey = deriveSharedKeySender(receiverPublicKeyHex, senderECKeyData.privateKey);
let senderKey = senderDerivedKey.XValue + senderDerivedKey.YValue;
@ -107,7 +107,7 @@
}
//Decrypt Data using private-key
floCrypto.decryptData = function(data, privateKeyHex) {
floCrypto.decryptData = function (data, privateKeyHex) {
var receiverECKeyData = {};
if (typeof privateKeyHex !== "string") throw new Error("No private key found.");
let privateKey = wifToDecimal(privateKeyHex, true);
@ -120,7 +120,7 @@
}
//Sign data using private-key
floCrypto.signData = function(data, privateKeyHex) {
floCrypto.signData = function (data, privateKeyHex) {
var key = new Bitcoin.ECKey(privateKeyHex);
var messageHash = Crypto.SHA256(data);
var messageSign = Bitcoin.ECDSA.sign(messageHash, key.priv);
@ -129,7 +129,7 @@
}
//Verify signatue of the data using public-key
floCrypto.verifySign = function(data, signatureHex, publicKeyHex) {
floCrypto.verifySign = function (data, signatureHex, publicKeyHex) {
var msgHash = Crypto.SHA256(data);
var sigBytes = Crypto.util.hexToBytes(signatureHex);
var publicKeyPoint = ecparams.getCurve().decodePointHex(publicKeyHex);
@ -138,7 +138,7 @@
}
//Generates a new flo ID and returns private-key, public-key and floID
const generateNewID = floCrypto.generateNewID = function() {
const generateNewID = floCrypto.generateNewID = function () {
var key = new Bitcoin.ECKey(false);
key.setCompressed(true);
return {
@ -168,7 +168,7 @@
});
//Returns public-key from private-key
floCrypto.getPubKeyHex = function(privateKeyHex) {
floCrypto.getPubKeyHex = function (privateKeyHex) {
if (!privateKeyHex)
return null;
var key = new Bitcoin.ECKey(privateKeyHex);
@ -179,7 +179,7 @@
}
//Returns flo-ID from public-key or private-key
floCrypto.getFloID = function(keyHex) {
floCrypto.getFloID = function (keyHex) {
if (!keyHex)
return null;
try {
@ -192,7 +192,7 @@
}
}
floCrypto.getAddress = function(privateKeyHex, strict = false) {
floCrypto.getAddress = function (privateKeyHex, strict = false) {
if (!privateKeyHex)
return;
var key = new Bitcoin.ECKey(privateKeyHex);
@ -212,7 +212,7 @@
}
//Verify the private-key for the given public-key or flo-ID
floCrypto.verifyPrivKey = function(privateKeyHex, pubKey_floID, isfloID = true) {
floCrypto.verifyPrivKey = function (privateKeyHex, pubKey_floID, isfloID = true) {
if (!privateKeyHex || !pubKey_floID)
return false;
try {
@ -232,7 +232,7 @@
}
//Check if the given flo-id is valid or not
floCrypto.validateFloID = function(floID) {
floCrypto.validateFloID = function (floID) {
if (!floID)
return false;
try {
@ -244,7 +244,7 @@
}
//Check if the given address (any blockchain) is valid or not
floCrypto.validateAddr = function(address, std = true, bech = true) {
floCrypto.validateAddr = function (address, std = true, bech = true) {
let raw = decodeAddress(address);
if (!raw)
return false;
@ -267,7 +267,7 @@
}
//Check the public-key for the address (any blockchain)
floCrypto.verifyPubKey = function(pubKeyHex, address) {
floCrypto.verifyPubKey = function (pubKeyHex, address) {
let raw = decodeAddress(address),
pub_hash = Crypto.util.bytesToHex(ripemd160(Crypto.SHA256(Crypto.util.hexToBytes(pubKeyHex), {
asBytes: true
@ -276,12 +276,18 @@
}
//Convert the given address (any blockchain) to equivalent floID
floCrypto.toFloID = function(address) {
floCrypto.toFloID = function (address, options = null) {
if (!address)
return;
let raw = decodeAddress(address);
if (!raw)
return;
else if (options) {
if (typeof raw.version !== 'undefined' && (!options.std || !options.std.includes(raw.version)))
return;
if (typeof raw.bech_version !== 'undefined' && (!options.bech || !options.bech.includes(raw.bech_version)))
return;
}
raw.bytes.unshift(bitjs.pub);
let hash = Crypto.SHA256(Crypto.SHA256(raw.bytes, {
asBytes: true
@ -292,7 +298,7 @@
}
//Checks if the given addresses (any blockchain) are same (w.r.t keys)
floCrypto.isSameAddr = function(addr1, addr2) {
floCrypto.isSameAddr = function (addr1, addr2) {
if (!addr1 || !addr2)
return;
let raw1 = decodeAddress(addr1),
@ -303,7 +309,7 @@
return raw1.hex === raw2.hex;
}
const decodeAddress = floCrypto.decodeAddr = function(address) {
const decodeAddress = floCrypto.decodeAddr = function (address) {
if (!address)
return;
else if (address.length == 33 || address.length == 34) { //legacy encoding
@ -338,7 +344,7 @@
}
//Split the str using shamir's Secret and Returns the shares
floCrypto.createShamirsSecretShares = function(str, total_shares, threshold_limit) {
floCrypto.createShamirsSecretShares = function (str, total_shares, threshold_limit) {
try {
if (str.length > 0) {
var strHex = shamirSecretShare.str2hex(str);
@ -352,7 +358,7 @@
}
//Returns the retrived secret by combining the shamirs shares
const retrieveShamirSecret = floCrypto.retrieveShamirSecret = function(sharesArray) {
const retrieveShamirSecret = floCrypto.retrieveShamirSecret = function (sharesArray) {
try {
if (sharesArray.length > 0) {
var comb = shamirSecretShare.combine(sharesArray.slice(0, sharesArray.length));
@ -366,7 +372,7 @@
}
//Verifies the shares and str
floCrypto.verifyShamirsSecret = function(sharesArray, str) {
floCrypto.verifyShamirsSecret = function (sharesArray, str) {
if (!str)
return null;
else if (retrieveShamirSecret(sharesArray) === str)
@ -375,7 +381,7 @@
return false;
}
const validateASCII = floCrypto.validateASCII = function(string, bool = true) {
const validateASCII = floCrypto.validateASCII = function (string, bool = true) {
if (typeof string !== "string")
return null;
if (bool) {
@ -393,8 +399,8 @@
if (x < 32 || x > 127)
if (x in invalids)
invalids[string[i]].push(i)
else
invalids[string[i]] = [i];
else
invalids[string[i]] = [i];
}
if (Object.keys(invalids).length)
return invalids;
@ -403,7 +409,7 @@
}
}
floCrypto.convertToASCII = function(string, mode = 'soft-remove') {
floCrypto.convertToASCII = function (string, mode = 'soft-remove') {
let chars = validateASCII(string, false);
if (chars === true)
return string;
@ -414,9 +420,9 @@
ascii_alternatives.split('\n').forEach(a => refAlt[a[0]] = a.slice(2));
mode = mode.toLowerCase();
if (mode === "hard-unicode")
convertor = (c) => `\\u${('000'+c.charCodeAt().toString(16)).slice(-4)}`;
convertor = (c) => `\\u${('000' + c.charCodeAt().toString(16)).slice(-4)}`;
else if (mode === "soft-unicode")
convertor = (c) => refAlt[c] || `\\u${('000'+c.charCodeAt().toString(16)).slice(-4)}`;
convertor = (c) => refAlt[c] || `\\u${('000' + c.charCodeAt().toString(16)).slice(-4)}`;
else if (mode === "hard-remove")
convertor = c => "";
else if (mode === "soft-remove")
@ -428,7 +434,7 @@
return result;
}
floCrypto.revertUnicode = function(string) {
floCrypto.revertUnicode = function (string) {
return string.replace(/\\u[\dA-F]{4}/gi,
m => String.fromCharCode(parseInt(m.replace(/\\u/g, ''), 16)));
}

View File

@ -1,4 +1,4 @@
(function(EXPORTS) { //floDapps v2.3.2d
(function (EXPORTS) { //floDapps v2.3.3
/* General functions for FLO Dapps*/
'use strict';
const floDapps = EXPORTS;
@ -181,6 +181,7 @@
credentials: {},
//for Dapps
subAdmins: {},
trustedIDs: {},
settings: {},
appObjects: {},
generalData: {},
@ -244,6 +245,12 @@
compactIDB.removeData("supernodes", sn, DEFAULT.root);
for (let sn in content.newNodes)
compactIDB.writeData("supernodes", content.newNodes[sn], sn, DEFAULT.root);
for (let sn in content.updateNodes)
compactIDB.readData("supernodes", sn, DEFAULT.root).then(r => {
r = r || {}
r.uri = content.updateNodes[sn];
compactIDB.writeData("supernodes", r, sn, DEFAULT.root);
});
}
compactIDB.writeData("lastTx", result.totalTxs, floCloudAPI.SNStorageID, DEFAULT.root);
compactIDB.readAllData("supernodes", DEFAULT.root).then(nodes => {
@ -274,6 +281,12 @@
if (Array.isArray(content.addSubAdmin))
for (var k = 0; k < content.addSubAdmin.length; k++)
compactIDB.writeData("subAdmins", true, content.addSubAdmin[k]);
if (Array.isArray(content.removeTrustedID))
for (var j = 0; j < content.removeTrustedID.length; j++)
compactIDB.removeData("trustedIDs", content.removeTrustedID[j]);
if (Array.isArray(content.addTrustedID))
for (var k = 0; k < content.addTrustedID.length; k++)
compactIDB.writeData("trustedIDs", true, content.addTrustedID[k]);
if (content.settings)
for (let l in content.settings)
compactIDB.writeData("settings", content.settings[l], l)
@ -454,7 +467,7 @@
})
});
floDapps.launchStartUp = function() {
floDapps.launchStartUp = function () {
return new Promise((resolve, reject) => {
initIndexedDB().then(log => {
console.log(log)
@ -497,7 +510,7 @@
floDapps.setAppObjectStores = appObs => initIndexedDB.appObs = appObs;
floDapps.storeContact = function(floID, name) {
floDapps.storeContact = function (floID, name) {
return new Promise((resolve, reject) => {
if (!floCrypto.validateAddr(floID))
return reject("Invalid floID!")
@ -508,7 +521,7 @@
});
}
floDapps.storePubKey = function(floID, pubKey) {
floDapps.storePubKey = function (floID, pubKey) {
return new Promise((resolve, reject) => {
if (floID in user.pubKeys)
return resolve("pubKey already stored")
@ -523,7 +536,7 @@
});
}
floDapps.sendMessage = function(floID, message) {
floDapps.sendMessage = function (floID, message) {
return new Promise((resolve, reject) => {
let options = {
receiverID: floID,
@ -538,7 +551,7 @@
})
}
floDapps.requestInbox = function(callback) {
floDapps.requestInbox = function (callback) {
return new Promise((resolve, reject) => {
let lastVC = Object.keys(user.messages).sort().pop()
let options = {
@ -552,7 +565,7 @@
try {
if (d[v].message instanceof Object && "secret" in d[v].message)
d[v].message = floCrypto.decryptData(d[v].message, privKey)
} catch (error) {}
} catch (error) { }
compactIDB.writeData("messages", d[v], v, user.db_name)
user.messages[v] = d[v]
}
@ -565,7 +578,7 @@
})
}
floDapps.manageAppConfig = function(adminPrivKey, addList, rmList, settings) {
floDapps.manageAppConfig = function (adminPrivKey, addList, rmList, settings) {
return new Promise((resolve, reject) => {
if (!Array.isArray(addList) || !addList.length) addList = undefined;
if (!Array.isArray(rmList) || !rmList.length) rmList = undefined;
@ -584,12 +597,34 @@
reject('Access Denied for Admin privilege')
else
floBlockchainAPI.writeData(floID, JSON.stringify(floData), adminPrivKey)
.then(result => resolve(['Updated App Configuration', result]))
.catch(error => reject(error))
.then(result => resolve(['Updated App Configuration', result]))
.catch(error => reject(error))
})
}
const clearCredentials = floDapps.clearCredentials = function() {
floDapps.manageAppTrustedIDs = function (adminPrivKey, addList, rmList) {
return new Promise((resolve, reject) => {
if (!Array.isArray(addList) || !addList.length) addList = undefined;
if (!Array.isArray(rmList) || !rmList.length) rmList = undefined;
if (!addList && !rmList)
return reject("No change in list")
var floData = {
[DEFAULT.application]: {
addTrustedID: addList,
removeTrustedID: rmList
}
}
var floID = floCrypto.getFloID(adminPrivKey)
if (floID != DEFAULT.adminID)
reject('Access Denied for Admin privilege')
else
floBlockchainAPI.writeData(floID, JSON.stringify(floData), adminPrivKey)
.then(result => resolve(['Updated App Configuration', result]))
.catch(error => reject(error))
})
}
const clearCredentials = floDapps.clearCredentials = function () {
return new Promise((resolve, reject) => {
compactIDB.clearData('credentials', DEFAULT.application).then(result => {
localStorage.removeItem(`${DEFAULT.application}#privKey`);
@ -599,7 +634,7 @@
})
}
floDapps.deleteUserData = function(credentials = false) {
floDapps.deleteUserData = function (credentials = false) {
return new Promise((resolve, reject) => {
let p = []
p.push(compactIDB.deleteDB(user.db_name))
@ -611,7 +646,7 @@
})
}
floDapps.deleteAppData = function() {
floDapps.deleteAppData = function () {
return new Promise((resolve, reject) => {
compactIDB.deleteDB(DEFAULT.application).then(result => {
localStorage.removeItem(`${DEFAULT.application}#privKey`)
@ -623,7 +658,7 @@
})
}
floDapps.securePrivKey = function(pwd) {
floDapps.securePrivKey = function (pwd) {
return new Promise(async (resolve, reject) => {
let indexArr = localStorage.getItem(`${DEFAULT.application}#privKey`)
if (!indexArr)
@ -643,8 +678,8 @@
})
}
floDapps.verifyPin = function(pin = null) {
const readSharesFromIDB = function(indexArr) {
floDapps.verifyPin = function (pin = null) {
const readSharesFromIDB = function (indexArr) {
return new Promise((resolve, reject) => {
var promises = []
for (var i = 0; i < indexArr.length; i++)
@ -687,7 +722,7 @@
})
}
const getNextGeneralData = floDapps.getNextGeneralData = function(type, vectorClock = null, options = {}) {
const getNextGeneralData = floDapps.getNextGeneralData = function (type, vectorClock = null, options = {}) {
var fk = floCloudAPI.util.filterKey(type, options)
vectorClock = vectorClock || getNextGeneralData[fk] || '0';
var filteredResult = {}
@ -716,10 +751,10 @@
let tmp = floCrypto.decryptData(data.message, key)
data.message = JSON.parse(tmp)
break;
} catch (error) {}
} catch (error) { }
}
}
} catch (error) {}
} catch (error) { }
}
}
getNextGeneralData[fk] = Object.keys(filteredResult).sort().pop();

View File

@ -1,11 +1,11 @@
(function(EXPORTS) { //floTokenAPI v1.0.3b
(function (EXPORTS) { //floTokenAPI v1.0.3c
/* Token Operator to send/receive tokens via blockchain using API calls*/
'use strict';
const tokenAPI = EXPORTS;
const DEFAULT = {
apiURL: floGlobals.tokenURL || "https://ranchimallflo.duckdns.org/",
currency: "rupee"
currency: floGlobals.currency || "rupee"
}
Object.defineProperties(tokenAPI, {
@ -27,9 +27,9 @@
}
});
const fetch_api = tokenAPI.fetch = function(apicall) {
const fetch_api = tokenAPI.fetch = function (apicall) {
return new Promise((resolve, reject) => {
console.log(DEFAULT.apiURL + apicall);
console.debug(DEFAULT.apiURL + apicall);
fetch(DEFAULT.apiURL + apicall).then(response => {
if (response.ok)
response.json().then(data => resolve(data));
@ -39,7 +39,7 @@
})
}
const getBalance = tokenAPI.getBalance = function(floID, token = DEFAULT.currency) {
const getBalance = tokenAPI.getBalance = function (floID, token = DEFAULT.currency) {
return new Promise((resolve, reject) => {
fetch_api(`api/v1.0/getFloAddressBalance?token=${token}&floAddress=${floID}`)
.then(result => resolve(result.balance || 0))
@ -47,7 +47,7 @@
})
}
tokenAPI.getTx = function(txID) {
tokenAPI.getTx = function (txID) {
return new Promise((resolve, reject) => {
fetch_api(`api/v1.0/getTransactionDetails/${txID}`).then(res => {
if (res.result === "error")
@ -62,7 +62,7 @@
})
}
tokenAPI.sendToken = function(privKey, amount, receiverID, message = "", token = DEFAULT.currency, options = {}) {
tokenAPI.sendToken = function (privKey, amount, receiverID, message = "", token = DEFAULT.currency, options = {}) {
return new Promise((resolve, reject) => {
let senderID = floCrypto.getFloID(privKey);
if (typeof amount !== "number" || isNaN(amount) || amount <= 0)
@ -77,7 +77,7 @@
});
}
tokenAPI.getAllTxs = function(floID, token = DEFAULT.currency) {
tokenAPI.getAllTxs = function (floID, token = DEFAULT.currency) {
return new Promise((resolve, reject) => {
fetch_api(`api/v1.0/getFloAddressTransactions?token=${token}&floAddress=${floID}`)
.then(result => resolve(result))
@ -87,7 +87,7 @@
const util = tokenAPI.util = {};
util.parseTxData = function(txData) {
util.parseTxData = function (txData) {
let parsedData = {};
for (let p in txData.parsedFloData)
parsedData[p] = txData.parsedFloData[p];

File diff suppressed because it is too large Load Diff