I want to get all possible smart-contract addresses from bitquery graphql api for fantom blockchain

Hello

Please, can you help me to get all possible smart-contract addresses from bitquery graphql that your database stores

For example i want all smart-contract addresses from fantom blockchain - if your database stores 500,000 or 1 million or even more smart-contract addresses - it would be that information that i want to achieve

I know that I can query maximum 25,000 addresses per 1 query from your graphql api

Thank you

Try this

{
  ethereum(network: fantom) {
    smartContractCalls(
      options: {asc: "block.height", limit: 10}
      smartContractMethod: {is: "Contract Creation"}
    ) {
      block {
        height
        timestamp {
          time
        }
      }
      smartContract {
        contractType
        address {
          address
          annotation
        }
        currency {
          name
          symbol
          decimals
          tokenType
        }
      }
    }
  }
}