-
Notifications
You must be signed in to change notification settings - Fork 908
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
feat: Agave v2 RPC: replace getConfirmedTransaction
with getTransaction
#3418
feat: Agave v2 RPC: replace getConfirmedTransaction
with getTransaction
#3418
Conversation
|
This stack of pull requests is managed by Graphite. Learn more about stacking. |
2fe2282
to
6acd1dc
Compare
950dba5
to
ee67085
Compare
6acd1dc
to
22a65a5
Compare
ee67085
to
f96e4d2
Compare
22a65a5
to
77b6e59
Compare
f96e4d2
to
1dbecf8
Compare
77b6e59
to
c35251a
Compare
1dbecf8
to
ac08a16
Compare
c35251a
to
6607d91
Compare
ac08a16
to
e23d27c
Compare
6607d91
to
e730045
Compare
e23d27c
to
e71da6f
Compare
Merge activity
|
The base branch was changed.
The base branch was changed.
e71da6f
to
3065292
Compare
A preview of the GitHub Pages site based on this PR is now available here: |
🎉 This PR is included in version 1.97.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Problem
With the upcoming upgrade from 1.18 to 2.0 on Solana mainnet-beta, deprecated RPC methods have been removed, therefore they will no longer be available through Web3.js client requests.
The Agave 2.0 Migration Guide lists semi-equivalent RPC method counterparts for each of the removed methods.
Summary of Changes
Replace
getConfirmedTransaction
withgetTransaction
. This method was already requiring a confirmation level ofconfirmed
orfinalized
, so the behavior should be unchanged.