forSponsor method

ClaimableBalancesRequestBuilder forSponsor(
  1. String signerAccountId
)

Returns all claimable balances for the account id of the sponsor who is paying the reserves for this claimable balances. See: Claimable Balances

Implementation

ClaimableBalancesRequestBuilder forSponsor(String signerAccountId) {
  queryParameters.addAll({SPONSOR_PARAMETER_NAME: signerAccountId});
  return this;
}