‘show temporary tables’ will list all temporary tables in a database along with their session_id.
Unfortunately I don’t think it is possible to view it in one place, you can view memory usage of temp tables from current session by quering ‘information_schema.tables’
If your application is rapidly creating/dropping temp tables I would make sure your on Singlestore 7.3. It has improvements to the connection pooling for table DDL which improves the performance of cases that do a lot of temp table DDL.