Skip to content

Commit

Permalink
[bitcoin-move] Skip op return and fix inscription bugs (#2523)
Browse files Browse the repository at this point in the history
* [bitcoin-move] Skip opreturn and fix envelop input bug

* introduce rooch-ord, provide ordinals rc client

* [test] Add new test case for cursed inscription

* types] Unify BitcoinInscriptionID with InscriptionID

* [bitcoin] Add retry to bitcoin client
  • Loading branch information
jolestar authored Aug 28, 2024
1 parent 419b945 commit 1841fe0
Show file tree
Hide file tree
Showing 28 changed files with 879 additions and 206 deletions.
94 changes: 93 additions & 1 deletion Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ members = [
"crates/rooch-types",
"crates/rooch-event",
"crates/testsuite",
"crates/rooch-ord",
"frameworks/bitcoin-move",
"frameworks/framework-builder",
"frameworks/framework-release",
Expand Down Expand Up @@ -127,6 +128,7 @@ rooch-test-transaction-builder = { path = "crates/rooch-test-transaction-builder
data-verify = { path = "crates/data_verify" }
rooch-db = { path = "crates/rooch-db" }
rooch-event = { path = "crates/rooch-event" }
rooch-ord = { path = "crates/rooch-ord" }

# frameworks
framework-types = { path = "frameworks/framework-types" }
Expand Down Expand Up @@ -177,6 +179,7 @@ more-asserts = "0.3.0"
num-derive = "0.3.3"
num-traits = "0.2.15"
once_cell = "1.10.0"
ordinals = "0.0.9"
parking_lot = "0.12.3"
pathdiff = "0.2.1"
petgraph = "0.6.5"
Expand All @@ -188,6 +191,7 @@ proptest-derive = "0.3.0"
rayon = "1.5.2"
rand = "0.8.5"
rand_core = { version = "0.6.3", default-features = false }
reqwest = { version = "0.12", features = ["json"] }
schemars = { version = "0.8.21", features = ["either"] }
serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_bytes = "0.11.15"
Expand Down
1 change: 1 addition & 0 deletions crates/rooch-framework-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ rooch-config = { workspace = true }
rooch-db = { workspace = true }
rooch-event = { workspace = true }
rooch-relayer = { workspace = true }
rooch-ord = { workspace = true }

bitcoin-move = { workspace = true }
framework-builder = { workspace = true }
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit 1841fe0

Please sign in to comment.