ProxyBuffer exposes two methods for registering devices: RegisterDevice and BatchRegisterDevice. Internally, these register the device(s) in an internal SQLite database. Additionally, the service has an async process (syncer) that periodically reads the local database to find unregistered records, send them to an external registry, and mark them as registered.
However, we don't have a way of figuring out which records have already been processed in the registry besides manually querying the internal database (which might not be an easy thing to do depending on the SQLite config).
We should have additional RPC methods in ProxyBuffer to check this status: something like CheckDeviceStatus and BatchCheckDeviceStatus.