Skip to content

Commit 0ea5651

Browse files
pf add etherlink, remove entropy testnet (#921)
1 parent b3ff903 commit 0ea5651

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

components/EntropyDeploymentTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const EntropyDeploymentTable = ({
99
showReveal: boolean;
1010
}) => {
1111
const sortedDeployments = Object.entries(deployments)
12-
.filter(([name]) => name !== "monad")
12+
.filter(([name]) => name !== "monad" && name !== "etherlink-testnet")
1313
.sort();
1414
return (
1515
<table>

components/EntropyFeeTable.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ const FeeTable = ({
4242
}
4343
}, [deployments]);
4444

45-
const sortedDeployments = Object.entries(deployments).sort();
45+
const sortedDeployments = Object.entries(deployments)
46+
.filter(([name]) => name !== "etherlink-testnet")
47+
.sort();
4648
return (
4749
<table>
4850
<thead>

pages/price-feeds/core/contract-addresses/evm.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ Pyth is currently available on the EVM networks below using Pyth Stable price so
115115
| Dela Deperp Testnet | <CopyAddress address="0xA2aa501b19aff244D90cc15a4Cf739D2725B5729" url="https://sepolia-delascan.deperp.com/address/0xA2aa501b19aff244D90cc15a4Cf739D2725B5729" /> |
116116
| Dela Deperp Mithreum Testnet | <CopyAddress address="0xe9d69CdD6Fe41e7B621B4A688C5D1a68cB5c8ADc" url="https://mithreum-sepolia.deperp.com/address/0xe9d69CdD6Fe41e7B621B4A688C5D1a68cB5c8ADc" /> |
117117
| EOS testnet | <CopyAddress address="0x0708325268dF9F66270F1401206434524814508b" url="https://explorer.testnet.evm.eosnetwork.com/address/0x0708325268dF9F66270F1401206434524814508b" /> |
118-
| Etherlink testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://testnet.explorer.etherlink.com/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
118+
| Etherlink Ghostnet testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://testnet.explorer.etherlink.com/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
119+
| Etherlink Shadownet testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://shadownet.explorer.etherlink.com/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
119120
| Eventum testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://testnet-blockscout.eh-dev.app/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
120121
| EVMOS testnet | <CopyAddress address="0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E" url="https://evm.evmos.dev/address/0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E" /> |
121122
| Fantom testnet | <CopyAddress address="0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb" url="https://testnet.ftmscan.com/address/0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb" /> |

0 commit comments

Comments
 (0)