Struct LogRetrievalRequest
pub struct LogRetrievalRequest {
pub contract_address: AztecAddress,
pub unsiloed_tag: Field,
pub source: Field,
pub from_block: Option<Field>,
pub to_block: Option<Field>,
}
Fields
contract_address: AztecAddressunsiloed_tag: Fieldsource: FieldWhich log source to query: public, private, or both (the default). See LogSource.
Inclusive lower bound on block number. When unset, logs from the first block are included.
Exclusive upper bound on block number. When unset, logs up to the anchor block are included.
A request for the
bulk_retrieve_logsoracle to fetch all logs matching a tag.