Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: arbitrum-one deployment #4

Merged
merged 1 commit into from
Jun 21, 2024
Merged
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
2 changes: 1 addition & 1 deletion networks.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"arbitrum": {
"arbitrum-one": {
"SubgraphAvailabilityManager": {
"address": "0x1cB555359319A94280aCf85372Ac2323AaE2f5fd",
"startBlock": 223974980
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 network-monitoring-subgraph",
"test": "yarn && yarn codegen && graph test",
"deploy-arbitrum-sepolia": "yarn && yarn codegen && graph build --network arbitrum-sepolia && graph deploy --studio graph-monitoring-arb-sepolia",
"deploy-arbitrum": "yarn && yarn codegen && graph build --network arbitrum && graph deploy --studio graph-monitoring-arbitrum"
"deploy-arbitrum": "yarn && yarn codegen && graph build --network arbitrum-one && graph deploy --studio graph-monitoring-arbitrum"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.71.0",
Expand Down
12 changes: 6 additions & 6 deletions subgraph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ schema:
dataSources:
- kind: ethereum
name: SubgraphAvailabilityManager
network: arbitrum-sepolia
network: arbitrum-one
source:
abi: SubgraphAvailabilityManager
address: "0x71D9aE967d1f31fbbD1817150902de78f8f2f73E"
startBlock: 49584061
address: "0x1cB555359319A94280aCf85372Ac2323AaE2f5fd"
startBlock: 223974980
mapping:
kind: ethereum/events
apiVersion: 0.0.7
Expand All @@ -30,11 +30,11 @@ dataSources:
file: ./src/subgraph-availability-manager.ts
- kind: ethereum
name: SAODataEdge
network: arbitrum-sepolia
network: arbitrum-one
source:
address: "0xB61AF143c79Cbdd68f179B657AaC86665CC2B469"
abi: SAODataEdge
startBlock: 49584061
address: "0xeD16cEbd4fa74a0016E1149cc03563Db4B223aec"
startBlock: 223927924
mapping:
kind: ethereum/events
apiVersion: 0.0.7
Expand Down
Loading