[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-tres-export-3rd-party-contacts":3,"mdc--fcp3cu-key":37,"related-repo-anthropic-tres-export-3rd-party-contacts":1597,"related-org-anthropic-tres-export-3rd-party-contacts":1701},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"tres-export-3rd-party-contacts","export third-party contacts to Excel","Extract all 3rd-party (non-owned) addresses from a TRES Finance environment and export them as an XLSX workbook to help users build their contacts list. Use this skill whenever the user wants to export, list, or identify 3rd-party addresses, counterparties, or external addresses from their transactions — even if they don't say 'contacts'. Also trigger when the user asks to prepare a contacts import file, find unknown addresses, or build an address book from transaction history. Do NOT trigger for viewing existing contacts or searching the address book — only for extracting NEW 3rd-party addresses from transaction data.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Reporting","reporting","tag",{"name":18,"slug":19,"type":16},"Excel","excel",{"name":21,"slug":22,"type":16},"Finance","finance",{"name":24,"slug":25,"type":16},"Spreadsheets","spreadsheets",294,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-community","2026-07-02T07:38:03.965505",null,69,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Community plugin marketplace for Claude Cowork and Claude Code. Read-only mirror — submit plugins at clau.de\u002Fplugin-directory-submission.","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-community\u002Ftree\u002FHEAD\u002Ftres-finance-plugin\u002Fskills\u002Ftres-export-3rd-party-contacts","---\nname: tres-export-3rd-party-contacts\ndescription: \"Extract all 3rd-party (non-owned) addresses from a TRES Finance environment and export them as an XLSX workbook to help users build their contacts list. Use this skill whenever the user wants to export, list, or identify 3rd-party addresses, counterparties, or external addresses from their transactions — even if they don't say 'contacts'. Also trigger when the user asks to prepare a contacts import file, find unknown addresses, or build an address book from transaction history. Do NOT trigger for viewing existing contacts or searching the address book — only for extracting NEW 3rd-party addresses from transaction data.\"\n---\n\n# TRES Finance — Export 3rd-Party Addresses as Contacts Workbook\n\n## Goal\n\nFetch all **unidentified** external addresses from the user's TRES environment using the `accountTxsSummary` query (the same data source that powers the \"Unidentified Addresses\" tab in the TRES UI), deduplicate them, enrich them with activity data, and produce an XLSX workbook with two tabs:\n\n1. **Contacts** — the import-ready sheet matching the TRES contacts template. The user fills in names and tags here, then imports this sheet back into TRES.\n2. **Address details** — enrichment data (network, tx counts, fiat volumes) to help users identify who each address belongs to.\n\nThe workflow gives users a fast way to build their address book: Claude extracts, deduplicates, and enriches the unidentified addresses, and the user just needs to label them.\n\n## MCP Server\n\nAll GraphQL calls use the **user-tres-finance** MCP server (`execute` tool).\n\n## Workflow\n\n### Step 1 — Authenticate\n\nCall `get_viewer` (no arguments) to confirm the session is active and note the organization name.\n\n### Step 2 — Fetch unidentified addresses\n\nUse the `accountTxsSummary` query with `identificationState: \"UNIDENTIFIED\"` — this is the same query the TRES UI uses for the \"Unidentified Addresses\" tab under Accounts. It already excludes the organization's own wallets and returns only external counterparty addresses that haven't been named yet.\n\n```graphql\nquery UnidentifiedAddresses($limit: Int, $offset: Int, $identificationState: String, $excludeInternalAccounts: Boolean, $fiatCurrency: String) {\n  accountTxsSummary(\n    limit: $limit\n    offset: $offset\n    identificationState: $identificationState\n    excludeInternalAccounts: $excludeInternalAccounts\n    fiatCurrency: $fiatCurrency\n  ) {\n    totalCount\n    results {\n      accountIdentifier\n      displayName\n      inflowTxCount\n      outflowTxCount\n      inflowFiatValue\n      outflowFiatValue\n    }\n  }\n}\n```\n\nVariables:\n```json\n{\n  \"limit\": 500,\n  \"offset\": 0,\n  \"identificationState\": \"UNIDENTIFIED\",\n  \"excludeInternalAccounts\": true,\n  \"fiatCurrency\": \"usd\"\n}\n```\n\nPaginate through all results (increment `offset` by 500 each time until you've collected all entries from `totalCount`).\n\n### Step 3 — Deduplicate and detect network\n\nThe `accountTxsSummary` query can return the same address more than once (e.g. different casing variants of the same EVM address, or separate rows for sender vs. receiver context). Deduplicate by **lowercased** `accountIdentifier`:\n\n- Build a dictionary keyed by `accountIdentifier.lower()`\n- For each address, keep the first occurrence's original casing and accumulate the total inflow + outflow tx count and fiat values\n- Skip addresses with an empty or null `accountIdentifier`\n\nSort the deduplicated addresses by total fiat volume (inflow + outflow) descending, so the most active counterparties appear first — these are typically the ones the user will want to label first.\n\n**Network detection:** The API does not return a network field, so infer the network from the address format. Use these rules:\n\n| Address pattern | Network |\n|---|---|\n| Starts with `0x` (42 chars, hex) | EVM |\n| Starts with `KT1` | Tezos (contract) |\n| Starts with `tz1`, `tz2`, `tz3` | Tezos |\n| Starts with `T` (34 chars, base58) | Tron |\n| Starts with `bc1` or `1` or `3` (25–62 chars) | Bitcoin |\n| Starts with `r` (25–35 chars) | XRP Ledger |\n| Starts with `cosmos1` | Cosmos |\n| Starts with `osmo1` | Osmosis |\n| Starts with `terra1` | Terra |\n| Starts with `addr1` or `stake1` | Cardano |\n| Starts with `bnb1` | BNB Beacon Chain |\n| Starts with `G` (56 chars) | Stellar |\n| Starts with `D` or `A` or `L` or `M` or `ltc1` (26–35 chars) | Litecoin\u002FDogecoin (best guess) |\n| None of the above | Unknown |\n\nThis is a best-effort heuristic — EVM addresses in particular could belong to Ethereum, Polygon, Arbitrum, Base, Avalanche, BSC, or any other EVM-compatible chain. The label \"EVM\" is intentionally broad because the address alone can't distinguish which chain it's on.\n\n### Step 4 — Build the XLSX workbook\n\nUse Python with `openpyxl==3.1.5`. If not installed, stop and display:\n> \"openpyxl is not installed. Please run: `python3 -m venv .venv && .venv\u002Fbin\u002Fpip install openpyxl==3.1.5`\"\n\n#### Tab 1: \"Contacts\" (import-ready)\n\nThis sheet matches the TRES contacts import template exactly:\n\n| Contact Name | Contact Address | Contact Tag |\n|---|---|---|\n| *(blank)* | 0xABC... | *(blank)* |\n\n- **Contact Name**: leave blank (the user will fill this in)\n- **Contact Address**: the address identifier (original casing)\n- **Contact Tag**: leave blank (the user will fill this in)\n- Sorted by total fiat volume descending (same order as Address details)\n\n#### Tab 2: \"Address details\" (enrichment)\n\n| Contact Address | Network | Inflow Txs | Outflow Txs | Inflow USD | Outflow USD | Total USD |\n|---|---|---|---|---|---|---|\n| 0xABC... | EVM | 142 | 38 | 1,240,500 | 890,200 | 2,130,700 |\n| KT1Xyz... | Tezos (contract) | 6 | 0 | 40,144,631 | 0 | 40,144,631 |\n| TBmxn... | Tron | 23 | 5 | 340,100 | 52,000 | 392,100 |\n\n- Same address order as the Contacts tab (sorted by Total USD descending)\n- `Network`: inferred from address format (see Step 3)\n- `Inflow Txs` \u002F `Outflow Txs`: from `accountTxsSummary` results\n- `Inflow USD` \u002F `Outflow USD`: from `accountTxsSummary` fiat values\n- `Total USD`: sum of inflow + outflow fiat values\n\n#### Formatting guidelines\n\n- Bold the header row on all tabs\n- Auto-fit column widths for readability\n- Format USD columns as numbers (no $ prefix in cells — use Excel number formatting)\n- The \"Contacts\" tab should be the first\u002Factive sheet when the file opens, since that's the one the user will work in\n\n### Step 5 — Save and present\n\nSave the XLSX to the outputs directory. Use a descriptive filename like `tres_3rd_party_contacts_\u003Corg_name>_\u003Cdate>.xlsx` (replace spaces and special chars with underscores).\n\nPresent the file to the user with a brief summary:\n- How many unique unidentified addresses were found\n- Total number of transactions involving these addresses\n- A link to the XLSX file\n\nThen explain what each tab is for:\n\n> **Your workbook has 2 tabs:**\n>\n> 1. **Contacts** — This is the import-ready sheet. Fill in the **Contact Name** for each address you recognize, and optionally add a **Contact Tag** (e.g. `Exchange`, `Vendor`, `Treasury`). When you're done, use the **contacts import skill** to upload this sheet back into TRES.\n>\n> 2. **Address details** — Reference tab showing the detected network, activity stats for each address (inflow\u002Foutflow transaction counts and USD volumes). Use this to prioritize which addresses to label — the highest-volume counterparties are at the top. The network column helps narrow down which chain the address belongs to.\n\n## Edge Cases\n\n- **No unidentified addresses found**: If the result set is empty, tell the user — it likely means all counterparty addresses are already in the contacts list.\n- **Mixed-case addresses**: EVM addresses can appear in different checksummed forms. Always compare in lowercase for deduplication, but preserve the original case in the output.\n- **Zero\u002Fburn addresses**: Include `0x0000000000000000000000000000000000000000` in the output if it appears — the user may still want to label it as \"Burn Address\" or similar.\n- **Unknown network**: If an address doesn't match any known pattern, set Network to \"Unknown\". Don't skip the address — it's still a valid counterparty.\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,51,58,81,106,111,117,137,143,150,163,169,189,373,378,565,585,591,617,647,652,662,1015,1020,1026,1039,1055,1062,1067,1118,1152,1158,1311,1385,1391,1414,1420,1433,1438,1456,1461,1534,1540,1591],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"tres-finance-export-3rd-party-addresses-as-contacts-workbook",[48],{"type":49,"value":50},"text","TRES Finance — Export 3rd-Party Addresses as Contacts Workbook",{"type":43,"tag":52,"props":53,"children":55},"h2",{"id":54},"goal",[56],{"type":49,"value":57},"Goal",{"type":43,"tag":59,"props":60,"children":61},"p",{},[62,64,70,72,79],{"type":49,"value":63},"Fetch all ",{"type":43,"tag":65,"props":66,"children":67},"strong",{},[68],{"type":49,"value":69},"unidentified",{"type":49,"value":71}," external addresses from the user's TRES environment using the ",{"type":43,"tag":73,"props":74,"children":76},"code",{"className":75},[],[77],{"type":49,"value":78},"accountTxsSummary",{"type":49,"value":80}," query (the same data source that powers the \"Unidentified Addresses\" tab in the TRES UI), deduplicate them, enrich them with activity data, and produce an XLSX workbook with two tabs:",{"type":43,"tag":82,"props":83,"children":84},"ol",{},[85,96],{"type":43,"tag":86,"props":87,"children":88},"li",{},[89,94],{"type":43,"tag":65,"props":90,"children":91},{},[92],{"type":49,"value":93},"Contacts",{"type":49,"value":95}," — the import-ready sheet matching the TRES contacts template. The user fills in names and tags here, then imports this sheet back into TRES.",{"type":43,"tag":86,"props":97,"children":98},{},[99,104],{"type":43,"tag":65,"props":100,"children":101},{},[102],{"type":49,"value":103},"Address details",{"type":49,"value":105}," — enrichment data (network, tx counts, fiat volumes) to help users identify who each address belongs to.",{"type":43,"tag":59,"props":107,"children":108},{},[109],{"type":49,"value":110},"The workflow gives users a fast way to build their address book: Claude extracts, deduplicates, and enriches the unidentified addresses, and the user just needs to label them.",{"type":43,"tag":52,"props":112,"children":114},{"id":113},"mcp-server",[115],{"type":49,"value":116},"MCP Server",{"type":43,"tag":59,"props":118,"children":119},{},[120,122,127,129,135],{"type":49,"value":121},"All GraphQL calls use the ",{"type":43,"tag":65,"props":123,"children":124},{},[125],{"type":49,"value":126},"user-tres-finance",{"type":49,"value":128}," MCP server (",{"type":43,"tag":73,"props":130,"children":132},{"className":131},[],[133],{"type":49,"value":134},"execute",{"type":49,"value":136}," tool).",{"type":43,"tag":52,"props":138,"children":140},{"id":139},"workflow",[141],{"type":49,"value":142},"Workflow",{"type":43,"tag":144,"props":145,"children":147},"h3",{"id":146},"step-1-authenticate",[148],{"type":49,"value":149},"Step 1 — Authenticate",{"type":43,"tag":59,"props":151,"children":152},{},[153,155,161],{"type":49,"value":154},"Call ",{"type":43,"tag":73,"props":156,"children":158},{"className":157},[],[159],{"type":49,"value":160},"get_viewer",{"type":49,"value":162}," (no arguments) to confirm the session is active and note the organization name.",{"type":43,"tag":144,"props":164,"children":166},{"id":165},"step-2-fetch-unidentified-addresses",[167],{"type":49,"value":168},"Step 2 — Fetch unidentified addresses",{"type":43,"tag":59,"props":170,"children":171},{},[172,174,179,181,187],{"type":49,"value":173},"Use the ",{"type":43,"tag":73,"props":175,"children":177},{"className":176},[],[178],{"type":49,"value":78},{"type":49,"value":180}," query with ",{"type":43,"tag":73,"props":182,"children":184},{"className":183},[],[185],{"type":49,"value":186},"identificationState: \"UNIDENTIFIED\"",{"type":49,"value":188}," — this is the same query the TRES UI uses for the \"Unidentified Addresses\" tab under Accounts. It already excludes the organization's own wallets and returns only external counterparty addresses that haven't been named yet.",{"type":43,"tag":190,"props":191,"children":196},"pre",{"className":192,"code":193,"language":194,"meta":195,"style":195},"language-graphql shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","query UnidentifiedAddresses($limit: Int, $offset: Int, $identificationState: String, $excludeInternalAccounts: Boolean, $fiatCurrency: String) {\n  accountTxsSummary(\n    limit: $limit\n    offset: $offset\n    identificationState: $identificationState\n    excludeInternalAccounts: $excludeInternalAccounts\n    fiatCurrency: $fiatCurrency\n  ) {\n    totalCount\n    results {\n      accountIdentifier\n      displayName\n      inflowTxCount\n      outflowTxCount\n      inflowFiatValue\n      outflowFiatValue\n    }\n  }\n}\n","graphql","",[197],{"type":43,"tag":73,"props":198,"children":199},{"__ignoreMap":195},[200,211,220,229,238,247,256,265,274,283,292,301,310,319,328,337,346,355,364],{"type":43,"tag":201,"props":202,"children":205},"span",{"class":203,"line":204},"line",1,[206],{"type":43,"tag":201,"props":207,"children":208},{},[209],{"type":49,"value":210},"query UnidentifiedAddresses($limit: Int, $offset: Int, $identificationState: String, $excludeInternalAccounts: Boolean, $fiatCurrency: String) {\n",{"type":43,"tag":201,"props":212,"children":214},{"class":203,"line":213},2,[215],{"type":43,"tag":201,"props":216,"children":217},{},[218],{"type":49,"value":219},"  accountTxsSummary(\n",{"type":43,"tag":201,"props":221,"children":223},{"class":203,"line":222},3,[224],{"type":43,"tag":201,"props":225,"children":226},{},[227],{"type":49,"value":228},"    limit: $limit\n",{"type":43,"tag":201,"props":230,"children":232},{"class":203,"line":231},4,[233],{"type":43,"tag":201,"props":234,"children":235},{},[236],{"type":49,"value":237},"    offset: $offset\n",{"type":43,"tag":201,"props":239,"children":241},{"class":203,"line":240},5,[242],{"type":43,"tag":201,"props":243,"children":244},{},[245],{"type":49,"value":246},"    identificationState: $identificationState\n",{"type":43,"tag":201,"props":248,"children":250},{"class":203,"line":249},6,[251],{"type":43,"tag":201,"props":252,"children":253},{},[254],{"type":49,"value":255},"    excludeInternalAccounts: $excludeInternalAccounts\n",{"type":43,"tag":201,"props":257,"children":259},{"class":203,"line":258},7,[260],{"type":43,"tag":201,"props":261,"children":262},{},[263],{"type":49,"value":264},"    fiatCurrency: $fiatCurrency\n",{"type":43,"tag":201,"props":266,"children":268},{"class":203,"line":267},8,[269],{"type":43,"tag":201,"props":270,"children":271},{},[272],{"type":49,"value":273},"  ) {\n",{"type":43,"tag":201,"props":275,"children":277},{"class":203,"line":276},9,[278],{"type":43,"tag":201,"props":279,"children":280},{},[281],{"type":49,"value":282},"    totalCount\n",{"type":43,"tag":201,"props":284,"children":286},{"class":203,"line":285},10,[287],{"type":43,"tag":201,"props":288,"children":289},{},[290],{"type":49,"value":291},"    results {\n",{"type":43,"tag":201,"props":293,"children":295},{"class":203,"line":294},11,[296],{"type":43,"tag":201,"props":297,"children":298},{},[299],{"type":49,"value":300},"      accountIdentifier\n",{"type":43,"tag":201,"props":302,"children":304},{"class":203,"line":303},12,[305],{"type":43,"tag":201,"props":306,"children":307},{},[308],{"type":49,"value":309},"      displayName\n",{"type":43,"tag":201,"props":311,"children":313},{"class":203,"line":312},13,[314],{"type":43,"tag":201,"props":315,"children":316},{},[317],{"type":49,"value":318},"      inflowTxCount\n",{"type":43,"tag":201,"props":320,"children":322},{"class":203,"line":321},14,[323],{"type":43,"tag":201,"props":324,"children":325},{},[326],{"type":49,"value":327},"      outflowTxCount\n",{"type":43,"tag":201,"props":329,"children":331},{"class":203,"line":330},15,[332],{"type":43,"tag":201,"props":333,"children":334},{},[335],{"type":49,"value":336},"      inflowFiatValue\n",{"type":43,"tag":201,"props":338,"children":340},{"class":203,"line":339},16,[341],{"type":43,"tag":201,"props":342,"children":343},{},[344],{"type":49,"value":345},"      outflowFiatValue\n",{"type":43,"tag":201,"props":347,"children":349},{"class":203,"line":348},17,[350],{"type":43,"tag":201,"props":351,"children":352},{},[353],{"type":49,"value":354},"    }\n",{"type":43,"tag":201,"props":356,"children":358},{"class":203,"line":357},18,[359],{"type":43,"tag":201,"props":360,"children":361},{},[362],{"type":49,"value":363},"  }\n",{"type":43,"tag":201,"props":365,"children":367},{"class":203,"line":366},19,[368],{"type":43,"tag":201,"props":369,"children":370},{},[371],{"type":49,"value":372},"}\n",{"type":43,"tag":59,"props":374,"children":375},{},[376],{"type":49,"value":377},"Variables:",{"type":43,"tag":190,"props":379,"children":383},{"className":380,"code":381,"language":382,"meta":195,"style":195},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"limit\": 500,\n  \"offset\": 0,\n  \"identificationState\": \"UNIDENTIFIED\",\n  \"excludeInternalAccounts\": true,\n  \"fiatCurrency\": \"usd\"\n}\n","json",[384],{"type":43,"tag":73,"props":385,"children":386},{"__ignoreMap":195},[387,396,431,460,499,524,558],{"type":43,"tag":201,"props":388,"children":389},{"class":203,"line":204},[390],{"type":43,"tag":201,"props":391,"children":393},{"style":392},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[394],{"type":49,"value":395},"{\n",{"type":43,"tag":201,"props":397,"children":398},{"class":203,"line":213},[399,404,410,415,420,426],{"type":43,"tag":201,"props":400,"children":401},{"style":392},[402],{"type":49,"value":403},"  \"",{"type":43,"tag":201,"props":405,"children":407},{"style":406},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[408],{"type":49,"value":409},"limit",{"type":43,"tag":201,"props":411,"children":412},{"style":392},[413],{"type":49,"value":414},"\"",{"type":43,"tag":201,"props":416,"children":417},{"style":392},[418],{"type":49,"value":419},":",{"type":43,"tag":201,"props":421,"children":423},{"style":422},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[424],{"type":49,"value":425}," 500",{"type":43,"tag":201,"props":427,"children":428},{"style":392},[429],{"type":49,"value":430},",\n",{"type":43,"tag":201,"props":432,"children":433},{"class":203,"line":222},[434,438,443,447,451,456],{"type":43,"tag":201,"props":435,"children":436},{"style":392},[437],{"type":49,"value":403},{"type":43,"tag":201,"props":439,"children":440},{"style":406},[441],{"type":49,"value":442},"offset",{"type":43,"tag":201,"props":444,"children":445},{"style":392},[446],{"type":49,"value":414},{"type":43,"tag":201,"props":448,"children":449},{"style":392},[450],{"type":49,"value":419},{"type":43,"tag":201,"props":452,"children":453},{"style":422},[454],{"type":49,"value":455}," 0",{"type":43,"tag":201,"props":457,"children":458},{"style":392},[459],{"type":49,"value":430},{"type":43,"tag":201,"props":461,"children":462},{"class":203,"line":231},[463,467,472,476,480,485,491,495],{"type":43,"tag":201,"props":464,"children":465},{"style":392},[466],{"type":49,"value":403},{"type":43,"tag":201,"props":468,"children":469},{"style":406},[470],{"type":49,"value":471},"identificationState",{"type":43,"tag":201,"props":473,"children":474},{"style":392},[475],{"type":49,"value":414},{"type":43,"tag":201,"props":477,"children":478},{"style":392},[479],{"type":49,"value":419},{"type":43,"tag":201,"props":481,"children":482},{"style":392},[483],{"type":49,"value":484}," \"",{"type":43,"tag":201,"props":486,"children":488},{"style":487},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[489],{"type":49,"value":490},"UNIDENTIFIED",{"type":43,"tag":201,"props":492,"children":493},{"style":392},[494],{"type":49,"value":414},{"type":43,"tag":201,"props":496,"children":497},{"style":392},[498],{"type":49,"value":430},{"type":43,"tag":201,"props":500,"children":501},{"class":203,"line":240},[502,506,511,515,519],{"type":43,"tag":201,"props":503,"children":504},{"style":392},[505],{"type":49,"value":403},{"type":43,"tag":201,"props":507,"children":508},{"style":406},[509],{"type":49,"value":510},"excludeInternalAccounts",{"type":43,"tag":201,"props":512,"children":513},{"style":392},[514],{"type":49,"value":414},{"type":43,"tag":201,"props":516,"children":517},{"style":392},[518],{"type":49,"value":419},{"type":43,"tag":201,"props":520,"children":521},{"style":392},[522],{"type":49,"value":523}," true,\n",{"type":43,"tag":201,"props":525,"children":526},{"class":203,"line":249},[527,531,536,540,544,548,553],{"type":43,"tag":201,"props":528,"children":529},{"style":392},[530],{"type":49,"value":403},{"type":43,"tag":201,"props":532,"children":533},{"style":406},[534],{"type":49,"value":535},"fiatCurrency",{"type":43,"tag":201,"props":537,"children":538},{"style":392},[539],{"type":49,"value":414},{"type":43,"tag":201,"props":541,"children":542},{"style":392},[543],{"type":49,"value":419},{"type":43,"tag":201,"props":545,"children":546},{"style":392},[547],{"type":49,"value":484},{"type":43,"tag":201,"props":549,"children":550},{"style":487},[551],{"type":49,"value":552},"usd",{"type":43,"tag":201,"props":554,"children":555},{"style":392},[556],{"type":49,"value":557},"\"\n",{"type":43,"tag":201,"props":559,"children":560},{"class":203,"line":258},[561],{"type":43,"tag":201,"props":562,"children":563},{"style":392},[564],{"type":49,"value":372},{"type":43,"tag":59,"props":566,"children":567},{},[568,570,575,577,583],{"type":49,"value":569},"Paginate through all results (increment ",{"type":43,"tag":73,"props":571,"children":573},{"className":572},[],[574],{"type":49,"value":442},{"type":49,"value":576}," by 500 each time until you've collected all entries from ",{"type":43,"tag":73,"props":578,"children":580},{"className":579},[],[581],{"type":49,"value":582},"totalCount",{"type":49,"value":584},").",{"type":43,"tag":144,"props":586,"children":588},{"id":587},"step-3-deduplicate-and-detect-network",[589],{"type":49,"value":590},"Step 3 — Deduplicate and detect network",{"type":43,"tag":59,"props":592,"children":593},{},[594,596,601,603,608,610,616],{"type":49,"value":595},"The ",{"type":43,"tag":73,"props":597,"children":599},{"className":598},[],[600],{"type":49,"value":78},{"type":49,"value":602}," query can return the same address more than once (e.g. different casing variants of the same EVM address, or separate rows for sender vs. receiver context). Deduplicate by ",{"type":43,"tag":65,"props":604,"children":605},{},[606],{"type":49,"value":607},"lowercased",{"type":49,"value":609}," ",{"type":43,"tag":73,"props":611,"children":613},{"className":612},[],[614],{"type":49,"value":615},"accountIdentifier",{"type":49,"value":419},{"type":43,"tag":618,"props":619,"children":620},"ul",{},[621,632,637],{"type":43,"tag":86,"props":622,"children":623},{},[624,626],{"type":49,"value":625},"Build a dictionary keyed by ",{"type":43,"tag":73,"props":627,"children":629},{"className":628},[],[630],{"type":49,"value":631},"accountIdentifier.lower()",{"type":43,"tag":86,"props":633,"children":634},{},[635],{"type":49,"value":636},"For each address, keep the first occurrence's original casing and accumulate the total inflow + outflow tx count and fiat values",{"type":43,"tag":86,"props":638,"children":639},{},[640,642],{"type":49,"value":641},"Skip addresses with an empty or null ",{"type":43,"tag":73,"props":643,"children":645},{"className":644},[],[646],{"type":49,"value":615},{"type":43,"tag":59,"props":648,"children":649},{},[650],{"type":49,"value":651},"Sort the deduplicated addresses by total fiat volume (inflow + outflow) descending, so the most active counterparties appear first — these are typically the ones the user will want to label first.",{"type":43,"tag":59,"props":653,"children":654},{},[655,660],{"type":43,"tag":65,"props":656,"children":657},{},[658],{"type":49,"value":659},"Network detection:",{"type":49,"value":661}," The API does not return a network field, so infer the network from the address format. Use these rules:",{"type":43,"tag":663,"props":664,"children":665},"table",{},[666,685],{"type":43,"tag":667,"props":668,"children":669},"thead",{},[670],{"type":43,"tag":671,"props":672,"children":673},"tr",{},[674,680],{"type":43,"tag":675,"props":676,"children":677},"th",{},[678],{"type":49,"value":679},"Address pattern",{"type":43,"tag":675,"props":681,"children":682},{},[683],{"type":49,"value":684},"Network",{"type":43,"tag":686,"props":687,"children":688},"tbody",{},[689,711,729,762,782,817,837,855,873,891,916,934,954,1002],{"type":43,"tag":671,"props":690,"children":691},{},[692,706],{"type":43,"tag":693,"props":694,"children":695},"td",{},[696,698,704],{"type":49,"value":697},"Starts with ",{"type":43,"tag":73,"props":699,"children":701},{"className":700},[],[702],{"type":49,"value":703},"0x",{"type":49,"value":705}," (42 chars, hex)",{"type":43,"tag":693,"props":707,"children":708},{},[709],{"type":49,"value":710},"EVM",{"type":43,"tag":671,"props":712,"children":713},{},[714,724],{"type":43,"tag":693,"props":715,"children":716},{},[717,718],{"type":49,"value":697},{"type":43,"tag":73,"props":719,"children":721},{"className":720},[],[722],{"type":49,"value":723},"KT1",{"type":43,"tag":693,"props":725,"children":726},{},[727],{"type":49,"value":728},"Tezos (contract)",{"type":43,"tag":671,"props":730,"children":731},{},[732,757],{"type":43,"tag":693,"props":733,"children":734},{},[735,736,742,744,750,751],{"type":49,"value":697},{"type":43,"tag":73,"props":737,"children":739},{"className":738},[],[740],{"type":49,"value":741},"tz1",{"type":49,"value":743},", ",{"type":43,"tag":73,"props":745,"children":747},{"className":746},[],[748],{"type":49,"value":749},"tz2",{"type":49,"value":743},{"type":43,"tag":73,"props":752,"children":754},{"className":753},[],[755],{"type":49,"value":756},"tz3",{"type":43,"tag":693,"props":758,"children":759},{},[760],{"type":49,"value":761},"Tezos",{"type":43,"tag":671,"props":763,"children":764},{},[765,777],{"type":43,"tag":693,"props":766,"children":767},{},[768,769,775],{"type":49,"value":697},{"type":43,"tag":73,"props":770,"children":772},{"className":771},[],[773],{"type":49,"value":774},"T",{"type":49,"value":776}," (34 chars, base58)",{"type":43,"tag":693,"props":778,"children":779},{},[780],{"type":49,"value":781},"Tron",{"type":43,"tag":671,"props":783,"children":784},{},[785,812],{"type":43,"tag":693,"props":786,"children":787},{},[788,789,795,797,803,804,810],{"type":49,"value":697},{"type":43,"tag":73,"props":790,"children":792},{"className":791},[],[793],{"type":49,"value":794},"bc1",{"type":49,"value":796}," or ",{"type":43,"tag":73,"props":798,"children":800},{"className":799},[],[801],{"type":49,"value":802},"1",{"type":49,"value":796},{"type":43,"tag":73,"props":805,"children":807},{"className":806},[],[808],{"type":49,"value":809},"3",{"type":49,"value":811}," (25–62 chars)",{"type":43,"tag":693,"props":813,"children":814},{},[815],{"type":49,"value":816},"Bitcoin",{"type":43,"tag":671,"props":818,"children":819},{},[820,832],{"type":43,"tag":693,"props":821,"children":822},{},[823,824,830],{"type":49,"value":697},{"type":43,"tag":73,"props":825,"children":827},{"className":826},[],[828],{"type":49,"value":829},"r",{"type":49,"value":831}," (25–35 chars)",{"type":43,"tag":693,"props":833,"children":834},{},[835],{"type":49,"value":836},"XRP Ledger",{"type":43,"tag":671,"props":838,"children":839},{},[840,850],{"type":43,"tag":693,"props":841,"children":842},{},[843,844],{"type":49,"value":697},{"type":43,"tag":73,"props":845,"children":847},{"className":846},[],[848],{"type":49,"value":849},"cosmos1",{"type":43,"tag":693,"props":851,"children":852},{},[853],{"type":49,"value":854},"Cosmos",{"type":43,"tag":671,"props":856,"children":857},{},[858,868],{"type":43,"tag":693,"props":859,"children":860},{},[861,862],{"type":49,"value":697},{"type":43,"tag":73,"props":863,"children":865},{"className":864},[],[866],{"type":49,"value":867},"osmo1",{"type":43,"tag":693,"props":869,"children":870},{},[871],{"type":49,"value":872},"Osmosis",{"type":43,"tag":671,"props":874,"children":875},{},[876,886],{"type":43,"tag":693,"props":877,"children":878},{},[879,880],{"type":49,"value":697},{"type":43,"tag":73,"props":881,"children":883},{"className":882},[],[884],{"type":49,"value":885},"terra1",{"type":43,"tag":693,"props":887,"children":888},{},[889],{"type":49,"value":890},"Terra",{"type":43,"tag":671,"props":892,"children":893},{},[894,911],{"type":43,"tag":693,"props":895,"children":896},{},[897,898,904,905],{"type":49,"value":697},{"type":43,"tag":73,"props":899,"children":901},{"className":900},[],[902],{"type":49,"value":903},"addr1",{"type":49,"value":796},{"type":43,"tag":73,"props":906,"children":908},{"className":907},[],[909],{"type":49,"value":910},"stake1",{"type":43,"tag":693,"props":912,"children":913},{},[914],{"type":49,"value":915},"Cardano",{"type":43,"tag":671,"props":917,"children":918},{},[919,929],{"type":43,"tag":693,"props":920,"children":921},{},[922,923],{"type":49,"value":697},{"type":43,"tag":73,"props":924,"children":926},{"className":925},[],[927],{"type":49,"value":928},"bnb1",{"type":43,"tag":693,"props":930,"children":931},{},[932],{"type":49,"value":933},"BNB Beacon Chain",{"type":43,"tag":671,"props":935,"children":936},{},[937,949],{"type":43,"tag":693,"props":938,"children":939},{},[940,941,947],{"type":49,"value":697},{"type":43,"tag":73,"props":942,"children":944},{"className":943},[],[945],{"type":49,"value":946},"G",{"type":49,"value":948}," (56 chars)",{"type":43,"tag":693,"props":950,"children":951},{},[952],{"type":49,"value":953},"Stellar",{"type":43,"tag":671,"props":955,"children":956},{},[957,997],{"type":43,"tag":693,"props":958,"children":959},{},[960,961,967,968,974,975,981,982,988,989,995],{"type":49,"value":697},{"type":43,"tag":73,"props":962,"children":964},{"className":963},[],[965],{"type":49,"value":966},"D",{"type":49,"value":796},{"type":43,"tag":73,"props":969,"children":971},{"className":970},[],[972],{"type":49,"value":973},"A",{"type":49,"value":796},{"type":43,"tag":73,"props":976,"children":978},{"className":977},[],[979],{"type":49,"value":980},"L",{"type":49,"value":796},{"type":43,"tag":73,"props":983,"children":985},{"className":984},[],[986],{"type":49,"value":987},"M",{"type":49,"value":796},{"type":43,"tag":73,"props":990,"children":992},{"className":991},[],[993],{"type":49,"value":994},"ltc1",{"type":49,"value":996}," (26–35 chars)",{"type":43,"tag":693,"props":998,"children":999},{},[1000],{"type":49,"value":1001},"Litecoin\u002FDogecoin (best guess)",{"type":43,"tag":671,"props":1003,"children":1004},{},[1005,1010],{"type":43,"tag":693,"props":1006,"children":1007},{},[1008],{"type":49,"value":1009},"None of the above",{"type":43,"tag":693,"props":1011,"children":1012},{},[1013],{"type":49,"value":1014},"Unknown",{"type":43,"tag":59,"props":1016,"children":1017},{},[1018],{"type":49,"value":1019},"This is a best-effort heuristic — EVM addresses in particular could belong to Ethereum, Polygon, Arbitrum, Base, Avalanche, BSC, or any other EVM-compatible chain. The label \"EVM\" is intentionally broad because the address alone can't distinguish which chain it's on.",{"type":43,"tag":144,"props":1021,"children":1023},{"id":1022},"step-4-build-the-xlsx-workbook",[1024],{"type":49,"value":1025},"Step 4 — Build the XLSX workbook",{"type":43,"tag":59,"props":1027,"children":1028},{},[1029,1031,1037],{"type":49,"value":1030},"Use Python with ",{"type":43,"tag":73,"props":1032,"children":1034},{"className":1033},[],[1035],{"type":49,"value":1036},"openpyxl==3.1.5",{"type":49,"value":1038},". If not installed, stop and display:",{"type":43,"tag":1040,"props":1041,"children":1042},"blockquote",{},[1043],{"type":43,"tag":59,"props":1044,"children":1045},{},[1046,1048,1054],{"type":49,"value":1047},"\"openpyxl is not installed. Please run: ",{"type":43,"tag":73,"props":1049,"children":1051},{"className":1050},[],[1052],{"type":49,"value":1053},"python3 -m venv .venv && .venv\u002Fbin\u002Fpip install openpyxl==3.1.5",{"type":49,"value":414},{"type":43,"tag":1056,"props":1057,"children":1059},"h4",{"id":1058},"tab-1-contacts-import-ready",[1060],{"type":49,"value":1061},"Tab 1: \"Contacts\" (import-ready)",{"type":43,"tag":59,"props":1063,"children":1064},{},[1065],{"type":49,"value":1066},"This sheet matches the TRES contacts import template exactly:",{"type":43,"tag":663,"props":1068,"children":1069},{},[1070,1091],{"type":43,"tag":667,"props":1071,"children":1072},{},[1073],{"type":43,"tag":671,"props":1074,"children":1075},{},[1076,1081,1086],{"type":43,"tag":675,"props":1077,"children":1078},{},[1079],{"type":49,"value":1080},"Contact Name",{"type":43,"tag":675,"props":1082,"children":1083},{},[1084],{"type":49,"value":1085},"Contact Address",{"type":43,"tag":675,"props":1087,"children":1088},{},[1089],{"type":49,"value":1090},"Contact Tag",{"type":43,"tag":686,"props":1092,"children":1093},{},[1094],{"type":43,"tag":671,"props":1095,"children":1096},{},[1097,1106,1111],{"type":43,"tag":693,"props":1098,"children":1099},{},[1100],{"type":43,"tag":1101,"props":1102,"children":1103},"em",{},[1104],{"type":49,"value":1105},"(blank)",{"type":43,"tag":693,"props":1107,"children":1108},{},[1109],{"type":49,"value":1110},"0xABC...",{"type":43,"tag":693,"props":1112,"children":1113},{},[1114],{"type":43,"tag":1101,"props":1115,"children":1116},{},[1117],{"type":49,"value":1105},{"type":43,"tag":618,"props":1119,"children":1120},{},[1121,1130,1139,1147],{"type":43,"tag":86,"props":1122,"children":1123},{},[1124,1128],{"type":43,"tag":65,"props":1125,"children":1126},{},[1127],{"type":49,"value":1080},{"type":49,"value":1129},": leave blank (the user will fill this in)",{"type":43,"tag":86,"props":1131,"children":1132},{},[1133,1137],{"type":43,"tag":65,"props":1134,"children":1135},{},[1136],{"type":49,"value":1085},{"type":49,"value":1138},": the address identifier (original casing)",{"type":43,"tag":86,"props":1140,"children":1141},{},[1142,1146],{"type":43,"tag":65,"props":1143,"children":1144},{},[1145],{"type":49,"value":1090},{"type":49,"value":1129},{"type":43,"tag":86,"props":1148,"children":1149},{},[1150],{"type":49,"value":1151},"Sorted by total fiat volume descending (same order as Address details)",{"type":43,"tag":1056,"props":1153,"children":1155},{"id":1154},"tab-2-address-details-enrichment",[1156],{"type":49,"value":1157},"Tab 2: \"Address details\" (enrichment)",{"type":43,"tag":663,"props":1159,"children":1160},{},[1161,1200],{"type":43,"tag":667,"props":1162,"children":1163},{},[1164],{"type":43,"tag":671,"props":1165,"children":1166},{},[1167,1171,1175,1180,1185,1190,1195],{"type":43,"tag":675,"props":1168,"children":1169},{},[1170],{"type":49,"value":1085},{"type":43,"tag":675,"props":1172,"children":1173},{},[1174],{"type":49,"value":684},{"type":43,"tag":675,"props":1176,"children":1177},{},[1178],{"type":49,"value":1179},"Inflow Txs",{"type":43,"tag":675,"props":1181,"children":1182},{},[1183],{"type":49,"value":1184},"Outflow Txs",{"type":43,"tag":675,"props":1186,"children":1187},{},[1188],{"type":49,"value":1189},"Inflow USD",{"type":43,"tag":675,"props":1191,"children":1192},{},[1193],{"type":49,"value":1194},"Outflow USD",{"type":43,"tag":675,"props":1196,"children":1197},{},[1198],{"type":49,"value":1199},"Total USD",{"type":43,"tag":686,"props":1201,"children":1202},{},[1203,1239,1274],{"type":43,"tag":671,"props":1204,"children":1205},{},[1206,1210,1214,1219,1224,1229,1234],{"type":43,"tag":693,"props":1207,"children":1208},{},[1209],{"type":49,"value":1110},{"type":43,"tag":693,"props":1211,"children":1212},{},[1213],{"type":49,"value":710},{"type":43,"tag":693,"props":1215,"children":1216},{},[1217],{"type":49,"value":1218},"142",{"type":43,"tag":693,"props":1220,"children":1221},{},[1222],{"type":49,"value":1223},"38",{"type":43,"tag":693,"props":1225,"children":1226},{},[1227],{"type":49,"value":1228},"1,240,500",{"type":43,"tag":693,"props":1230,"children":1231},{},[1232],{"type":49,"value":1233},"890,200",{"type":43,"tag":693,"props":1235,"children":1236},{},[1237],{"type":49,"value":1238},"2,130,700",{"type":43,"tag":671,"props":1240,"children":1241},{},[1242,1247,1251,1256,1261,1266,1270],{"type":43,"tag":693,"props":1243,"children":1244},{},[1245],{"type":49,"value":1246},"KT1Xyz...",{"type":43,"tag":693,"props":1248,"children":1249},{},[1250],{"type":49,"value":728},{"type":43,"tag":693,"props":1252,"children":1253},{},[1254],{"type":49,"value":1255},"6",{"type":43,"tag":693,"props":1257,"children":1258},{},[1259],{"type":49,"value":1260},"0",{"type":43,"tag":693,"props":1262,"children":1263},{},[1264],{"type":49,"value":1265},"40,144,631",{"type":43,"tag":693,"props":1267,"children":1268},{},[1269],{"type":49,"value":1260},{"type":43,"tag":693,"props":1271,"children":1272},{},[1273],{"type":49,"value":1265},{"type":43,"tag":671,"props":1275,"children":1276},{},[1277,1282,1286,1291,1296,1301,1306],{"type":43,"tag":693,"props":1278,"children":1279},{},[1280],{"type":49,"value":1281},"TBmxn...",{"type":43,"tag":693,"props":1283,"children":1284},{},[1285],{"type":49,"value":781},{"type":43,"tag":693,"props":1287,"children":1288},{},[1289],{"type":49,"value":1290},"23",{"type":43,"tag":693,"props":1292,"children":1293},{},[1294],{"type":49,"value":1295},"5",{"type":43,"tag":693,"props":1297,"children":1298},{},[1299],{"type":49,"value":1300},"340,100",{"type":43,"tag":693,"props":1302,"children":1303},{},[1304],{"type":49,"value":1305},"52,000",{"type":43,"tag":693,"props":1307,"children":1308},{},[1309],{"type":49,"value":1310},"392,100",{"type":43,"tag":618,"props":1312,"children":1313},{},[1314,1319,1329,1353,1375],{"type":43,"tag":86,"props":1315,"children":1316},{},[1317],{"type":49,"value":1318},"Same address order as the Contacts tab (sorted by Total USD descending)",{"type":43,"tag":86,"props":1320,"children":1321},{},[1322,1327],{"type":43,"tag":73,"props":1323,"children":1325},{"className":1324},[],[1326],{"type":49,"value":684},{"type":49,"value":1328},": inferred from address format (see Step 3)",{"type":43,"tag":86,"props":1330,"children":1331},{},[1332,1337,1339,1344,1346,1351],{"type":43,"tag":73,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":49,"value":1179},{"type":49,"value":1338}," \u002F ",{"type":43,"tag":73,"props":1340,"children":1342},{"className":1341},[],[1343],{"type":49,"value":1184},{"type":49,"value":1345},": from ",{"type":43,"tag":73,"props":1347,"children":1349},{"className":1348},[],[1350],{"type":49,"value":78},{"type":49,"value":1352}," results",{"type":43,"tag":86,"props":1354,"children":1355},{},[1356,1361,1362,1367,1368,1373],{"type":43,"tag":73,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":49,"value":1189},{"type":49,"value":1338},{"type":43,"tag":73,"props":1363,"children":1365},{"className":1364},[],[1366],{"type":49,"value":1194},{"type":49,"value":1345},{"type":43,"tag":73,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":49,"value":78},{"type":49,"value":1374}," fiat values",{"type":43,"tag":86,"props":1376,"children":1377},{},[1378,1383],{"type":43,"tag":73,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":49,"value":1199},{"type":49,"value":1384},": sum of inflow + outflow fiat values",{"type":43,"tag":1056,"props":1386,"children":1388},{"id":1387},"formatting-guidelines",[1389],{"type":49,"value":1390},"Formatting guidelines",{"type":43,"tag":618,"props":1392,"children":1393},{},[1394,1399,1404,1409],{"type":43,"tag":86,"props":1395,"children":1396},{},[1397],{"type":49,"value":1398},"Bold the header row on all tabs",{"type":43,"tag":86,"props":1400,"children":1401},{},[1402],{"type":49,"value":1403},"Auto-fit column widths for readability",{"type":43,"tag":86,"props":1405,"children":1406},{},[1407],{"type":49,"value":1408},"Format USD columns as numbers (no $ prefix in cells — use Excel number formatting)",{"type":43,"tag":86,"props":1410,"children":1411},{},[1412],{"type":49,"value":1413},"The \"Contacts\" tab should be the first\u002Factive sheet when the file opens, since that's the one the user will work in",{"type":43,"tag":144,"props":1415,"children":1417},{"id":1416},"step-5-save-and-present",[1418],{"type":49,"value":1419},"Step 5 — Save and present",{"type":43,"tag":59,"props":1421,"children":1422},{},[1423,1425,1431],{"type":49,"value":1424},"Save the XLSX to the outputs directory. Use a descriptive filename like ",{"type":43,"tag":73,"props":1426,"children":1428},{"className":1427},[],[1429],{"type":49,"value":1430},"tres_3rd_party_contacts_\u003Corg_name>_\u003Cdate>.xlsx",{"type":49,"value":1432}," (replace spaces and special chars with underscores).",{"type":43,"tag":59,"props":1434,"children":1435},{},[1436],{"type":49,"value":1437},"Present the file to the user with a brief summary:",{"type":43,"tag":618,"props":1439,"children":1440},{},[1441,1446,1451],{"type":43,"tag":86,"props":1442,"children":1443},{},[1444],{"type":49,"value":1445},"How many unique unidentified addresses were found",{"type":43,"tag":86,"props":1447,"children":1448},{},[1449],{"type":49,"value":1450},"Total number of transactions involving these addresses",{"type":43,"tag":86,"props":1452,"children":1453},{},[1454],{"type":49,"value":1455},"A link to the XLSX file",{"type":43,"tag":59,"props":1457,"children":1458},{},[1459],{"type":49,"value":1460},"Then explain what each tab is for:",{"type":43,"tag":1040,"props":1462,"children":1463},{},[1464,1472],{"type":43,"tag":59,"props":1465,"children":1466},{},[1467],{"type":43,"tag":65,"props":1468,"children":1469},{},[1470],{"type":49,"value":1471},"Your workbook has 2 tabs:",{"type":43,"tag":82,"props":1473,"children":1474},{},[1475,1525],{"type":43,"tag":86,"props":1476,"children":1477},{},[1478,1482,1484,1488,1490,1494,1496,1502,1503,1509,1510,1516,1518,1523],{"type":43,"tag":65,"props":1479,"children":1480},{},[1481],{"type":49,"value":93},{"type":49,"value":1483}," — This is the import-ready sheet. Fill in the ",{"type":43,"tag":65,"props":1485,"children":1486},{},[1487],{"type":49,"value":1080},{"type":49,"value":1489}," for each address you recognize, and optionally add a ",{"type":43,"tag":65,"props":1491,"children":1492},{},[1493],{"type":49,"value":1090},{"type":49,"value":1495}," (e.g. ",{"type":43,"tag":73,"props":1497,"children":1499},{"className":1498},[],[1500],{"type":49,"value":1501},"Exchange",{"type":49,"value":743},{"type":43,"tag":73,"props":1504,"children":1506},{"className":1505},[],[1507],{"type":49,"value":1508},"Vendor",{"type":49,"value":743},{"type":43,"tag":73,"props":1511,"children":1513},{"className":1512},[],[1514],{"type":49,"value":1515},"Treasury",{"type":49,"value":1517},"). When you're done, use the ",{"type":43,"tag":65,"props":1519,"children":1520},{},[1521],{"type":49,"value":1522},"contacts import skill",{"type":49,"value":1524}," to upload this sheet back into TRES.",{"type":43,"tag":86,"props":1526,"children":1527},{},[1528,1532],{"type":43,"tag":65,"props":1529,"children":1530},{},[1531],{"type":49,"value":103},{"type":49,"value":1533}," — Reference tab showing the detected network, activity stats for each address (inflow\u002Foutflow transaction counts and USD volumes). Use this to prioritize which addresses to label — the highest-volume counterparties are at the top. The network column helps narrow down which chain the address belongs to.",{"type":43,"tag":52,"props":1535,"children":1537},{"id":1536},"edge-cases",[1538],{"type":49,"value":1539},"Edge Cases",{"type":43,"tag":618,"props":1541,"children":1542},{},[1543,1553,1563,1581],{"type":43,"tag":86,"props":1544,"children":1545},{},[1546,1551],{"type":43,"tag":65,"props":1547,"children":1548},{},[1549],{"type":49,"value":1550},"No unidentified addresses found",{"type":49,"value":1552},": If the result set is empty, tell the user — it likely means all counterparty addresses are already in the contacts list.",{"type":43,"tag":86,"props":1554,"children":1555},{},[1556,1561],{"type":43,"tag":65,"props":1557,"children":1558},{},[1559],{"type":49,"value":1560},"Mixed-case addresses",{"type":49,"value":1562},": EVM addresses can appear in different checksummed forms. Always compare in lowercase for deduplication, but preserve the original case in the output.",{"type":43,"tag":86,"props":1564,"children":1565},{},[1566,1571,1573,1579],{"type":43,"tag":65,"props":1567,"children":1568},{},[1569],{"type":49,"value":1570},"Zero\u002Fburn addresses",{"type":49,"value":1572},": Include ",{"type":43,"tag":73,"props":1574,"children":1576},{"className":1575},[],[1577],{"type":49,"value":1578},"0x0000000000000000000000000000000000000000",{"type":49,"value":1580}," in the output if it appears — the user may still want to label it as \"Burn Address\" or similar.",{"type":43,"tag":86,"props":1582,"children":1583},{},[1584,1589],{"type":43,"tag":65,"props":1585,"children":1586},{},[1587],{"type":49,"value":1588},"Unknown network",{"type":49,"value":1590},": If an address doesn't match any known pattern, set Network to \"Unknown\". Don't skip the address — it's still a valid counterparty.",{"type":43,"tag":1592,"props":1593,"children":1594},"style",{},[1595],{"type":49,"value":1596},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1598,"total":1700},[1599,1618,1637,1651,1663,1675,1687],{"slug":1600,"name":1600,"fn":1601,"description":1602,"org":1603,"tags":1604,"stars":26,"repoUrl":27,"updatedAt":1617},"quickdesign","generate AI media assets","Use the `quickdesign` CLI to generate AI media — UGC promo videos, image edits, product creatives, video upscales — through Seedance, Kling, Sora2, Nano Banana, and GPT Image. Invoke this skill whenever the user asks for a talking-avatar video, multi-segment ad \u002F promo \u002F explainer, image edit (object swap, angle change, state change), product photoshoot, or video upscale via QuickDesign.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1605,1608,1611,1614],{"name":1606,"slug":1607,"type":16},"Creative","creative",{"name":1609,"slug":1610,"type":16},"Image Generation","image-generation",{"name":1612,"slug":1613,"type":16},"Marketing","marketing",{"name":1615,"slug":1616,"type":16},"Video","video","2026-07-01T08:09:32.316182",{"slug":1619,"name":1619,"fn":1620,"description":1621,"org":1622,"tags":1623,"stars":26,"repoUrl":27,"updatedAt":1636},"testdino-audit","audit Playwright test code","Use only when the user explicitly asks for a TestDino audit of Playwright automated test code. Routes through the audit tools the TestDino MCP server exposes (get_audit_report + submit_audit_report, or the legacy test_audit). For generic code review or non-Playwright targets, do a normal review instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1624,1627,1630,1633],{"name":1625,"slug":1626,"type":16},"Audit","audit",{"name":1628,"slug":1629,"type":16},"Code Analysis","code-analysis",{"name":1631,"slug":1632,"type":16},"Playwright","playwright",{"name":1634,"slug":1635,"type":16},"Testing","testing","2026-07-02T07:37:17.341081",{"slug":1638,"name":1638,"fn":1639,"description":1640,"org":1641,"tags":1642,"stars":26,"repoUrl":27,"updatedAt":1650},"testdino-health","manage TestDino connection status","Use when the user wants to check TestDino connection status, validate their PAT, discover available organizations and projects, or find the right projectId. Always call this first when the project context is ambiguous before any other TestDino tool.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1643,1646,1649],{"name":1644,"slug":1645,"type":16},"Monitoring","monitoring",{"name":1647,"slug":1648,"type":16},"QA","qa",{"name":1634,"slug":1635,"type":16},"2026-07-02T07:37:18.566504",{"slug":1652,"name":1652,"fn":1653,"description":1654,"org":1655,"tags":1656,"stars":26,"repoUrl":27,"updatedAt":1662},"testdino-manual-runs","manage manual QA execution runs in TestDino","Use when the user wants to manage a manual execution run or update case-level results inside a run — listing runs, creating runs for a release, inspecting a run, assigning cases, or marking case results (passed\u002Ffailed\u002Fblocked\u002Fskipped\u002Fretest\u002Funtested). Accepts counter-style IDs like RUN-12 and TC-156.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1657,1660,1661],{"name":1658,"slug":1659,"type":16},"Operations","operations",{"name":1647,"slug":1648,"type":16},{"name":1634,"slug":1635,"type":16},"2026-07-02T07:37:23.446065",{"slug":1664,"name":1664,"fn":1665,"description":1666,"org":1667,"tags":1668,"stars":26,"repoUrl":27,"updatedAt":1674},"testdino-manual-tests","manage manual QA test cases in TestDino","Use when the user wants to create, update, or browse manual QA test cases and suites in TestDino — not execution runs. Covers list_manual_test_suites, list_manual_test_cases, get_manual_test_case, create_manual_test_case, update_manual_test_case, create_manual_test_suite.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1669,1672,1673],{"name":1670,"slug":1671,"type":16},"Documentation","documentation",{"name":1647,"slug":1648,"type":16},{"name":1634,"slug":1635,"type":16},"2026-07-02T07:37:22.247052",{"slug":1676,"name":1676,"fn":1677,"description":1678,"org":1679,"tags":1680,"stars":26,"repoUrl":27,"updatedAt":1686},"testdino-releases","manage TestDino releases and milestones","Use when the user wants to browse, inspect, create, or update releases\u002Fmilestones in a TestDino project. Covers list_releases, get_release, create_release, and update_release. Accepts counter-style IDs like MS-12.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1681,1684,1685],{"name":1682,"slug":1683,"type":16},"Project Management","project-management",{"name":1647,"slug":1648,"type":16},{"name":1634,"slug":1635,"type":16},"2026-07-02T07:37:19.793846",{"slug":1688,"name":1688,"fn":1689,"description":1690,"org":1691,"tags":1692,"stars":26,"repoUrl":27,"updatedAt":1699},"testdino-runs","inspect automated test runs","Use when the user wants to inspect automated test runs, list failed or flaky tests, debug a failing testcase with historical context, or filter runs by branch, commit, author, environment, browser, status, or tags. Includes list_testruns, get_run_details, list_testcase, get_testcase_details, and debug_testcase.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1693,1696,1697,1698],{"name":1694,"slug":1695,"type":16},"Debugging","debugging",{"name":1631,"slug":1632,"type":16},{"name":1647,"slug":1648,"type":16},{"name":1634,"slug":1635,"type":16},"2026-07-02T07:37:16.07175",30,{"items":1702,"total":1885},[1703,1722,1736,1748,1767,1778,1799,1819,1833,1848,1856,1869],{"slug":1704,"name":1704,"fn":1705,"description":1706,"org":1707,"tags":1708,"stars":1719,"repoUrl":1720,"updatedAt":1721},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1709,1710,1713,1716],{"name":1606,"slug":1607,"type":16},{"name":1711,"slug":1712,"type":16},"Design","design",{"name":1714,"slug":1715,"type":16},"Generative Art","generative-art",{"name":1717,"slug":1718,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":1723,"name":1723,"fn":1724,"description":1725,"org":1726,"tags":1727,"stars":1719,"repoUrl":1720,"updatedAt":1735},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1728,1731,1732],{"name":1729,"slug":1730,"type":16},"Branding","branding",{"name":1711,"slug":1712,"type":16},{"name":1733,"slug":1734,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":1737,"name":1737,"fn":1738,"description":1739,"org":1740,"tags":1741,"stars":1719,"repoUrl":1720,"updatedAt":1747},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1742,1743,1744],{"name":1606,"slug":1607,"type":16},{"name":1711,"slug":1712,"type":16},{"name":1745,"slug":1746,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":1749,"name":1749,"fn":1750,"description":1751,"org":1752,"tags":1753,"stars":1719,"repoUrl":1720,"updatedAt":1766},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1754,1757,1758,1761,1763],{"name":1755,"slug":1756,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":1759,"slug":1760,"type":16},"Anthropic SDK","anthropic-sdk",{"name":1762,"slug":1749,"type":16},"Claude API",{"name":1764,"slug":1765,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":1768,"name":1768,"fn":1769,"description":1770,"org":1771,"tags":1772,"stars":1719,"repoUrl":1720,"updatedAt":1777},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1773,1774],{"name":1670,"slug":1671,"type":16},{"name":1775,"slug":1776,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":1779,"name":1779,"fn":1780,"description":1781,"org":1782,"tags":1783,"stars":1719,"repoUrl":1720,"updatedAt":1798},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1784,1787,1789,1792,1795],{"name":1785,"slug":1786,"type":16},"Documents","documents",{"name":1788,"slug":1779,"type":16},"DOCX",{"name":1790,"slug":1791,"type":16},"Office","office",{"name":1793,"slug":1794,"type":16},"Templates","templates",{"name":1796,"slug":1797,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":1800,"name":1800,"fn":1801,"description":1802,"org":1803,"tags":1804,"stars":1719,"repoUrl":1720,"updatedAt":1818},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1805,1806,1809,1812,1815],{"name":1711,"slug":1712,"type":16},{"name":1807,"slug":1808,"type":16},"Frontend","frontend",{"name":1810,"slug":1811,"type":16},"React","react",{"name":1813,"slug":1814,"type":16},"Tailwind CSS","tailwind-css",{"name":1816,"slug":1817,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":1820,"name":1820,"fn":1821,"description":1822,"org":1823,"tags":1824,"stars":1719,"repoUrl":1720,"updatedAt":1832},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1825,1828,1829],{"name":1826,"slug":1827,"type":16},"Communications","communications",{"name":1793,"slug":1794,"type":16},{"name":1830,"slug":1831,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":1834,"name":1834,"fn":1835,"description":1836,"org":1837,"tags":1838,"stars":1719,"repoUrl":1720,"updatedAt":1847},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1839,1840,1843,1844],{"name":1755,"slug":1756,"type":16},{"name":1841,"slug":1842,"type":16},"API Development","api-development",{"name":1764,"slug":1765,"type":16},{"name":1845,"slug":1846,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":1746,"name":1746,"fn":1849,"description":1850,"org":1851,"tags":1852,"stars":1719,"repoUrl":1720,"updatedAt":1855},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1853,1854],{"name":1785,"slug":1786,"type":16},{"name":1745,"slug":1746,"type":16},"2026-04-06T17:56:02.483316",{"slug":1857,"name":1857,"fn":1858,"description":1859,"org":1860,"tags":1861,"stars":1719,"repoUrl":1720,"updatedAt":1868},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1862,1865],{"name":1863,"slug":1864,"type":16},"PowerPoint","powerpoint",{"name":1866,"slug":1867,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":1870,"name":1870,"fn":1871,"description":1872,"org":1873,"tags":1874,"stars":1719,"repoUrl":1720,"updatedAt":1884},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1875,1876,1877,1880,1883],{"name":1755,"slug":1756,"type":16},{"name":1670,"slug":1671,"type":16},{"name":1878,"slug":1879,"type":16},"Evals","evals",{"name":1881,"slug":1882,"type":16},"Performance","performance",{"name":1775,"slug":1776,"type":16},"2026-04-19T06:45:40.804",490]