39 lines
529 B
Markdown
39 lines
529 B
Markdown
|
|
|
|
## deployment
|
|
|
|
```
|
|
yarn codegen
|
|
yarn build
|
|
yarn deploy
|
|
```
|
|
|
|
## deployment-script
|
|
networks are defined in deploy.js
|
|
This solution overwrites the subgraph.yaml with the template and enables the possible to upgrade the same contract on different chains
|
|
```
|
|
node deploy.js base
|
|
```
|
|
|
|
## queries
|
|
|
|
for stats
|
|
```
|
|
{
|
|
stats(id:"0x01") {
|
|
harbTotalSupply
|
|
stakeTotalSupply
|
|
outstandingStake
|
|
totalMinted
|
|
mintedLastWeek
|
|
mintedLastDay
|
|
mintNextHourProjected
|
|
totalBurned
|
|
burnedLastWeek
|
|
burnedLastDay
|
|
burnNextHourProjected
|
|
}
|
|
}
|
|
```
|
|
|
|
|