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

[sBTC] feat: add sbtc deposit pre release #1554

Draft
wants to merge 48 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
e616979
chore: wip
janniks Sep 18, 2023
fa05cc1
chore: wip
janniks Sep 21, 2023
f1e2a0e
feat: wip
janniks Oct 2, 2023
040a9a5
test: update tests
janniks Oct 2, 2023
ef9d854
refactor: add withdraw stubs
janniks Oct 2, 2023
7f3c32d
build: fix unused
janniks Oct 2, 2023
57e5282
ci: add package folder
janniks Oct 2, 2023
6b4f1b7
fix: update withdraw interface
janniks Oct 2, 2023
cef03eb
refactor: add helpers
janniks Oct 3, 2023
4b1dc94
chore: wip
janniks Oct 3, 2023
f08dab1
refactor: update
janniks Oct 4, 2023
c8a0040
refactor: devenv progress
janniks Oct 4, 2023
7008fa2
chore: wip
janniks Oct 4, 2023
98129e8
chore: wip
janniks Oct 5, 2023
80fc99e
fix: update to match cli
janniks Oct 6, 2023
98c7750
feat: add successful withdraw
janniks Oct 10, 2023
e503a47
ci: disable sbtc tests
janniks Oct 10, 2023
8f9eebd
chore: fix publish
janniks Oct 10, 2023
cf705d2
fix: update auto hex fetching
janniks Oct 10, 2023
156113a
fix: add continue error log
janniks Oct 10, 2023
8446dbf
fix: update error log
janniks Oct 10, 2023
9628f77
chore: update
janniks Oct 10, 2023
4dc9609
chore: update devenv helpers for upcoming changes
janniks Oct 10, 2023
04a2805
chore: publish fixes
janniks Oct 10, 2023
9c25f85
fix: update port, fix helpers, update broadcast
janniks Oct 12, 2023
3717d46
fix: update to new message format
janniks Oct 14, 2023
7725052
test: double check devenv values
janniks Oct 16, 2023
0ad8d33
fix: update
janniks Oct 18, 2023
5272b05
chore: add comment
janniks Oct 19, 2023
08049a2
docs: update readme
janniks Nov 3, 2023
3a6a22a
chore: update package
janniks Nov 3, 2023
e4539d5
chore: update package
janniks Nov 6, 2023
152b862
Merge branch 'main' into feat/add-sbtc-contracts
janniks Nov 19, 2024
053a426
chore: comment out withdraw
janniks Nov 19, 2024
6886e6e
fix: wip latest sbtc spec
janniks Nov 28, 2024
421b79e
feat: update to latest testnet sbtc
janniks Dec 3, 2024
2dd3253
chore: fixup readme
janniks Dec 3, 2024
96261b3
fix: remove unneeded code
janniks Dec 3, 2024
97773a3
fix!: rename to maxSignerFee for clarity
janniks Dec 3, 2024
8543f4b
fix: update docs and new buildSbtcDepositAddress method
janniks Dec 3, 2024
d329031
fix: remove unused import
janniks Dec 3, 2024
e9be50f
fix: update urls
janniks Dec 5, 2024
58631bd
fix: update deposit fetch
janniks Dec 6, 2024
ecb4465
fix: update emily deposit
janniks Dec 7, 2024
0e4c3aa
fix: update the broadcast headers
janniks Dec 12, 2024
a84863f
fix: implement reclaim and update defaults
janniks Dec 13, 2024
cadb2a0
feat: switch to mainnet sbtc
janniks Dec 13, 2024
36a2065
fix: update defaults
janniks Dec 17, 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
12 changes: 11 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
{
"markdown.extension.toc.levels": "2..6"
"markdown.extension.toc.levels": "2..6",

// Jest -> Vitest: Run
"jestrunner.jestCommand": "npx vitest run",

// Jest -> Vitest: Debug (Hack)
"jestrunner.jestPath": "node_modules/.bin/vitest",
"jestrunner.runOptions": ["--"],
"jestrunner.debugOptions": {
"args": ["run"]
}
}
2 changes: 1 addition & 1 deletion configs/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = {
{
loader: 'esbuild-loader',
options: {
target: 'es2017',
target: 'es2020',
tsconfig: 'tsconfig.build.json',
},
},
Expand Down
8 changes: 3 additions & 5 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
{
"version": "7.0.3",
"version": "independent",
"registry": "https://registry.npmjs.org/",
"publishConfig": {
"access": "public"
},
"changelogPreset": "conventionalcommits",
"packages": [
"packages/*"
]
}
"packages": ["packages/*"]
}
Loading
Loading