streamingfast / solana-go

Go library for the Solana Blockchain
Apache License 2.0
121 stars 25 forks source link

feat: add rpc call for getsignaturesforaddress #6

Closed roynalnaruto closed 3 years ago

roynalnaruto commented 3 years ago

The getconfirmedsignaturesforaddress2 method is expected to be deprecated from Solana v1.8.0. Solana prescribe using the getsignaturesforaddress method instead, which has the same interface (options, result as well).

This PR is a simple change adding support for the getSignaturesforAddress RPC method.

abourget commented 3 years ago

Thanks!