Can Scribe be configured to store in the PQS the created_event_blob
(which is required for Explicit Disclosure)?
One needs to use the metadata filter to indicate which templates to capture metadata for (same rules as contract filters use):
$ scribe.jar pipeline -h
...
--pipeline-filter-metadata string Filter expression determining which templates and interfaces to capture metadata for (default: !*)
Captured data will be available in the metadata
column in the query functions output:
postgres=# select template_fqn, metadata from creates();
template_fqn | metadata
--------------------------+----------
daml:PingPong:Ping | \x
daml:PingPong:Ping | \x
2 Likes
And the full contents of the metadata
column is what the docs call the created_event_blob
? Or would I need to parse the metadata
and extract the created_event_blob
?
This is correct - metadata
column’s type is bytea
(byte array) in Postgres so it’s a direct storage for created_event_blob
contents. No need to parse it.