Get Contract IDs deployed by account

What’s the best way to query all contracts deployed by a certain account?

What’s the best way to get all AssetIds a user owns by a given contract?

Thank you

One of the ways to query the data is using our Graphql API and another way is you can use our indexers

Could you help me understand how?

Like I see how I can get which contracts a user has deployed by using the transactionsByOwner and search for ContractCreated output

  • But how do I get all assets minted from a specific contract?
  • If I know an assetId, how can I get which contract this assetId belongs to?

Example:

  • I want to list all NFTs minted from a given contract
  • I know all assets a user owns, I want to be able to see which contracts they were minted from

thx!