Function pendingTransferStrategies

  • Creates a query object for the get_pending_transfer_strategies - query

    Parameters

    • recipientId: Buffer

      the account id of the recipient of the transfer. I.e., the account that will be created

    • Optional filter: Partial<Filter<{
          state: PendingTransferExpirationState;
      }>>

      optionally filter to only receive the transfer strategies which did not expire

    Returns QueryObject<string[], {
        filter?: Filter<{
            state: PendingTransferExpirationState;
        }>;
        recipient_id: Buffer;
    }>