Skip to content

Commit

Permalink
remove goerli, add sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
wwhchung committed May 15, 2024
1 parent 56fca0c commit 52fb37c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/AppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<span @click="changeNetworks(42161)" :class="{selected: $store.state.network == 42161}">Arbitrum</span>
<span @click="changeNetworks(43114)" :class="{selected: $store.state.network == 43114 }">Avalanche</span>
<span @click="changeNetworks(56)" :class="{selected: $store.state.network == 56 }">BNB</span>
<span @click="changeNetworks(5)" :class="{selected: $store.state.network == 5}">Goerli</span>
<span @click="changeNetworks(5)" :class="{selected: $store.state.network == 11155111}">Sepolia</span>
<span @click="changeNetworks(80001)" :class="{selected: $store.state.network == 80001}">Mumbai</span>

<div class="header-networks-addresses" v-if="$store.state.network">
Expand Down
4 changes: 2 additions & 2 deletions src/components/FAQ.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<li>Mainnet: {{ engine.get(1) }}.</li>
<li>Polygon: {{ engine.get(137) }}.</li>
<li>Mumbai: {{ engine.get(80001) }}.</li>
<li>Goerli, Optimism, Base, Arbitrum, Avalanche, BNB: {{ commonEngineV1Address }}</li>
<li>Sepolia, Optimism, Base, Arbitrum, Avalanche, BNB: {{ commonEngineV1Address }}</li>
</ul>
<p>
If you would like to access the Royalty Registry directly to build your own lookup engine, the abi is <a href="https://github.com/manifoldxyz/royalty-registry-client/blob/main/src/abi/RoyaltyRegistry.json">here</a> and the Royalty Registry locations are:
Expand All @@ -123,7 +123,7 @@
<li>Mainnet: {{ registry.get(1) }}.</li>
<li>Polygon: {{ registry.get(137) }}.</li>
<li>Mumbai: {{ registry.get(80001) }}.</li>
<li>Goerli, Optimism, Base, Arbitrum, Avalanche, BNB: {{ commonRegistryAddress }}</li>
<li>Sepolia, Optimism, Base, Arbitrum, Avalanche, BNB: {{ commonRegistryAddress }}</li>
</ul>
</div>
</details>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/etherscan.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const NETWORK_DOMAINS: {[key: number]: string} = {
1: 'https://etherscan.io/',
5: 'https://goerli.etherscan.io/',
11155111: 'https://sepolia.etherscan.io/',
10: 'https://optimistic.etherscan.io/',
56: 'https://bscscan.com/',
137: 'https://polygonscan.com/',
Expand Down

0 comments on commit 52fb37c

Please sign in to comment.