ChainArgos
Research
Research
  • ๐ŸŽฏIntroduction
  • ๐Ÿ”ฌEmpirical Research
    • โšกBlockchain Activity Analysis
      • Ronin Blockchain
      • USDT on Tron
    • ๐Ÿค–Basics
      • Custom Measures
      • Mixers & Incidents
      • Shitcoin Volumes
      • Stablecoin Volumes: Heco vs Ethereum
      • Table math
      • Tether burn and unfreeze
      • Uniswap Price Feeds
      • Upgradeable Proxy Contracts
    • ๐ŸดBlacklists
      • Circle vs Tether Blacklist Frequency
      • Monitoring
      • Odd Frozen Tether #1
      • Pre-Blacklisting Tether Outflows
      • Specific dates & interesting wallets
        • 2023-03-03 Coinbase vs Tether on DPRK Sanctions
        • 2023-12-01 Tether
        • 2024-01-24 Circle
        • 2024-02-07 Tether
    • ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ปDev Vetting
      • Munchables Case Study
    • ๐ŸฆExchange Monitoring
      • Binance - Binance US
    • ๐Ÿ“ŠPricing Case Studies
      • YGG Initial Allocations, Vesting & Pump Timing
    • ๐ŸงชProject Research
    • ๐ŸŽญScams
    • ๐Ÿช™Stablecoins
      • Tron
    • ๐ŸฅทTerrorism
      • Israel Blacklists
      • Israel Sanctions & Tether
    • ๐Ÿคทโ€โ™‚๏ธToken Misallocations
      • ๐ŸŸกether.fi
      • ๐Ÿ”ตOrbler
      • ๐ŸŸฃPolygon
        • Part 1: Circulating Supply Issues
        • Part 2: Staking Flow Problems
        • Part 3: Foundation Odd Flows To Exchanges
    • ๐ŸšฉTron
      • USDT Sizes
    • ๐Ÿ‘›Wallets
  • ๐Ÿค”Theoretical Research
    • Impossibilities
    • What Fraction Of Laundering Do We Expect?
Powered by GitBook
On this page
  1. Empirical Research
  2. Blacklists
  3. Specific dates & interesting wallets

2024-02-07 Tether

Previous2024-01-24 CircleNextDev Vetting

Last updated 1 year ago

Related to . You can find wallets blacklisted on this date . The flows in to those wallets make the blacklistings confusing.

There is a related example in the .

Here is a code snippet sufficient to extract all the inflows to these wallets via the DashArgos API:

sdk = looker_sdk.init40(...)
look = sdk.look(look_id=729) # this is the inflows look, you can set up your own too

# these are the addresses and tokens we care about here
query_filter = {
    "tron_txns.to_address": "TKo62ywGRK7vYXcpBavvmUmwKWgrPtw2Mx,TFWry4G122VJdZNn9uX3HFZ64FeZR4WB13,TRUzWMZnRseD3cZSKLGHvQ8yaiEyQtR2n5,TGm1Kz7W5mWrKp6ibJQvGdG7pXwMg1K1k1,TPXPXxf2rkXTBg1cJw4JfajmHNV8cPJ8B4",
    "tokens.symbol": "USDT",
}

# construct a new query based on the first one
new_query = sdk.create_query(body=looker_sdk.models40.WriteQuery(model=look.query.model, view=look.query.view, fields=look.query.fields, filters=look.query_filter))

# run it and load to a pandas dataframe
df = pd.read_csv(StringIO(sdk.run_query(query_id=new_query.id, result_format='csv')))
๐Ÿ”ฌ
๐Ÿด
this Tweet
with this dashboard
API documentation