Skip to content

Commit

Permalink
Merge pull request #897 from blockscout/PR-885
Browse files Browse the repository at this point in the history
[BENS] Add zns-subgraph
  • Loading branch information
sevenzing authored May 29, 2024
2 parents a55b41b + e6c0d51 commit 496e940
Show file tree
Hide file tree
Showing 15 changed files with 5,670 additions and 0 deletions.
11 changes: 11 additions & 0 deletions blockscout-ens/bens-server/config/prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@
}
}
},
"137": {
"blockscout": {
"url": "https://polygon.blockscout.com"
},
"subgraphs": {
"zns-subgraph": {
"use_cache": true,
"address_resolve_technique": "all_domains"
}
}
},
"8453": {
"blockscout": {
"url": "https://base.blockscout.com"
Expand Down
1 change: 1 addition & 0 deletions blockscout-ens/graph-node/subgraphs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
| bns-subgraph | Base | .base | |
| mode-subgraph | Mode | .mode | SpaceID contracts |
| lightlink-subgraph | Lightlink | .ll | SpaceID contracts |
| zns-subgraph | Polygon | .poly | |

## Add your own subgraph

Expand Down
81 changes: 81 additions & 0 deletions blockscout-ens/graph-node/subgraphs/zns-subgraph/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
.docker

# Graph cli generated
generated
build/
.DS_STORE
data
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Built output
dist

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/
dist/


# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next

# intellij
.idea

/tests/.bin

*.xlsx
*.csv
Loading

0 comments on commit 496e940

Please sign in to comment.