What's Changed
- Actualize RPC methods to match current Solana API spec by @sonicfromnewyoke in #363
This release updates RPC methods to align with the current Solana RPC API. Deprecated method names have been removed:
| Removed | Use Instead |
|---|---|
GetConfirmedBlock
| GetBlock
|
GetRecentBlockhash
| GetLatestBlockhash
|
GetConfirmedSignaturesForAddress2
| GetSignaturesForAddressWithOpts
|
GetConfirmedTransaction
| GetTransaction
|
CommitmentMax
| CommitmentFinalized
|
If your code uses any of the removed methods, update to the new names listed above.
Full Changelog: v1.15.0...v1.16.0