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

Json API for Ord #2036

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1481d0b
Initial api for ord endpoints, using accept json
ynohtna92 Mar 18, 2023
9649e2b
Added wallet endpoints for receive, balance and transactions
ynohtna92 Mar 21, 2023
ae0847e
Rust linter issues fixed for previous features
ynohtna92 Mar 21, 2023
702b0a7
Added post wallet endpoints
ynohtna92 Apr 2, 2023
e5600a3
Added rest api documentation
ynohtna92 Apr 4, 2023
ea50c46
Inscribe json output to individual fields
ynohtna92 Apr 5, 2023
92d5698
Add api http redirect to docs
ynohtna92 Apr 15, 2023
1b2409a
Fix linter errors
ynohtna92 Apr 16, 2023
4170ea8
Add /address endpoint and indexing
ynohtna92 Apr 18, 2023
03e984c
Update restapi docs for /address endpoint
ynohtna92 Apr 18, 2023
4d50b21
Correct updater so address is properly removed
ynohtna92 Apr 20, 2023
9d165fa
Fixes building issues
ynohtna92 Apr 26, 2023
8b106ad
Added json output for /inscriptions
ynohtna92 Apr 25, 2023
7a8d7ef
This should never fail otherwise something went really wrong
ynohtna92 Apr 26, 2023
0756a75
To ?
ynohtna92 Apr 26, 2023
9e805c5
Merge remote-tracking branch 'origin/master' into json-api
ynohtna92 May 8, 2023
9749ac7
Added genesis address to inscription
ynohtna92 May 24, 2023
3f44a1a
Added inscriptions to output json
ynohtna92 May 17, 2023
2eda41b
Improved block and transaction outputs to include more fields
ynohtna92 May 24, 2023
43322fc
Merge remote-tracking branch 'origin/master' into json-api
ynohtna92 Jun 3, 2023
a632557
Add new api_wallet_enable config flag and fix tests
ynohtna92 Jun 3, 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
1 change: 1 addition & 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 @@ -15,6 +15,7 @@ members = [".", "test-bitcoincore-rpc"]

[dependencies]
anyhow = { version = "1.0.56", features = ["backtrace"] }
async-trait = "0.1.63"
axum = { version = "0.6.1", features = ["headers"] }
axum-server = "0.5.0"
base64 = "0.21.0"
Expand Down
Loading