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

cross branch to rgbpp #15

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
91d2b5b
Make xudt cross-chain type one-to-one.
EthanYuan Aug 23, 2024
492a63d
rename tx to rgbpp_to_branch
EthanYuan Aug 23, 2024
d20090d
refactoring.
EthanYuan Aug 23, 2024
6b2f674
refactoring
EthanYuan Aug 23, 2024
2c3b387
Aggregator_Branch
EthanYuan Aug 23, 2024
c0c8336
refactoring.
EthanYuan Aug 23, 2024
0b41e17
add aggregator storage crate
EthanYuan Aug 24, 2024
a1a3195
init store in aggregator.
EthanYuan Aug 24, 2024
9cb8453
impl get_branch_queue_outbox_requests.
EthanYuan Aug 25, 2024
cf53018
impl check_storage.
EthanYuan Aug 25, 2024
de4e9c8
impl create_clear_queue_outbox_tx.
EthanYuan Aug 25, 2024
9ae4998
impl check request when branch to rgbpp.
EthanYuan Aug 25, 2024
7243563
update spec: deploy token manager in genesis.
EthanYuan Aug 25, 2024
f3a5cc1
impl create_burn_tx
EthanYuan Aug 25, 2024
cfa8f63
add poll_rgbpp_unlock
EthanYuan Aug 25, 2024
7a5a694
add create_unlock_tx.
EthanYuan Aug 26, 2024
514b435
update ckb-aggregator.toml
EthanYuan Aug 26, 2024
87671dc
add queue inbox cell in rgbpp
EthanYuan Aug 26, 2024
31c02c1
update spec.
EthanYuan Aug 26, 2024
a3535eb
add create_add_inbox_tx.
EthanYuan Aug 26, 2024
db52ad1
add test send_request.
EthanYuan Aug 26, 2024
04b4256
update verification: leap tx don't pay fee.
EthanYuan Aug 26, 2024
e3940d7
fix burn tx building
EthanYuan Aug 26, 2024
cc57c1b
fix clear queue outbox tx building.
EthanYuan Aug 26, 2024
926ba42
fix storage.
EthanYuan Aug 26, 2024
be08600
fix rgbpp queue inbox lock key path.
EthanYuan Aug 27, 2024
ceaad59
impl add rgbpp queue inbox tx building
EthanYuan Aug 27, 2024
fbd45e0
impl unlock tx.
EthanYuan Aug 27, 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
82 changes: 55 additions & 27 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ members = [
"ckb-bin",
"branch-chain-producer",
"aggregator/util/common",
"aggregator/util/storage",
"aggregator/util/rgbpp-tx",
"aggregator/aggregator-main"]

Expand Down
2 changes: 2 additions & 0 deletions aggregator/aggregator-main/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ edition = "2021"

[dependencies]
aggregator-common = { path = "../util/common", version = "0.1.0" }
aggregator-storage = { path = "../util/storage", version = "0.1.0" }
aggregator-rgbpp-tx = { path = "../util/rgbpp-tx", version = "0.1.0" }
ckb-app-config = { path = "../../util/app-config", version = "= 0.116.1" }
ckb-channel = { path = "../../util/channel", version = "= 0.116.1" }
ckb-hash = { path = "../../util/hash", version = "= 0.116.1" }
ckb-logger = { path = "../../util/logger", version = "= 0.116.1" }
ckb-stop-handler = { path = "../../util/stop-handler", version = "= 0.116.1" }

ckb-sdk = { git = "https://github.com/ethanyuan/ckb-sdk-rust", branch = "v3.2.1-branch-chain", features = ["native-tls-vendored"] }
ckb-gen-types = { package = "ckb-gen-types", git = "https://github.com/ethanyuan/ckb", branch = "v0.116.1-branch-chain" }
Expand Down
Loading
Loading