Skip to content

Commit

Permalink
sort airnode contract addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
vanshwassan committed Jan 31, 2024
1 parent 8e7a659 commit 236445a
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 26 deletions.
89 changes: 69 additions & 20 deletions docs/reference/airnode/latest/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,22 @@ directory.
<table>
<th class="contract-addresses-heading">Chain</th><th class="contract-addresses-heading">ID</th><th class="contract-addresses-heading">Contract Address</th>
<tr v-for="(chain, index) in AirnodeRrpV0">
<td style="max-width:150px;">{{chain.fullname}}</td>
<td>{{chain.id}}</td>
<td class="contract-addresses-address" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
<template v-if="chain.id == 1 || chain.id == 11155111">
<td class="mainnet-and-sepolia" style="max-width:150px;">{{chain.fullname}}</td>
<td class="mainnet-and-sepolia">{{chain.id}}</td>
<td class="mainnet-and-sepolia" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
</template>
</tr>
<tr v-for="(chain, index) in AirnodeRrpV0.sort((a, b) => a.fullname.localeCompare(b.fullname))">
<template v-if="chain.id != 1 && chain.id != 11155111">
<td style="max-width:150px;">{{chain.fullname}}</td>
<td>{{chain.id}}</td>
<td class="contract-addresses-address" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
</template>
</tr>
</table>

Expand All @@ -49,11 +60,22 @@ directory.
<table>
<th class="contract-addresses-heading">Chain</th><th class="contract-addresses-heading">ID</th><th class="contract-addresses-heading">Contract Address</th>
<tr v-for="(chain, index) in RequesterAuthorizerWithAirnode">
<td style="max-width:150px;">{{chain.fullname}}</td>
<td>{{chain.id}}</td>
<td class="contract-addresses-address" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
<template v-if="chain.id == 1 || chain.id == 11155111">
<td class="mainnet-and-sepolia" style="max-width:150px;">{{chain.fullname}}</td>
<td class="mainnet-and-sepolia">{{chain.id}}</td>
<td class="mainnet-and-sepolia" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
</template>
</tr>
<tr v-for="(chain, index) in RequesterAuthorizerWithAirnode.sort((a, b) => a.fullname.localeCompare(b.fullname))">
<template v-if="chain.id != 1 && chain.id != 11155111">
<td style="max-width:150px;">{{chain.fullname}}</td>
<td>{{chain.id}}</td>
<td class="contract-addresses-address" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
</template>
</tr>
</table>

Expand All @@ -62,11 +84,22 @@ directory.
<table>
<th class="contract-addresses-heading">Chain</th><th class="contract-addresses-heading">ID</th><th class="contract-addresses-heading">Contract Address</th>
<tr v-for="(chain, index) in AccessControlRegistry">
<td style="max-width:150px;">{{chain.fullname}}</td>
<td>{{chain.id}}</td>
<td class="contract-addresses-address" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
<template v-if="chain.id == 1 || chain.id == 11155111">
<td class="mainnet-and-sepolia" style="max-width:150px;">{{chain.fullname}}</td>
<td class="mainnet-and-sepolia">{{chain.id}}</td>
<td class="mainnet-and-sepolia" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
</template>
</tr>
<tr v-for="(chain, index) in AccessControlRegistry.sort((a, b) => a.fullname.localeCompare(b.fullname))">
<template v-if="chain.id != 1 && chain.id != 11155111">
<td style="max-width:150px;">{{chain.fullname}}</td>
<td>{{chain.id}}</td>
<td class="contract-addresses-address" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
</template>
</tr>
</table>

