Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
505f6d9
-
kumawatkaran523 Jun 4, 2025
5a178ba
removed env
kumawatkaran523 Jun 9, 2025
61894ff
removed chainlink
kumawatkaran523 Jun 9, 2025
a6c2fac
removed chainlink
kumawatkaran523 Jun 9, 2025
3231f30
added env-copy
kumawatkaran523 Jun 9, 2025
8a05a03
removed unecessary folder
kumawatkaran523 Jun 9, 2025
91c1925
changed app.jsx
kumawatkaran523 Jun 9, 2025
86982f7
readme update
kumawatkaran523 Jun 9, 2025
e7c3f41
readme update
kumawatkaran523 Jun 9, 2025
77f3b14
updated contract
kumawatkaran523 Jun 16, 2025
3c9220a
updated UI and contract ABI
kumawatkaran523 Jun 16, 2025
1b7aecd
refactor: optimize Lit client init and invoice fetch
kumawatkaran523 Jul 3, 2025
ce51cbe
update readme
kumawatkaran523 Jul 3, 2025
e412537
updated contract
kumawatkaran523 Jul 3, 2025
54fefc3
removed calculation error
kumawatkaran523 Jul 3, 2025
3aa274f
removed calculation error
kumawatkaran523 Jul 3, 2025
4bc2776
correct typo
kumawatkaran523 Jul 3, 2025
ab1bafc
Security concern: Insufficient access control validation
kumawatkaran523 Jul 3, 2025
673ffa1
Updated dashboard,treasury account and routes
kumawatkaran523 Jul 4, 2025
4cd4795
correct some error
kumawatkaran523 Jul 5, 2025
86c54ef
Merge branch 'main' into main
kumawatkaran523 Jul 5, 2025
a54324c
added mobile menu
kumawatkaran523 Jul 8, 2025
538e82c
added erc20 token,updated contract,erc20abi,frontend
kumawatkaran523 Jul 10, 2025
1ce69bb
updated contract
kumawatkaran523 Jul 10, 2025
e390b0f
added erc20 logic
kumawatkaran523 Jul 12, 2025
c98624e
update ui
kumawatkaran523 Jul 12, 2025
99defe6
treasure fee set
kumawatkaran523 Jul 13, 2025
545031b
contract update with cancel property
kumawatkaran523 Aug 14, 2025
e46a4f3
frontend update with cancel property
kumawatkaran523 Aug 14, 2025
9a5ae47
frontend update with cancel property
kumawatkaran523 Aug 14, 2025
7717396
file conflict resolve
kumawatkaran523 Aug 14, 2025
c43085e
-
kumawatkaran523 Aug 14, 2025
363b696
-
kumawatkaran523 Aug 14, 2025
bfc9f7a
prefilled url feature open
kumawatkaran523 Aug 21, 2025
2670801
prefilled url feature complete
kumawatkaran523 Aug 22, 2025
dffd379
conftlict resolve
kumawatkaran523 Aug 22, 2025
8d67011
conftlict resolve
kumawatkaran523 Aug 22, 2025
ed7d128
Merge branch 'main' of https://github.com/StabilityNexus/Chainvoice
kumawatkaran523 Aug 26, 2025
622f85b
token selector improvement
kumawatkaran523 Aug 26, 2025
3917838
token selector improvement
kumawatkaran523 Aug 26, 2025
10ef878
token selector improvement
kumawatkaran523 Aug 26, 2025
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
8 changes: 6 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@
"@lit-protocol/lit-node-client": "^7.2.0",
"@mui/icons-material": "^6.4.6",
"@mui/material": "^6.4.6",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@rainbow-me/rainbowkit": "^2.2.2",
"@tanstack/react-query": "^5.64.1",
"class-variance-authority": "^0.7.1",
Expand All @@ -31,7 +34,7 @@
"eth-crypto": "^2.7.0",
"ethereum-unit-converter": "^0.0.17",
"ethers": "^6.13.5",
"framer-motion": "^12.23.0",
"framer-motion": "^12.23.12",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.0",
"lucide-react": "^0.471.1",
Expand All @@ -44,6 +47,7 @@
"react-router-dom": "^7.1.1",
"react-to-print": "^3.0.5",
"react-toastify": "^11.0.5",
"react-window": "^1.8.11",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.22.9",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/TokenCrousel.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useEffect, useRef } from "react";
import { motion } from "framer-motion";
import { SiEthereum } from "react-icons/si";
import { TOKEN_PRESETS } from "@/utils/erc20_token";
// import { TOKEN_PRESETS } from "@/utils/erc20_token";

const TokenCarousel = () => {
const carouselRef = useRef();
Expand Down
Loading