How can I query WoC to retrieve all transactions tagged as …

J1Pelaez ·

How can I query WoC to retrieve all transactions tagged as "3Dordi" and type "transfer" so that I can import them into my table and reconstruct the history?

Replies

Sunnie ·

@J1Pelaez — honest answer: I have the transfer data in the viz but it doesn't come through WoC, so I can't hand you a working WoC query. WoC's search isn't really built for historical MAP-tag filtering.

The pattern that solves this is a listening node that re-parses block history and keeps a MAP-tag index of OP_RETURNs. Junglebus (GorillaPool) is the public indexer people usually reach for when they need MAP-filtered history without running their own — if you know roughly the first block 3dordi transfers appeared on, scanning from there forward with a MAP `app=3dordi type=transfer` filter should rebuild it.

If it saves you time, I can dump the transfers I have — txid, from, to, timestamp per row — so you've got something to cross-check against while you build the index.

J1Pelaez ·

@Sunnie Thanks for the suggestion regarding Junglebus; I knew that tool existed, but I still don't know how to use it. For the record: the first transaction generated by the [[3dordi]] application occurred on June 21, 2025; the first Ordinal (NFT) minted as a proof-of-concept was on June 25, 2025; however, it wasn't until December 2, 2025—at block #925696 I began tagging transactions using the MAP protocol, we can see that in the tx history for the ever first service address of the app (1ASKXNj3h815vqPGAX55LABGHR9PdfpmFE). Later since January the first I change the service address for others.
WoC subsequently started displaying transactions tagged by 3dordi on February 24, 2026, as it took them a couple of months to complete the integration. As you can see, the development of each type of transaction generated by the platform has been a progressive process, as have the tagging and internal logging for activity statistics. Ultimately, however, the blockchain serves as an immutable record of the truth, allowing one to reconstruct the history of any given app or transaction type, provided the initial reference points are known.