createRevocationBatch static method
Creates multiple revocation authorizations.
This is useful for revoking multiple delegations in a single transaction.
Implementation
static AuthorizationBatch createRevocationBatch({
required int chainId,
required List<BigInt> nonces,
}) {
return AuthorizationBatch.revocations(
chainId: chainId,
nonces: nonces,
);
}