Can I get Whale txs over 100kUSD data for SOL,ADA?

Is the above metric available only for ETH? i cant get data for other coins like sol,ada ?
can you suggest some query if any

Getting in USD might not be possible. Have to check but you can easily get Whales in token value itself. Here’s the query. Replace the smartcontract address of the token for which you want to filter, as well as the token amount

query MyQuery {
  EVM(dataset: realtime, network: bsc) {
    Transfers(
      limit: {count: 10}
      where: {Block: {Date: {after: "2023-02-20"}}, Transfer: {Amount: {gt: "10000"}, Currency: {SmartContract: {is: "0x3ee2200efb3400fabb9aacf31297cbdd1d435d47"}}}}
      orderBy: {descending: Transfer_Amount}
    ) {
      Block {
        Date
      }
      Transaction {
        To
        From
      }
      Log {
        Index
      }
      Transfer {
        Currency {
          Symbol
        }
        Amount
      }
    }
  }
}