Add RPC/getSignaturesForAddress
This commit is contained in:
parent
f4e24044c0
commit
998905b8f8
|
@ -0,0 +1,47 @@
|
|||
package rpc
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/dfuse-io/solana-go"
|
||||
)
|
||||
|
||||
type GetSignaturesForAddressOpts struct {
|
||||
Limit int `json:"limit,omitempty"` // (optional) maximum transaction signatures to return (between 1 and 1,000, default: 1,000).
|
||||
Before solana.Signature `json:"before,omitempty"` // (optional) start searching backwards from this transaction signature. If not provided the search starts from the top of the highest max confirmed block.
|
||||
Until solana.Signature `json:"until,omitempty"` // (optional) search until this transaction signature, if found before limit reached.
|
||||
Commitment CommitmentType `json:"commitment,omitempty"` // (optional) Commitment; "processed" is not supported. If parameter not provided, the default is "finalized".
|
||||
}
|
||||
|
||||
// GetSignaturesForAddress returns confirmed signatures for transactions
|
||||
// involving an address backwards in time from the provided signature
|
||||
// or most recent confirmed block.
|
||||
// NEW: This method is only available in solana-core v1.7 or newer.
|
||||
// Please use getConfirmedSignaturesForAddress2 for solana-core v1.6
|
||||
func (cl *Client) GetSignaturesForAddress(
|
||||
ctx context.Context,
|
||||
account solana.PublicKey,
|
||||
// TODO: adopt opts style for all funcs that have lots of options.
|
||||
opts *GetSignaturesForAddressOpts,
|
||||
) (out []*TransactionSignature, err error) {
|
||||
params := []interface{}{account}
|
||||
if opts != nil {
|
||||
obj := M{}
|
||||
if opts.Limit > 0 {
|
||||
obj["limit"] = opts.Limit
|
||||
}
|
||||
if !opts.Before.IsZero() {
|
||||
obj["before"] = opts.Before
|
||||
}
|
||||
if !opts.Until.IsZero() {
|
||||
obj["until"] = opts.Until
|
||||
}
|
||||
if opts.Commitment != "" {
|
||||
obj["commitment"] = opts.Commitment
|
||||
}
|
||||
params = append(params, obj)
|
||||
}
|
||||
|
||||
err = cl.rpcClient.CallFor(&out, "getSignaturesForAddress", params)
|
||||
return
|
||||
}
|
10
rpc/types.go
10
rpc/types.go
|
@ -119,10 +119,12 @@ type DeprecatedTransactionMetaStatus struct {
|
|||
}
|
||||
|
||||
type TransactionSignature struct {
|
||||
Err interface{} `json:"err,omitempty"`
|
||||
Memo string `json:"memo,omitempty"`
|
||||
Signature string `json:"signature,omitempty"`
|
||||
Slot bin.Uint64 `json:"slot,omitempty"`
|
||||
Err interface{} `json:"err,omitempty"` // Error if transaction failed, null if transaction succeeded
|
||||
Memo string `json:"memo,omitempty"` // Memo associated with the transaction, null if no memo is present
|
||||
Signature solana.Signature `json:"signature"` // transaction signature as base-58 encoded string
|
||||
Slot bin.Uint64 `json:"slot,omitempty"` // The slot that contains the block with the transaction
|
||||
BlockTime bin.Int64 `json:"blockTime,omitempty"` // estimated production time, as Unix timestamp (seconds since the Unix epoch) of when transaction was processed. null if not available.
|
||||
ConfirmationStatus string `json:"confirmationStatus,omitempty"`
|
||||
}
|
||||
|
||||
type GetAccountInfoResult struct {
|
||||
|
|
Loading…
Reference in New Issue