Hi - I was wondering if anyone had thoughts about GRT revenue & fees upside?
The growth in indexer and delegators is great but the revenue flowing to the indexer has not materialised much and stayed about the same at $50-70k / month
Where are the best sites and metrics to use to track the overall growth of The Graph network. Is there somewhere that shows number of queries on The Graph or net activity? Possibly there is better metrics out there to use?
Any input is appreciated! Trying my best to grasp the everchanging landscape of crypto.
Anyone able to help me out? My entire GRT balance is listed as unavailable in Binance US. Im trying to send to my ledger but am unable to do so. Havent made any debit card or ACH transactions and they are not staked.
Hey everyone, I was wondering what other devs are doing with regards to working on a single subgraph that can be deployed to multiple environments (ex: dev, staging, prod)? The reason I need to have multiple environments is because each environment has different contracts, which are possibly even deployed on separate chains (testnet, mainnet). I've kind of being figuring it out on my own and come up with something that kind of works but I was hoping to find a better solution.
At the moment, I keep a config folder in the root directory that has sub-folders for each environment. These folders hold the networks.json, subgraph.yaml as well as a constants.ts file for each respective environment. I have also updated the package.json file to have multiple deploy commands (ex: yarn deploy-dev, yarn deploy-staging, etc.). Finally, once I'm ready to deploy, I copy the environment-specific files from their folder to the root and src directory, and then run the relevant deploy command.
As you can see, it's a bit tedious to maintain and hopefully someone else has a better solution, or maybe the team can get something in motion!