Kit
Type aliases

GetSignaturesForAddressApi

GetSignaturesForAddressApi = object

Methods

getSignaturesForAddress()

Call Signature

getSignaturesForAddress(address, config?): GetSignaturesForAddressApiResponse

Returns signatures for confirmed transactions that load the given address.

Parameters
ParameterType
addressAddress
config?Readonly<{ before?: Signature; commitment?: AllowedCommitmentForGetSignaturesForAddress; limit?: number; minContextSlot?: Slot; until?: Signature; }> & Readonly<{ before: Signature; }>
Returns

GetSignaturesForAddressApiResponse

Signatures in reverse chronological order starting from before, but excluding, the signature supplied.

See

https://solana.com/docs/rpc/http/getsignaturesforaddress

Call Signature

getSignaturesForAddress(address, config?): GetSignaturesForAddressApiResponse

Returns signatures for confirmed transactions that load the given address.

Parameters
ParameterType
addressAddress
config?Readonly<{ before?: Signature; commitment?: AllowedCommitmentForGetSignaturesForAddress; limit?: number; minContextSlot?: Slot; until?: Signature; }>
Returns

GetSignaturesForAddressApiResponse

Signatures in reverse chronological order starting from the most recent confirmed block.

See

https://solana.com/docs/rpc/http/getsignaturesforaddress

On this page