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

update dictionaries and fix broken projects #53

Merged
merged 5 commits into from
Nov 6, 2023
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 Arbitrum/arbitrum-nova-starter/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const project: EthereumProject = {
* When developing your project we suggest getting a private API key
*/
endpoint: ["https://nova.arbitrum.io/rpc"],
// dictionary: "https://gx.api.subquery.network/sq/subquery/arbitrum-nova-dictionary" - we don't have one for Nova
dictionary: 'https://dict-tyk.subquery.network/query/arbitrum-nova'
},
dataSources: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ export async function handleTransaction(tx: ApproveTransaction): Promise<void> {

await approval.save();
}

1 change: 0 additions & 1 deletion Astar/astar-zkevm-testnet-starter/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ const project: EthereumProject = {
*/
endpoint: ["https://rpc.zkatana.gelato.digital"],
// Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
// dictionary: "",
},
dataSources: [
{
Expand Down
1 change: 1 addition & 0 deletions Base/base-nft/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ const project: EthereumProject = {
* When developing your project we suggest getting a private API key
*/
endpoint: ["https://mainnet.base.org/", "https://rpc.notadegen.com/base"],
dictionary: "https://dict-tyk.subquery.network/query/base-mainnet",
},
dataSources: [
{
Expand Down
2 changes: 1 addition & 1 deletion Ethereum/ethereum-bayc/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const project: EthereumProject = {
# We suggest providing an array of endpoints for increased speed and reliability
*/
endpoint: ["https://eth.api.onfinality.io/public"],
dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet",
},
dataSources: [
{
Expand Down
4 changes: 2 additions & 2 deletions Ethereum/ethereum-bayc/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"include": [
"src/**/*",
"../../node_modules/@subql/types-core/dist/global.d.ts",
"../../node_modules/@subql/types-ethereum/dist/global.d.ts"
"node_modules/@subql/types-core/dist/global.d.ts",
"node_modules/@subql/types-ethereum/dist/global.d.ts"
]
}
2 changes: 1 addition & 1 deletion Ethereum/ethereum-chainlink/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const project: EthereumProject = {
* When developing your project we suggest getting a private API key
*/
endpoint: ["https://eth.api.onfinality.io/public"],
dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet",
},
dataSources: [
{
Expand Down
6 changes: 5 additions & 1 deletion Ethereum/ethereum-chainlink/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@
"target": "es2017",
"strict": true
},
"include": ["src/**/*", "node_modules/@subql/types-ethereum/dist/global.d.ts"]
"include": [
"src/**/*",
"node_modules/@subql/types-core/dist/global.d.ts",
"node_modules/@subql/types-ethereum/dist/global.d.ts"
]
}
2 changes: 1 addition & 1 deletion Ethereum/ethereum-gravatar/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const project: EthereumProject = {
* When developing your project we suggest getting a private API key
*/
endpoint: ["https://eth.api.onfinality.io/public"],
dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet",
},
dataSources: [
{
Expand Down
2 changes: 1 addition & 1 deletion Ethereum/ethereum-opensea/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const project: EthereumProject = {
* When developing your project we suggest getting a private API key
*/
endpoint: ["https://eth.api.onfinality.io/public"],
dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet",
},
dataSources: [
{
Expand Down
2 changes: 1 addition & 1 deletion Ethereum/ethereum-starter/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const project: EthereumProject = {
* When developing your project we suggest getting a private API key
*/
endpoint: ["https://eth.api.onfinality.io/public"],
dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet",
},
dataSources: [
{
Expand Down
2 changes: 1 addition & 1 deletion Ethereum/ethereum-uniswap-v3/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const project: EthereumProject = {
* When developing your project we suggest getting a private API key
*/
endpoint: ["https://eth.api.onfinality.io/public"],
dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet",
},
dataSources: [
{
Expand Down
6 changes: 5 additions & 1 deletion Ethereum/ethereum-uniswap-v3/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@
"target": "es2017",
"strict": true
},
"include": ["src/**/*", "node_modules/@subql/types-ethereum/dist/global.d.ts"]
"include": [
"src/**/*",
"node_modules/@subql/types-core/dist/global.d.ts",
"node_modules/@subql/types-ethereum/dist/global.d.ts"
]
}
2 changes: 1 addition & 1 deletion Gnosis/gnosis-poap/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const project: EthereumProject = {
// "https://opt-mainnet.g.alchemy.com/v2/demo",
"https://rpc.gnosischain.com",
],
dictionary: "https://api.subquery.network/sq/subquery/gnosis-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/gnosis-mainnet",
},
dataSources: [
{
Expand Down
2 changes: 1 addition & 1 deletion Gnosis/gnosis-starter/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const project: EthereumProject = {
// "https://opt-mainnet.g.alchemy.com/v2/demo",
"https://rpc.gnosischain.com",
],
dictionary: "https://api.subquery.network/sq/subquery/gnosis-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/gnosis-mainnet",
},
dataSources: [
{
Expand Down
2 changes: 1 addition & 1 deletion Linea/linea-starter/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const project: EthereumProject = {
*/
endpoint: ["https://linea.blockpi.network/v1/rpc/public"],
// Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
// dictionary: "https://gx.api.subquery.network/sq/subquery/linea-dictionary"
dictionary: 'https://dict-tyk.subquery.network/query/linea-mainnet'
},
dataSources: [
{
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/galxe/ethereum.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ network:
chainId: "1"
endpoint:
- https://eth.llamarpc.com
dictionary: https://gx.api.subquery.network/sq/subquery/eth-dictionary
dictionary: https://dict-tyk.subquery.network/query/eth-mainnet
dataSources:
- kind: ethereum/Runtime
name: SpaceStationV1
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/galxe/polygon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ network:
chainId: "137"
endpoint:
- https://polygon.llamarpc.com
dictionary: https://gx.api.subquery.network/sq/subquery/polygon-dictionary
dictionary: https://dict-tyk.subquery.network/query/polygon
dataSources:
- kind: ethereum/Runtime
name: SpaceStationV1
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/polygon-plasma-bridge/ethereum.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ network:
# When developing your project we suggest getting a private API key
endpoint: "https://eth.api.onfinality.io/public"
# Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
dictionary: "https://gx.api.subquery.network/sq/subquery/polygon-dictionary"
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet"

dataSources:
- kind: ethereum/Runtime # We use ethereum runtime since Polygon is a layer-2 that is compatible
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/polygon-plasma-bridge/polygon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ network:
# When developing your project we suggest getting a private API key
endpoint: "https://polygon.api.onfinality.io/public"
# Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
dictionary: "https://gx.api.subquery.network/sq/subquery/polygon-dictionary"
dictionary: "https://dict-tyk.subquery.network/query/polygon"

dataSources:
- kind: ethereum/Runtime # We use ethereum runtime since Polygon is a layer-2 that is compatible
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/safe/ethereum.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ network:
chainId: "1"
endpoint:
- https://eth.llamarpc.com
dictionary: https://gx.api.subquery.network/sq/subquery/eth-dictionary
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet"
dataSources:
- kind: ethereum/Runtime
startBlock: 7450116
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/safe/matic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ network:
chainId: "137"
endpoint:
- https://polygon.llamarpc.com
dictionary: https://gx.api.subquery.network/sq/subquery/polygon-dictionary
dictionary: "https://dict-tyk.subquery.network/query/polygon"
dataSources:
- kind: ethereum/Runtime
startBlock: 45222934
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/snapshot/ethereum.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ network:
chainId: "1"
endpoint:
- https://eth.llamarpc.com
dictionary: https://gx.api.subquery.network/sq/subquery/eth-dictionary
dictionary: "https://dict-tyk.subquery.network/query/eth-mainnet"
dataSources:
- kind: ethereum/Runtime
startBlock: 11225329
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/snapshot/goerli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ network:
chainId: "5"
endpoint:
- wss://ethereum-goerli.publicnode.com
# dictionary: TODO add a dictionary
dictionary:
dataSources:
- kind: ethereum/Runtime
startBlock: 7383494
Expand Down
2 changes: 1 addition & 1 deletion Multi-Chain/snapshot/matic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ network:
chainId: "137"
endpoint:
- https://polygon.llamarpc.com
dictionary: https://gx.api.subquery.network/sq/subquery/polygon-dictionary
dictionary: "https://dict-tyk.subquery.network/query/polygon"
dataSources:
- kind: ethereum/Runtime
startBlock: 7407807
Expand Down
3 changes: 1 addition & 2 deletions Polygon/polygon-lens/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ const project: EthereumProject = {
*/
endpoint: ["https://polygon.api.onfinality.io/public"],
// Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
dictionary:
"https://gx.api.subquery.network/sq/subquery/polygon-dictionary",
dictionary: "https://dict-tyk.subquery.network/query/polygon"
},
dataSources: [
{
Expand Down
3 changes: 1 addition & 2 deletions Polygon/polygon-plasma-bridge/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ const project: EthereumProject = {
*/
endpoint: "https://polygon.api.onfinality.io/public",
// Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
dictionary:
"https://gx.api.subquery.network/sq/subquery/polygon-dictionary",
dictionary: 'https://dict-tyk.subquery.network/query/polygon'
},
dataSources: [
{
Expand Down
3 changes: 1 addition & 2 deletions Polygon/polygon-starter/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ const project: EthereumProject = {
*/
endpoint: ["https://polygon.api.onfinality.io/public"],
// Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
dictionary:
"https://gx.api.subquery.network/sq/subquery/polygon-dictionary",
dictionary: 'https://dict-tyk.subquery.network/query/polygon'
},
dataSources: [
{
Expand Down
Loading