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

Collections not using psbt workflow #1963

Closed
wants to merge 57 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
db29dbc
enable collections through parent inscriptions method #783
raphjaph Mar 2, 2023
d108043
Update src/inscription.rs
raphjaph Mar 2, 2023
1253365
Update src/inscription.rs
raphjaph Mar 2, 2023
33cf4b5
review changes
raphjaph Mar 2, 2023
a43c376
stash
raphjaph Mar 3, 2023
c781e55
stash
raphjaph Mar 7, 2023
d2eee55
Update src/inscription.rs
raphjaph Mar 7, 2023
fe5d9d8
merging
raphjaph Mar 7, 2023
9025ffa
Merge branch 'collections' of https://github.com/raphjaph/ord into co…
raphjaph Mar 7, 2023
1bd6333
small clean up
raphjaph Mar 7, 2023
af9344e
stashing
raphjaph Mar 7, 2023
96a08c2
stash
raphjaph Mar 7, 2023
01bc48e
quick fix
raphjaph Mar 7, 2023
a5029a9
fixed database stuff
raphjaph Mar 7, 2023
ff6c809
Fix sighashflag issue
Mar 8, 2023
340fdef
Fix signature error
Mar 8, 2023
ca16f44
refector re-inscription handling
raphjaph Mar 8, 2023
791e21c
More robust parsing
Mar 8, 2023
aef890b
Merge branch 'collections' of https://github.com/raphjaph/ord into co…
Mar 8, 2023
4e4cf9f
Add temporary debug logging and TODO regarding bug in building the
Mar 10, 2023
24f5bdb
inscription index now correct
raphjaph Mar 10, 2023
1aa8238
Merge branch 'collections' of https://github.com/raphjaph/ord into co…
raphjaph Mar 10, 2023
1f33ff7
Encode schnorr signature with proper sighashtype when inscribing with…
Mar 10, 2023
5f82a48
stash
raphjaph Mar 10, 2023
df32f27
Merge branch 'collections' of https://github.com/raphjaph/ord into co…
raphjaph Mar 10, 2023
edd0a76
refactoring
raphjaph Mar 10, 2023
044d6de
Update src/inscription.rs
veryordinally Mar 11, 2023
aaaffb6
Fixed formatting
Mar 11, 2023
3ef11d0
Handle child inscription index correctly.
Mar 11, 2023
cb7573b
rename
raphjaph Mar 13, 2023
9a157b4
merging
raphjaph Mar 13, 2023
b05c15f
fix inscriptionId index and remove unused file
raphjaph Mar 13, 2023
fbc4cde
finally
raphjaph Mar 22, 2023
0d362e4
cleanup and works
raphjaph Mar 22, 2023
6dd7f7b
fmt
raphjaph Mar 22, 2023
7274ab7
quick fix
raphjaph Mar 23, 2023
a7dddb5
Added unit test for inscription with custom fee rate and parent.
Mar 24, 2023
e9e40e8
Remove obsolete TODOs
Mar 24, 2023
01caaaa
Fix tests
Mar 24, 2023
1c1a408
fmt
Mar 24, 2023
cf84b34
Merge branch 'master' of https://github.com/casey/ord into collection…
raphjaph Mar 25, 2023
ebab8cb
Dummy interface for children
Mar 25, 2023
a01e237
Naive implementation of get_children_by_id
Mar 25, 2023
58c5020
Added test
Mar 25, 2023
84d9417
children pages
raphjaph Mar 25, 2023
de8cb4c
Merge branch 'collections-no-psbt' of https://github.com/raphjaph/ord…
raphjaph Mar 25, 2023
96ff43b
ugly html pages for children
raphjaph Mar 25, 2023
1419c2b
Implement cache for get_children_by_id
Mar 25, 2023
ccd5f71
Update children cache when new child inscriptions are inscribed
Mar 26, 2023
03b6088
Improvements to children's page
Mar 26, 2023
0c53336
Fix caching of children
Mar 26, 2023
d78fd61
Layout updates
Mar 27, 2023
3d50eff
Sort children by inscription number
Mar 27, 2023
84cf8d3
Merge branch 'master' of https://github.com/casey/ord into collection…
raphjaph Mar 27, 2023
a88e67c
fix tests
raphjaph Mar 27, 2023
ca980a5
correct test
raphjaph Mar 27, 2023
0842994
see preview of children
raphjaph Mar 31, 2023
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
16 changes: 16 additions & 0 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 @@ -34,6 +34,7 @@ html-escaper = "0.2.0"
http = "0.2.6"
hyper = { version = "0.14.24", features = ["http1", "client"] }
indicatif = "0.17.1"
itertools = "0.10.0"
lazy_static = "1.4.0"
log = "0.4.14"
mime = "0.3.16"
Expand Down
Loading