Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ _This is a work in progress_
- [Subgraph on sepolia](https://thegraph.com/studio/subgraph/cow-subgraph-sepolia/)
- [Subgraph on gnosis chain network](https://thegraph.com/studio/subgraph/cow-subgraph-gnosis/)
- [Subgraph on arbitrum one network](https://thegraph.com/studio/subgraph/cow-subgraph-arb/)
- [Subgraph on base](https://thegraph.com/studio/subgraph/cow-subgraph-base/)

For more information about:

Expand Down
6 changes: 6 additions & 0 deletions config/base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"network": "base",
"startBlock": 21407238,
"uniV3Factory": "0x33128a8fC17869897dcE68Ed026d694621f6FDfD",
"uniV3StartBlock": 1371680
}
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
"build": "graph build",
"deploy": "node src/scripts/deploy.js",
"deploy:all": "run-s deploy:mainnet deploy:sepolia deploy:gc deploy:arbitrum-one",
"deploy:mainnet": "cross-env NETWORK=mainnet SUBGRAPH=cow yarn deploy",
"deploy:sepolia": "cross-env NETWORK=sepolia SUBGRAPH=cow-sepolia yarn deploy",
"deploy:gc": "cross-env NETWORK=gnosis SUBGRAPH=cow-gc yarn deploy",
"deploy:arbitrum-one": "cross-env NETWORK=arbitrum-one SUBGRAPH=cow-arb yarn deploy"
"deploy:mainnet": "cross-env NETWORK=mainnet SUBGRAPH=cow-subgraph-mainnet yarn deploy",
"deploy:sepolia": "cross-env NETWORK=sepolia SUBGRAPH=cow-subgraph-sepolia yarn deploy",
"deploy:gc": "cross-env NETWORK=gnosis SUBGRAPH=cow-subgraph-gnosis yarn deploy",
"deploy:arbitrum-one": "cross-env NETWORK=arbitrum-one SUBGRAPH=cow-subgraph-arb yarn deploy",
"deploy:base": "cross-env NETWORK=base SUBGRAPH=cow-subgraph-base yarn deploy"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.82.0",
Expand Down