-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add rari fuse pools support * Refactor subgraph tasks * Remove reference to stakewise subgraph
- Loading branch information
Showing
18 changed files
with
2,041 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"name": "const", | ||
"version": "0.1.0", | ||
"version": "1.0.5", | ||
"license": "AGPL-3.0-only", | ||
"main": "index.ts", | ||
"scripts": { | ||
"codegen": "true", | ||
"build": "true", | ||
"prepare:goerli": "mustache ../../config/goerli.json index.template.ts > index.ts", | ||
"prepare:mainnet": "mustache ../../config/mainnet.json index.template.ts > index.ts", | ||
"build:goerli": "yarn prepare:goerli", | ||
"build:mainnet": "yarn prepare:mainnet", | ||
"create:local": "true", | ||
"deploy:mainnet": "true", | ||
"deploy:goerli": "true", | ||
"deploy:goerli": "yarn build:goerli", | ||
"deploy:mainnet": "yarn build:mainnet", | ||
"deploy:local": "true" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "ethereum", | ||
"version": "0.1.1", | ||
"version": "1.0.5", | ||
"license": "AGPL-3.0-only", | ||
"scripts": { | ||
"codegen": "graph codegen subgraph.yaml", | ||
"build": "graph build subgraph.yaml", | ||
"prepare:goerli": "mustache config/goerli.json subgraph.template.yaml > subgraph.yaml", | ||
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml", | ||
"build:goerli": "yarn prepare:goerli && graph codegen subgraph.yaml && graph build subgraph.yaml", | ||
"build:mainnet": "yarn prepare:mainnet && graph codegen subgraph.yaml && graph build subgraph.yaml", | ||
"create:local": "graph create --node $GRAPH_NODE_URL stakewise/ethereum", | ||
"deploy:mainnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/ethereum-mainnet", | ||
"deploy:goerli": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/ethereum-goerli", | ||
"deploy:local": "graph deploy --version-label 0.1.1 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/ethereum" | ||
"deploy:mainnet": "yarn build:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/ethereum-mainnet", | ||
"deploy:goerli": "yarn build:goerli && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/ethereum-goerli", | ||
"deploy:local": "graph deploy --version-label 1.0.5 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/ethereum" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"network": "mainnet", | ||
"sETH2_149": { | ||
"address": "0x18f49849d20bc04059fe9d775df9a38cd1f5ec9f", | ||
"startBlock": "13976410" | ||
}, | ||
"sETH2_46": { | ||
"address": "0x83d534ab1d4002249b0e6d22410b62cf31978ca2", | ||
"startBlock": "13398765" | ||
}, | ||
"rewardEthToken": { | ||
"address": "0x20bc832ca081b91433ff6c17f85701b6e92486c5", | ||
"startBlock": "13298766" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "rari-fuse", | ||
"version": "1.0.5", | ||
"license": "AGPL-3.0-only", | ||
"scripts": { | ||
"prepare:goerli": "true", | ||
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml", | ||
"build:goerli": "yarn prepare:goerli", | ||
"build:mainnet": "yarn prepare:mainnet && graph codegen subgraph.yaml && graph build subgraph.yaml", | ||
"create:local": "graph create --node $GRAPH_NODE_URL stakewise/rari-fuse", | ||
"deploy:mainnet": "yarn build:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/rari-fuse-mainnet", | ||
"deploy:goerli": "yarn build:goerli", | ||
"deploy:local": "graph deploy --version-label 1.0.5 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/rari-fuse" | ||
} | ||
} |
Oops, something went wrong.