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

RGB v0.12: zk-STARKy, fully refactored and simplified #267

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9d69fa3
nullify repo for refactoring
dr-orlovsky Dec 6, 2024
fb2ebc0
new descriptor
dr-orlovsky Dec 9, 2024
74dce7a
new wallet
dr-orlovsky Dec 10, 2024
ffd4073
make cli compile
dr-orlovsky Dec 10, 2024
fd324ad
bundle and PSBT creation
dr-orlovsky Dec 10, 2024
1e063f1
remove v0.11 files
dr-orlovsky Dec 10, 2024
84ae82b
complete accept and consign commands
dr-orlovsky Dec 15, 2024
36ec7dd
chore: use github-based rgb-std patch
dr-orlovsky Dec 15, 2024
f0a6aa0
chore: update dependencies
dr-orlovsky Dec 16, 2024
c7f8826
debug contract issue
dr-orlovsky Dec 16, 2024
6b192b9
improve contracts and state commands
dr-orlovsky Dec 17, 2024
f6db3da
funding and invoicing
dr-orlovsky Dec 17, 2024
18012f8
debug reading script for exec command
dr-orlovsky Dec 18, 2024
f11f30e
rename rgb-bp to rgb-runtime
dr-orlovsky Dec 20, 2024
542206e
chore: update formatting rules
dr-orlovsky Dec 20, 2024
bc29c5b
cli: add wallet sync; improve state display
dr-orlovsky Dec 20, 2024
fa51d7a
add outpoint information into the contract state
dr-orlovsky Dec 20, 2024
30262b2
wip on debugging
dr-orlovsky Dec 21, 2024
e9ec0a8
support state filtering basing on wallet ownership
dr-orlovsky Dec 21, 2024
e7d2efd
add complete procedure
dr-orlovsky Dec 21, 2024
484c50d
debug PSBT completion procedure
dr-orlovsky Dec 21, 2024
6ce02fe
complete PSBT processing
dr-orlovsky Dec 22, 2024
31edd8f
debug transfers
dr-orlovsky Dec 23, 2024
50ad8cd
save seal definition information to wallet
dr-orlovsky Dec 23, 2024
eec5e16
resolve seals on consignment consume
dr-orlovsky Dec 23, 2024
520811a
chore: update data
dr-orlovsky Dec 23, 2024
227912a
ci: update branch filter rules
dr-orlovsky Dec 23, 2024
a37ab77
chore: update dependencies
dr-orlovsky Dec 23, 2024
a81b205
chore: fix clippy lints
dr-orlovsky Dec 23, 2024
e6adad0
chore: add description to rgb-wallet crate
dr-orlovsky Dec 23, 2024
45d5aac
fix: tapret fund with opret wallet
Crayon-Shin-chan-bitlightlabs Jan 8, 2025
f5f35b9
fix typo
crisdut Jan 9, 2025
5cdfef8
Merge pull request #271 from crisdut/fix/typo
dr-orlovsky Jan 10, 2025
45a5ebd
Merge pull request #270 from Crayon-Shin-chan-bitlightlabs/v0.12
dr-orlovsky Jan 10, 2025
3187de5
chore: update dependencies
dr-orlovsky Jan 10, 2025
3f286db
wip
dr-orlovsky Jan 10, 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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 2 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ max_width = 100
array_width = 100
attr_fn_like_width = 100
comment_width = 100
chain_width = 60
fn_call_width = 100
single_line_if_else_max_width = 100
struct_lit_width = 60

fn_single_line = true
format_code_in_doc_comments = true
Expand Down
Loading