8000 Api by ynohtna92 · Pull Request #3 · ynohtna92/ord-litecoin · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Api #3

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

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
a9b7a3f
Initial api for ord endpoints, using accept json
ynohtna92 Mar 18, 2023
9a8461e
Added wallet endpoints for receive, balance and transactions
ynohtna92 Mar 21, 2023
7ff2875
Rust linter issues fixed for previous features
ynohtna92 Mar 21, 2023
84c9134
Added post wallet endpoints
ynohtna92 Apr 2, 2023
444e7b0
Added rest api documentation
ynohtna92 Apr 4, 2023
336b452
Inscribe json output to individual fields
ynohtna92 Apr 5, 2023
ac96334
Merge from orgin/master
ynohtna92 Apr 6, 2023 8000
da2d490
Merge branch 'master' into api
ynohtna92 Apr 15, 2023
21537f8
Add api http redirect to docs
ynohtna92 Apr 15, 2023
06af6e2
Fix linter errors
ynohtna92 Apr 16, 2023
a27606a
Add /address endpoint and indexing
ynohtna92 Apr 18, 2023
9e7621f
Update restapi docs for /address endpoint
ynohtna92 Apr 18, 2023
ac2893b
Correct updater so address is properly removed
ynohtna92 Apr 20, 2023
70af49e
Merge branch 'master' into api
ynohtna92 Apr 20, 2023
837d588
Added json output for /inscriptions
ynohtna92 Apr 25, 2023
e8457e6
This should never fail otherwise something went really wrong
ynohtna92 Apr 26, 2023
3261573
To ?
ynohtna92 Apr 26, 2023
2340af8
Added genesis address to inscription
ynohtna92 May 9, 2023
1c3bc5c
Added inscriptions to output json
ynohtna92 May 17, 2023
ebc3114
Improved block and transaction outputs to include more fields
ynohtna92 May 17, 2023
9395f4d
Merge branch 'master' into api
ynohtna92 May 31, 2023
f79ef36
Add new api_wallet_enable config flag and fix tests
ynohtna92 Jun 2, 2023
f66a5c6
Added additional params for the json api address endpoint
ynohtna92 Jun 9, 2023
2120cd0
Added script_pubkey output in api inscription output
ynohtna92 Jun 10, 2023
5d23b79
Add additional inscription information on output endpoint
ynohtna92 Jun 22, 2023
e854ce1
Merge commit 'b8c6269d361f1e9bebe0bf007466e9154659e204' into api
ynohtna92 Aug 12, 2023
b3923c9
Merge commit 'a2956651f257a4281e30b9aec486f1fb1a26b958' into api
ynohtna92 Aug 12, 2023
f583b79
Merge branch 'master' into api
ynohtna92 Aug 12, 2023
ccad004
Upgrade from bad redb version
ynohtna92 Aug 29, 2023
2f9ccce
Extend blocks api with inputs, outputs and inscriptions
ynohtna92 Dec 22, 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: 12 additions & 4 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion 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 All @@ -31,6 +32,7 @@ env_logger = "0.10.0"
futures = "0.3.21"
hex = "0.4.3"
html-escaper = "0.2.0"
htmlescape = "0.3.1"
http = "0.2.6"
hyper = { version = "0.14.24", features = ["http1", "client"] }
indicatif = "0.17.1"
Expand All @@ -41,7 +43,7 @@ mime_guess = "2.0.4"
miniscript = "9.0.1"
mp4 = "0.13.0"
bitcoincore-rpc = "0.16.0"
redb = "1.0.2"
redb = "1.0.5"
regex = "1.6.0"
rss = "2.0.1"
rust-embed = "6.4.0"
Expand Down
Loading
0