SubscribeBlockFilter.mentionsAccountOrProgram constructor

SubscribeBlockFilter.mentionsAccountOrProgram(
  1. SolAddress account
)

return only transactions that mention the provided public key (as base-58 encoded string). If no mentions in a given block, then no notification will be sent.

Implementation

factory SubscribeBlockFilter.mentionsAccountOrProgram(SolAddress account) {
  return SubscribeBlockFilter._(account);
}