The asset_identifier argument admits an asset identifier to observe, for example: ST1PQHQKV0RJXZFY1DGX8MNSNYVE3VGZJSRTPGZGM.cbtc-sip10::cbtc.
The actions argument admits an array of string types constrained to mint, transfer, and burn values, such as ["mint", "burn"].
Get any transaction related to a given non-fungible token asset identifier.
The asset-identifier argument is mandatory and requires a string type that fully qualifies the asset identifier to observe, for example: ST1PQHQKV0RJXZFY1DGX8MNSNYVE3VGZJSRTPGZGM.monkey-sip09::monkeys.
The actions argument is also mandatory and accepts an array of string types limited to the values mint, transfer, and burn, such as ["mint", "burn"].
Get any transaction emitting a given print events predicate.
The contract-identifier is a mandatory argument that requires a string type, fully qualifying the contract to observe, for example: ST1PQHQKV0RJXZFY1DGX8MNSNYVE3VGZJSRTPGZGM.monkey-sip09.
Additionally, you must include either the contains or matches_regex argument:
The contains argument accepts a string type, used for matching an event that contains the specified string, for example vault.
The matches_regex argument accepts a string type that should be a valid regex, used for matching an event that regex matches with the specified string, such as (?:^|\\W)vault(?:$|\\W).
Get any transaction calling a specific method for a given contract directly.
If the observed method is being called by another contract, this predicate won't detect it.
The contract-identifier is a mandatory argument that requires a string type, fully qualifying the contract to observe, for example SP000000000000000000002Q6VF78.pox.
The method is also a mandatory argument that accepts a string type, used for specifying the method to observe, such as stack-stx.
HTTP Post block/transaction payload to a given endpoint.
The http_post construct requires a url of type string (for example, http://localhost:3000/api/v1/wrapBtc) and an authorization_header of type string, which is a secret added to the request's authorization header.