Skip to content

Btc deposit #333

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

Merged
merged 33 commits into from
May 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b39a2b9
dep: update styx-sdk
biwasxyz Apr 17, 2025
136f438
feat: deposit-form
biwasxyz Apr 17, 2025
682c4de
feat: helper hooks
biwasxyz Apr 17, 2025
7f8fef8
dep: sats-connect
biwasxyz Apr 17, 2025
2849027
feat: transaction-confirmation
biwasxyz Apr 17, 2025
167ae93
fix: mock btc-deposit almost confirmed
biwasxyz Apr 17, 2025
f932492
fix: remove static data and use sdk for price and history
biwasxyz Apr 28, 2025
c091289
update
biwasxyz Apr 28, 2025
22a4044
fix: sBTC-> BTC
biwasxyz Apr 28, 2025
ed00ad2
Merge branch 'staging' into btc-deposit
biwasxyz Apr 28, 2025
d0af029
fix: display btc amount
biwasxyz Apr 28, 2025
9c05c34
dep: add btc-signer
biwasxyz Apr 30, 2025
60d4eec
update(dep): styx/sdk
biwasxyz Apr 30, 2025
d8d04b4
fix: use consistent brand color
biwasxyz Apr 30, 2025
ca6715e
feat: add history from sdk
biwasxyz Apr 30, 2025
3acb110
feat: add all deposit
biwasxyz Apr 30, 2025
87d3d04
Merge branch 'staging' into btc-deposit
biwasxyz May 4, 2025
16e94e7
fix: sBTC->BTC
biwasxyz Apr 30, 2025
b211113
fix: update
biwasxyz May 6, 2025
43ff9bb
fix: set wallet providers dynamically
biwasxyz May 6, 2025
ea845eb
fix: update the address utils to get btc address from leather too
biwasxyz May 6, 2025
863ed37
update: styx sdk
biwasxyz May 6, 2025
161ab21
Merge branch 'staging' into btc-deposit
biwasxyz May 6, 2025
b5abbff
update(dep): styx-sdk
biwasxyz May 7, 2025
c26b95e
fix: any types
biwasxyz May 7, 2025
497b2e6
fix: udpate types
biwasxyz May 7, 2025
a4a5498
fix: make eslint happy
biwasxyz May 7, 2025
98794c9
fix: cleanup unused vars
biwasxyz May 7, 2025
90b8762
fix: any types
biwasxyz May 7, 2025
36b2496
fix: create custom types for Leatherprovider to avoid any
biwasxyz May 7, 2025
cad59cf
fix: remove duplicate address detection
biwasxyz May 7, 2025
b6fa202
Merge branch 'staging' into btc-deposit
biwasxyz May 8, 2025
77ead73
fix: conflicts
biwasxyz May 8, 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
341 changes: 329 additions & 12 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"@radix-ui/react-tabs": "^1.1.11",
"@radix-ui/react-toast": "^1.2.13",
"@radix-ui/react-tooltip": "^1.2.6",
"@scure/btc-signer": "^1.8.0",
"@stacks/connect": "^7.10.2",
"@stacks/connect-react": "^22.6.2",
"@stacks/connect-ui": "^6.6.0",
Expand Down Expand Up @@ -63,6 +64,7 @@
"react-markdown": "^9.1.0",
"recharts": "^2.15.3",
"remark-gfm": "^4.0.1",
"sats-connect": "^3.5.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.4"
Expand Down
10 changes: 10 additions & 0 deletions src/app/deposit/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import BitcoinDeposit from "@/components/btc-deposit";

const page = () => {
return (
<div>
<BitcoinDeposit />
</div>
);
};
export default page;
Loading