Expand All @@ -75,11 +108,22 @@ directory.
<table>
<th class="contract-addresses-heading">Chain</th><th class="contract-addresses-heading">ID</th><th class="contract-addresses-heading">Contract Address</th>
<tr v-for="(chain, index) in AirnodeRrpV0DryRun">
<td style="max-width:150px;">{{chain.fullname}}</td>
<td>{{chain.id}}</td>
<td class="contract-addresses-address" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
<template v-if="chain.id == 1 || chain.id == 11155111">
<td class="mainnet-and-sepolia" style="max-width:150px;">{{chain.fullname}}</td>
<td class="mainnet-and-sepolia">{{chain.id}}</td>
<td class="mainnet-and-sepolia" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
</template>
</tr>
<tr v-for="(chain, index) in AirnodeRrpV0DryRun.sort((a, b) => a.fullname.localeCompare(b.fullname))">
<template v-if="chain.id != 1 && chain.id != 11155111">
<td style="max-width:150px;">{{chain.fullname}}</td>
<td>{{chain.id}}</td>
<td class="contract-addresses-address" NOWRAP>{{chain.contractAddress}}
<CopyIcon :text="chain.contractAddress" />
</td>
</template>
</tr>
</table>

Expand All @@ -100,6 +144,11 @@ directory.
.contract-addresses-heading {
text-align: left;
}
.mainnet-and-sepolia {
color:black;
background: #e5ecf9;
text-align: left;
}
.contract-addresses-copy-icon {
margin-left: 5px;
cursor: pointer;
Expand Down
12 changes: 6 additions & 6 deletions docs/reference/qrng/chains.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,14 +153,14 @@ Quintessence is available on selected mainnets and testnets.
| Network | ID | AirnodeRrpV0 Address | minConfirmations |
| ----------------------------------------------------------------------------------- | ---------- | -------------------------------------------------------------------------------------------------------------------- | ---------------- |
| [{{getChainNameById(1)}}](https://etherscan.io) | 1 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 6 |
| [{{getChainNameById(42161)}}](https://arbiscan.io) | 42161 | <code>0xb015ACeEdD478fc497A798Ab45fcED8BdEd08924</code><CopyIcon text="0xb015ACeEdD478fc497A798Ab45fcED8BdEd08924"/> | 25 |
| [{{getChainNameById(42170)}}](https://nova.arbiscan.io) | 42170 | <code>0xd864A45334C7a632cA9149993682354D7f967F28</code><CopyIcon text="0xd864A45334C7a632cA9149993682354D7f967F28"/> | 25 |
| [{{getChainNameById(43114)}}](https://snowtrace.io/) | 43114 | <code>0xC02Ea0f403d5f3D45a4F1d0d817e7A2601346c9E</code><CopyIcon text="0xC02Ea0f403d5f3D45a4F1d0d817e7A2601346c9E"/> | 25 |
| [{{getChainNameById(42161)}}](https://arbiscan.io) | 42161 | <code>0xb015ACeEdD478fc497A798Ab45fcED8BdEd08924</code><CopyIcon text="0xb015ACeEdD478fc497A798Ab45fcED8BdEd08924"/> | 25 |
| [{{getChainNameById(1313161554)}}](https://explorer.mainnet.aurora.dev) | 1313161554 | <code>0xE338f63170c42bA0d2a888f18F6185369779009c</code><CopyIcon text="0xE338f63170c42bA0d2a888f18F6185369779009c"/> | 25 |
| [{{getChainNameById(43114)}}](https://snowtrace.io/) | 43114 | <code>0xC02Ea0f403d5f3D45a4F1d0d817e7A2601346c9E</code><CopyIcon text="0xC02Ea0f403d5f3D45a4F1d0d817e7A2601346c9E"/> | 25 |
| [{{getChainNameById(8453)}}](https://basescan.org/) | 8453 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 10 |
| [{{getChainNameById(56)}}](https://bscscan.com) | 56 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 25 |
| [{{getChainNameById(288)}}](https://bobascan.com) | 288 | <code>0x1d4F592E0723e03bed2Ff6d78F3CEe6750f08B38</code><CopyIcon text="0x1d4F592E0723e03bed2Ff6d78F3CEe6750f08B38"/> | 10 |
| [{{getChainNameById(56288)}}](https://blockexplorer.bnb.boba.network) | 56288 | <code>0x20C9e9610d4e719a39F82893b3f42e2730F42778</code><CopyIcon text="0x20C9e9610d4e719a39F82893b3f42e2730F42778"/> | 25 |
| [{{getChainNameById(288)}}](https://bobascan.com) | 288 | <code>0x1d4F592E0723e03bed2Ff6d78F3CEe6750f08B38</code><CopyIcon text="0x1d4F592E0723e03bed2Ff6d78F3CEe6750f08B38"/> | 10 |
| [{{getChainNameById(250)}}](https://ftmscan.com) | 250 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 80 |
| [{{getChainNameById(100)}}](https://gnosisscan.io) | 100 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 15 |
| [{{getChainNameById(1890)}}](https://phoenix.lightlink.io/) | 1890 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 10 |
Expand Down Expand Up @@ -204,14 +204,14 @@ Quantum Blockchains is available on selected mainnets.
| Network | ID | AirnodeRrpV0 Address | minConfirmations |
| ----------------------------------------------------------------------------------- | ---------- | -------------------------------------------------------------------------------------------------------------------- | ---------------- |
| [{{getChainNameById(1)}}](https://etherscan.io) | 1 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 6 |
| [{{getChainNameById(42161)}}](https://arbiscan.io) | 42161 | <code>0xb015ACeEdD478fc497A798Ab45fcED8BdEd08924</code><CopyIcon text="0xb015ACeEdD478fc497A798Ab45fcED8BdEd08924"/> | 25 |
| [{{getChainNameById(42170)}}](https://nova.arbiscan.io) | 42170 | <code>0xd864A45334C7a632cA9149993682354D7f967F28</code><CopyIcon text="0xd864A45334C7a632cA9149993682354D7f967F28"/> | 25 |
| [{{getChainNameById(43114)}}](https://snowtrace.io/) | 43114 | <code>0xC02Ea0f403d5f3D45a4F1d0d817e7A2601346c9E</code><CopyIcon text="0xC02Ea0f403d5f3D45a4F1d0d817e7A2601346c9E"/> | 25 |
| [{{getChainNameById(42161)}}](https://arbiscan.io) | 42161 | <code>0xb015ACeEdD478fc497A798Ab45fcED8BdEd08924</code><CopyIcon text="0xb015ACeEdD478fc497A798Ab45fcED8BdEd08924"/> | 25 |
| [{{getChainNameById(1313161554)}}](https://explorer.mainnet.aurora.dev) | 1313161554 | <code>0xE338f63170c42bA0d2a888f18F6185369779009c</code><CopyIcon text="0xE338f63170c42bA0d2a888f18F6185369779009c"/> | 25 |
| [{{getChainNameById(43114)}}](https://snowtrace.io/) | 43114 | <code>0xC02Ea0f403d5f3D45a4F1d0d817e7A2601346c9E</code><CopyIcon text="0xC02Ea0f403d5f3D45a4F1d0d817e7A2601346c9E"/> | 25 |
| [{{getChainNameById(8453)}}](https://basescan.org/) | 8453 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 10 |
| [{{getChainNameById(56)}}](https://bscscan.com) | 56 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 25 |
| [{{getChainNameById(288)}}](https://bobascan.com) | 288 | <code>0x1d4F592E0723e03bed2Ff6d78F3CEe6750f08B38</code><CopyIcon text="0x1d4F592E0723e03bed2Ff6d78F3CEe6750f08B38"/> | 10 |
| [{{getChainNameById(56288)}}](https://blockexplorer.bnb.boba.network) | 56288 | <code>0x20C9e9610d4e719a39F82893b3f42e2730F42778</code><CopyIcon text="0x20C9e9610d4e719a39F82893b3f42e2730F42778"/> | 25 |
| [{{getChainNameById(288)}}](https://bobascan.com) | 288 | <code>0x1d4F592E0723e03bed2Ff6d78F3CEe6750f08B38</code><CopyIcon text="0x1d4F592E0723e03bed2Ff6d78F3CEe6750f08B38"/> | 10 |
| [{{getChainNameById(250)}}](https://ftmscan.com) | 250 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 80 |
| [{{getChainNameById(100)}}](https://gnosisscan.io) | 100 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 15 |
| [{{getChainNameById(1890)}}](https://phoenix.lightlink.io/) | 1890 | <code>0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd</code><CopyIcon text="0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd"/> | 10 |
Expand Down

0 comments on commit 236445a

Please sign in to comment.