abstract fun lookupRevocationRegistryDeltaJson(agent: Agent, revocationRegistryId: String, from: Long, to: Long): Single<String>
Lookups the revocation registry delta for the given registry in the range specified.
revocationRegistryId
- the revocation registry identifier
from
- timestamp represents as Epoch seconds
to
- timestamp represents as Epoch seconds
Return
revocation registry delta json:
{
value: {
prevAccum: string - previous accumulator value.
accum: string - current accumulator value.
revoked: array an array of revoked indices.
},
ver: string - version revocation registry delta json
}