-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Add token rpc endpoints to rpc-client #11315
Conversation
@@ -992,11 +992,6 @@ fn verify_signature(input: &str) -> Result<Signature> { | |||
.map_err(|e| Error::invalid_params(format!("Invalid param: {:?}", e))) | |||
} | |||
|
|||
pub enum TokenAccountsFilter { |
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.
Need access to this in solana-client
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.
Thanks for the quick turnaround
automerge label removed due to a CI failure |
Codecov Report
@@ Coverage Diff @@
## master #11315 +/- ##
=========================================
- Coverage 82.5% 82.4% -0.1%
=========================================
Files 316 316
Lines 74543 74618 +75
=========================================
+ Hits 61504 61528 +24
- Misses 13039 13090 +51 |
(cherry picked from commit 9bcfc51) # Conflicts: # client/src/rpc_client.rs
* Add token rpc endpoints to rpc-client (#11315) (cherry picked from commit 9bcfc51) # Conflicts: # client/src/rpc_client.rs * Fix conflicts Co-authored-by: Tyera Eulberg <[email protected]> Co-authored-by: Tyera Eulberg <[email protected]>
Problem
An spl-token CLI (solana-labs/solana-program-library#188) needs client methods for SPL token-specific RPC endpoints.
Summary of Changes