TransactionsGet transaction events Get transaction eventsRetrieves events for a specific transaction.GET/extended/v1/tx/eventsTransaction EventsRetrieves the list of events filtered by principal (STX address or Smart Contract ID), transaction id or event types. The list of event types is ('smart_contract_log', 'stx_lock', 'stx_asset', 'fungible_token_asset', 'non_fungible_token_asset').Query Parameterstx_idstringHash of transactionaddressstringStacks address or a Contract identifierExample: "ST1HB64MAJ1MBV4CQ80GF01DZS4T1DSMX20ADCRA4"limitintegernumber of items to returnExample: 100offsetintegernumber of items to skipExample: 42000typearray<string>Filter the events on event typeExample: "stx_lock"Status codeDescription200Success/extended/v1/tx/eventsSendQuerycURLJavaScriptcurl -X GET "https://api.hiro.so/extended/v1/tx/events?tx_id=string&address=ST1HB64MAJ1MBV4CQ80GF01DZS4T1DSMX20ADCRA4&limit=100&offset=42000&type=stx_lock"200GET event for the given transactionResponse{ "limit": 0, "offset": 0, "results": [ { "event_index": 0, "event_type": "smart_contract_log", "tx_id": "string", "contract_log": { "contract_id": "string", "topic": "string", "value": { "hex": "string", "repr": "string" } } } ] }TypescriptGet events for an address transactionGet mempool transactions