for example, I write a custom solidity interface
interface IMyInterface is IERC165{
}
Is there a way to find all smart contracts which is IMyInterface
compatible deployed on the net?
It could be useful in some scenario like:
- If I want to build a NFT marketplace, I can use this way to find all NFT collections to query all
IERC721
There are some existing apis for NFT collections like
But I can not find any api which supports like non-ERC contracts