Coinpath annotations

Hi, I am currently querying the Bitcoin network using coinpath.

I have observed a couple of annotations in the wild: “Exchange Wallet,Binance,Cold Wallet” and “Exchange Wallet,Binance”

What are all of the possible annotations that a sender / receiver may have?

Are these annotations guessed? If so, is there an associated probability value for their accuracy?

Thanks!

We usually recognise top exchanges/protocols/services/tokens/contracts etc.

We annotations are crowd sourced from various public sources, their accuracy is probable not certain.

Thanks, Gaurav.
Is there a list of what the valid annotations are? (Or a way to query those unique values?)

You can search option I think, No way to get annotations directly.

query {
  search(string: "%Binance%"){
    network{
      network
    }
subject{
            __typename
            ... on Address {
              address
              annotation
            }
            ... on Currency {
              symbol
              name
              address
              tokenId
              tokenType
            }
            ... on SmartContract {
              address
              annotation
              contractType
              protocol
            }
          }
  }
}
1 Like