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

feat: v3 sepolia #104

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The Aave Protocol subgraphs index data from the protocol smart contracts, and ex

### Test networks

- [Sepolia V3](https://thegraph.com/hosted-service/subgraph/aave/protocol-v3-sepolia)
- [Goerli V2](https://thegraph.com/hosted-service/subgraph/aave/protocol-v2-goerli)
- [Goerli V3](https://thegraph.com/hosted-service/subgraph/aave/protocol-v3-goerli)
- [Mumbai V2](https://thegraph.com/hosted-service/subgraph/aave/aave-v2-polygon-mumbai)
Expand Down Expand Up @@ -210,7 +211,7 @@ See [TheGraph API](https://thegraph.com/docs/en/developer/graphql-api/) docs for
}
collateralAssetPriceUSD
borrowAssetPriceUSD
}
}
}
}
```
Expand Down
9 changes: 9 additions & 0 deletions config/sepolia-v3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"network": "sepolia",
"AaveOracleAddress": "0x132C06E86CcCf93Afef7B33f0FF3e2E97EECf8f6",
"AaveOracleStartBlock": 3006665,
"PoolAddressesProviderRegistryAddress": "0xb13Cfa6f8B2Eed2C37fB00fF0c1A59807C585810",
"PoolAddressesProviderRegistryStartBlock": 3006615,
"RewardsControllerAddress": "0x74269d0f5f1C2C44663f0214f2EE42c00a144460",
"RewardsControllerStartBlock": 3006674
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"deploy:hosted:mainnet-v3": "VERSION=v3 BLOCKCHAIN=v3 NETWORK=mainnet env-cmd npm run prepare:subgraph && SLUG=aave/protocol-v3 env-cmd npm run subgraph:deploy:hosted",
"deploy:hosted:goerli-v2": "VERSION=v2 BLOCKCHAIN=ethereum NETWORK=goerli env-cmd npm run prepare:subgraph && SLUG=aave/protocol-v2-goerli env-cmd npm run subgraph:deploy:hosted",
"deploy:hosted:goerli-v3": "VERSION=v3 BLOCKCHAIN=v3 NETWORK=goerli env-cmd npm run prepare:subgraph && SLUG=aave/protocol-v3-goerli env-cmd npm run subgraph:deploy:hosted",
"deploy:hosted:sepolia-v3": "VERSION=v3 BLOCKCHAIN=v3 NETWORK=sepolia env-cmd npm run prepare:subgraph && SLUG=aave/protocol-v3-sepolia env-cmd npm run subgraph:deploy:hosted",
"deploy:hosted:mainnet-arc": "VERSION=v2-arc BLOCKCHAIN=ethereum-arc NETWORK=mainnet env-cmd npm run prepare:subgraph && SLUG=aave/aave-arc env-cmd npm run subgraph:deploy:hosted",
"deploy:hosted:mainnet-centrifuge": "VERSION=v2-centrifuge BLOCKCHAIN=ethereum-arc NETWORK=mainnet env-cmd npm run prepare:subgraph && SLUG=aave/aave-centrifuge env-cmd npm run subgraph:deploy:hosted",
"deploy:hosted:polygon-v2": "VERSION=v2 BLOCKCHAIN=matic NETWORK=matic env-cmd npm run prepare:subgraph && SLUG=aave/aave-v2-matic env-cmd npm run subgraph:deploy:hosted",
Expand Down