Skip to content

Commit

Permalink
bens(config): add ape chain to configs (#1188)
Browse files Browse the repository at this point in the history
* add ape chain

* update to actual prod version
  • Loading branch information
sevenzing authored Jan 15, 2025
1 parent b69d34c commit 3aecd8a
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 7 deletions.
39 changes: 37 additions & 2 deletions blockscout-ens/bens-server/config/prod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"subgraphs_reader": {
"refresh_cache_schedule": "0 0 * * * *",
"refresh_cache_schedule": "0 0 */5 * * *",
"networks": {
"1": {
"blockscout": {
Expand Down Expand Up @@ -36,7 +36,7 @@
"url": "https://gnosis.blockscout.com/"
},
"use_protocols": [
"genome"
"genome", "ens"
]
},
"109": {
Expand Down Expand Up @@ -88,6 +88,15 @@
"base-name-service", "ens"
]
},
"33139": {
"blockscout": {
"url": "https://apechain.calderaexplorer.xyz"
},
"use_protocols": [
"d3-connect-ape"
],
"rpc_url": "https://rpc.apechain.com"
},
"34443": {
"blockscout": {
"url": "https://explorer.mode.network"
Expand Down Expand Up @@ -143,6 +152,14 @@
"use_protocols": [
"zns-blast"
]
},
"57073": {
"blockscout": {
"url": "https://explorer.inkonchain.com/"
},
"use_protocols": [
"ens"
]
}
},
"protocols": {
Expand Down Expand Up @@ -388,6 +405,24 @@
"icon_url": "https://i.imgur.com/cD6VIXk.png",
"docs_url": "https://docs.d3.app/"
}
},
"d3-connect-ape": {
"tld_list": ["ape"],
"network_id": 33139,
"subgraph_name": "d3-connect-ape-subgraph",
"address_resolve_technique": "addr2name",
"specific": {
"type": "d3_connect",
"native_token_contract": "0x0D435A6c16045Abeaf6A442Bf162fd52597B4Ed3",
"resolver_contract": "0xeA54b0E40E956383C95e28cb407FF35235Aa31fE"
},
"meta": {
"short_name": "D3",
"title": "D3 Connect",
"description": "D3 Connect is official identity service for top web3 communities.",
"icon_url": "https://i.imgur.com/cD6VIXk.png",
"docs_url": "https://docs.d3.app/"
}
}
}
}
Expand Down
5 changes: 5 additions & 0 deletions blockscout-ens/graph-node/deployer/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@
"subgraph_path": "../subgraphs/d3-connect-subgraph",
"subgraph_name": "d3-connect-shib-subgraph",
"network": "shibarium"
},
"d3-connect-ape": {
"subgraph_path": "../subgraphs/d3-connect-subgraph",
"subgraph_name": "d3-connect-ape-subgraph",
"network": "ape-mainnet"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@
"Registry": {
"address": "0xDe74799371Ceac11A0F52BA2694392A391D0dA18",
"startBlock": 3473390
},
"": ""
}
},
"shibarium-testnet": {
"Registry": {
"address": "0x91c2d22ca1028B2E55e3097096494Eb34b7fc81c",
"startBlock": 4555130
},
"": ""
}
},
"ape-mainnet": {
"Registry": {
"address": "0x0D435A6c16045Abeaf6A442Bf162fd52597B4Ed3",
"startBlock": 36550
}
}
}
}

0 comments on commit 3aecd8a

Please sign in to comment.