-
Notifications
You must be signed in to change notification settings - Fork 60
cuprated: CupratedRpcHandler, enable certain endpoints
#450
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
Merged
Merged
Changes from all commits
Commits
Show all changes
57 commits
Select commit
Hold shift + click to select a range
305fc86
add rpc server
hinto-janai 0f35406
add init fn
hinto-janai 9ed9b61
add layers
hinto-janai a65e041
Merge branch 'main' into rpc-server
hinto-janai 386f303
docs
hinto-janai 1c3cc7e
comments
hinto-janai f2cd202
move
hinto-janai c5785a0
warn
hinto-janai 7b75701
split config
hinto-janai f4b407f
split
hinto-janai f6b2e42
fix toml
hinto-janai 1b57675
impl p2p port
hinto-janai 38c692f
fix tests
hinto-janai c03bb64
docs
hinto-janai bd07f14
doc
hinto-janai c71f642
remove (de)compression
hinto-janai 02598ff
init rpc servers with handlers
hinto-janai d408af1
add `rpc.md`
hinto-janai 3b7d0f5
Merge branch 'main' into rpc-server
hinto-janai 61e9c7f
Merge branch 'main' into rpc-server
hinto-janai cf1fe0e
Merge branch 'main' into rpc-user
hinto-janai c5e2c3d
typo
hinto-janai d271bc6
sort
hinto-janai 7dbd117
revert cargo.lock diff
hinto-janai 11f8d64
🟣
hinto-janai be9e478
Merge branch 'main' into rpc-1
hinto-janai 018386e
not_available()
hinto-janai 950a9af
`advertise`
hinto-janai 1675184
Update binaries/cuprated/src/config/rpc.rs
hinto-janai ed733d5
update tracing
hinto-janai 94d1dff
Merge branch 'rpc-server' of github.com:hinto-janai/cuprate into rpc-…
hinto-janai 850a19e
`tracing::field::display`
hinto-janai 785c338
fix
hinto-janai 912eaac
typo
hinto-janai a4a25c0
docs
hinto-janai eef8abc
Merge branch 'main' into rpc-server
hinto-janai 3999a56
clippy
hinto-janai d1bedcf
remove comment_out
hinto-janai 5c9338f
add test for `cuprate_helper::net::ip_is_local`
hinto-janai a143dec
Merge branch 'rpc-server' into rpc-1
hinto-janai fdf478a
Merge branch 'main' into rpc-1
hinto-janai 7e3728b
Merge branch 'main' into rpc-1
hinto-janai 923a9e4
fix args
hinto-janai 4dcde70
`/get_outs`, `/get_height`
hinto-janai 2ff6629
enable methods
hinto-janai 188fbf4
Merge branch 'rpc-user' into rpc-1
hinto-janai 60374db
apply
hinto-janai d8e0b8a
block fn
hinto-janai 8883d8c
fix
hinto-janai ed9d6ae
clippy
hinto-janai dbf1973
Merge branch 'main' into rpc-1
hinto-janai 2fb1246
book
hinto-janai 38caf59
add warning
hinto-janai 4fa7e36
update
hinto-janai d79976a
typos
hinto-janai cafa5c1
Update binaries/cuprated/src/rpc/handlers/helper.rs
hinto-janai 6e55c89
fmt
hinto-janai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In
binaries/cuprated/src/rpc/handlers/{bin,json_rpc,other_json}.rs, the request handler mapping function will route tonot_availableuntil manually enabled in future PRs.The definition is...