diff --git a/.github/workflows/firebase-deployment.yml b/.github/workflows/firebase-deployment.yml index ef8c114585..3d6adba8ce 100644 --- a/.github/workflows/firebase-deployment.yml +++ b/.github/workflows/firebase-deployment.yml @@ -30,6 +30,7 @@ jobs: firebaseServiceAccount: '${{ secrets.FIREBASE_SA_API3_DOCS }}' expires: 7d channelId: ${{ steps.get_branch.outputs.branch_name }} + firebaseToolsVersion: '11.30.0' id: firebase_deploy - uses: actions/github-script@v6 diff --git a/docs/.vuepress/components/airnode/ContractAddresses.vue b/docs/.vuepress/components/airnode/ContractAddresses.vue index 0fa566b638..7bd8cd7634 100644 --- a/docs/.vuepress/components/airnode/ContractAddresses.vue +++ b/docs/.vuepress/components/airnode/ContractAddresses.vue @@ -85,20 +85,9 @@ export default { let notImportantArr = []; for (const key in response.data[this.contractName]) { - // Here the network is not in chainsRef list - // Is it a testnet or mainnet, tell by its repo name + // Skip if the network is not in chainsRef list if (!chainsRef[key]) { - let network = 'mainnet'; - if (response.data.chainNames[key].indexOf('testnet') > -1) { - network = 'testnet'; - } - importantArr.push({ - address: response.data[this.contractName][key], - chainId: parseInt(key), - fullname: response.data.chainNames[key], - type: network, - }); - // Here the chain is in the chainsRef list + continue; } else if (chainsRef[key].type === this.type) { if (important.includes(parseInt(key))) { importantArr.push({ diff --git a/docs/dapis/reference/chains.md b/docs/dapis/reference/chains.md index 0a505ef0c5..77183faab9 100644 --- a/docs/dapis/reference/chains.md +++ b/docs/dapis/reference/chains.md @@ -7,9 +7,6 @@ folder: Reference # {{$frontmatter.title}} -dAPIs can be read on the following chains using the -[DapiServer](../#dapiserver-sol) contract addresses listed below. Use the -[API3 Market](https://market.api3.org/) website to find the desired dAPI names -and the networks they are available on. - - +Please refer to the new API3 documentation for the latest +[Chains and Contracts](https://docs.api3.org/reference/dapis/chains/) page. +There you will also find the current technical information on accessing dAPIs.