This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * HttpBaseClient — a self-contained, framework-agnostic abstract HTTP client. | |
| * | |
| * Design goals: | |
| * - Single file, zero dependencies (Node 18+ / browser). | |
| * - Every outbound HTTP call goes through one pipeline so you get | |
| * consistent logging, error mapping, metrics, and query/body | |
| * serialization for free. | |
| * - Subclasses focus on vendor specifics: base URL, auth headers, | |
| * and optional error-body translation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ContractAddress | TokenName | TokenSymbol | holder count | transfer count | # of times appears in list | notes | |
|---|---|---|---|---|---|---|---|
| 0x420b595d8b648971b3bfcf46e66544c384860536 | VenmoCash | VMO | 1 | 6 | 2 | ||
| 0xdeeb40536e94be7226b77fb89d7d3cd65a82fb85 | Zoom Protocol | ZOM | 1 | 9 | 2 | ||
| 0xe670848d54788997942ecf938cd23b09550bae73 | TARO | TARO | 1 | 4 | 2 | ||
| 0xf28fec34928a1dc19b650104ae082665b66f720e | ETH/BTC Long-Only Alpha | XTF.SWCEBL | 1 | 4 | 2 | ||
| 0x030385efc63ebda6021d9098b1fcc422547d83d3 | Tacos @ Taconomics.io | $TACO | 2 | 5 | 2 | ||
| 0x03bb9bbf0423e44370e88ec5fc31eecf4e2b4ac2 | STVKE.Network | STV | 2 | 9 | 2 | ||
| 0x05e850909664a3cf926ca4777c3ec1577d36ec18 | OnFlow | Flow | 2 | 8 | 2 | ||
| 0x06ca771a689d6d5f5e435be2ef1d1ffc6bdb3b4c | Wing Token | WING | 2 | 8 | 2 | ||
| 0x08a958bdc9e0beb0c3ee2ec6e9c0013f14ce66e5 | Harold Returns | KEKW | 2 | 6 | 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- All mautic campaign delays merged. Two queries (the first is important). Takes under 10s. | |
| -- Depends on the PR of soft-deleted campaign events. | |
| SET @@group_concat_max_len = 10000000000000; | |
| SELECT * | |
| FROM ( | |
| SELECT NULL as campaign_id, | |
| NULL as campaign_name, | |
| NULL as event_id, | |
| NULL as event_name, | |
| NULL as lead_count, |