Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transactions view #72

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
db40325
fix: :bug: minor bug fixes for contacts
jojobyte Apr 11, 2024
b2ecab5
feat(ui): :sparkles: add transactions list component
jojobyte Apr 11, 2024
8a8c0da
feat(data): :construction: experiment with dashsight.getAllTxs
jojobyte Apr 11, 2024
54cd555
refactor(data): :recycle: move state from main.js to state/index.js
jojobyte Apr 13, 2024
7e73b65
fix(ui): :bug: prevent pairing with existing contact (xpub)
jojobyte Apr 13, 2024
88b0fbd
feat(data): :recycle: batch generate utils for xkeys
jojobyte Apr 13, 2024
da9bdb2
feat(data): :sparkles: batch gen addrs for new contact pairing
jojobyte Apr 13, 2024
4ed124b
feat(data): :sparkles: batch gen addrs for contacts list outgoing
jojobyte Apr 13, 2024
348a6e8
feat(ui): :sparkles: display transactions with contact
jojobyte Apr 15, 2024
4bdbd68
fix(ui): :ambulance: unpaired contact hotfix
jojobyte Apr 15, 2024
b67a7ab
fix(ui): :ambulance: check if dir is sent or outgoing
jojobyte Apr 15, 2024
8f02376
fix(data): :bug: switch fullTransfer back to 0.0010_0200
jojobyte Apr 15, 2024
a2db906
fix(ui): :zap: Improve perceived load time of txs view
jojobyte Apr 15, 2024
104cbea
style(ui): :lipstick: improve the icons in web manifest
jojobyte Jul 21, 2024
0ea5d70
fix(ui): :lipstick: avatar size distortion for txs
jojobyte Jul 23, 2024
73fb017
style(ui): :lipstick: fix input placeholder color
jojobyte Jul 23, 2024
d4497b7
style(ui): :lipstick: remove unused light mode
jojobyte Jul 23, 2024
f261540
fix(data): :bug: check if vout.scriptPubKey.addresses exists
jojobyte Jul 23, 2024
68e3eb4
build(npm): :arrow_up: update npm deps & add crowdnode.js
jojobyte Jul 23, 2024
a2835c6
style: :lipstick: improve look of onboarding screen
jojobyte Jul 24, 2024
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
73 changes: 42 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,21 @@
"@dashincubator/base58check": "^1.4.1",
"@dashincubator/ripemd160": "^3.0.0",
"@dashincubator/secp256k1": "^1.7.1-5",
"@zxing/library": "^0.20.0",
"@zxing/library": "^0.21.2",
"crowdnode": "^1.8.0",
"crypticstorage": "^0.0.2",
"dashhd": "^3.3.0",
"dashkeys": "^1.1.0",
"dashhd": "^3.3.3",
"dashkeys": "^1.1.4",
"dashphrase": "^1.4.0",
"dashsight": "^1.6.1",
"dashtx": "^0.13.2",
"dashwallet": "^0.7.0-1",
"dashsight": "dashhive/DashSight.js#feat/bulk-txs",
"dashtx": "^0.16.0",
"dashwallet": "^0.7.1",
"html5-qrcode": "^2.3.8",
"idb": "^8.0.0",
"localforage": "^1.10.0",
"qrcode-svg": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.11.5"
"@types/node": "^20.14.11"
}
}
Binary file modified public/icons/dash-incubator-circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/dash-incubator-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/dash-incubator-circle_x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/dash-incubator-circle_x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/maskable_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/maskable_icon_x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/contacts-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const initialState = {
let name = c.info?.name

if (
!name &&
!name?.trim() &&
!user &&
!out?.xkeyId &&
out?.address
Expand Down
Loading
Loading