Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/EntropyDeploymentTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const EntropyDeploymentTable = ({
showReveal: boolean;
}) => {
const sortedDeployments = Object.entries(deployments)
.filter(([name]) => name !== "monad")
.filter(([name]) => name !== "monad" && name !== "etherlink-testnet")
.sort();
return (
<table>
Expand Down
4 changes: 3 additions & 1 deletion components/EntropyFeeTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ const FeeTable = ({
}
}, [deployments]);

const sortedDeployments = Object.entries(deployments).sort();
const sortedDeployments = Object.entries(deployments)
.filter(([name]) => name !== "etherlink-testnet")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'm worried we forget about it in the future and later come and see this and be like oh why did we do this? :D i think it's just ok to remove it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AFAIK this data is coming from Fortuna API. Wondering how it can be removed ? If there's a way, let's get this removed instead of this workaround.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nidhi-singh02 explained to me that this comes from fortuna api. let's keep it then.

.sort();
return (
<table>
<thead>
Expand Down
3 changes: 2 additions & 1 deletion pages/price-feeds/core/contract-addresses/evm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ Pyth is currently available on the EVM networks below using Pyth Stable price so
| Dela Deperp Testnet | <CopyAddress address="0xA2aa501b19aff244D90cc15a4Cf739D2725B5729" url="https://sepolia-delascan.deperp.com/address/0xA2aa501b19aff244D90cc15a4Cf739D2725B5729" /> |
| Dela Deperp Mithreum Testnet | <CopyAddress address="0xe9d69CdD6Fe41e7B621B4A688C5D1a68cB5c8ADc" url="https://mithreum-sepolia.deperp.com/address/0xe9d69CdD6Fe41e7B621B4A688C5D1a68cB5c8ADc" /> |
| EOS testnet | <CopyAddress address="0x0708325268dF9F66270F1401206434524814508b" url="https://explorer.testnet.evm.eosnetwork.com/address/0x0708325268dF9F66270F1401206434524814508b" /> |
| Etherlink testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://testnet.explorer.etherlink.com/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
| Etherlink Ghostnet testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://testnet.explorer.etherlink.com/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add the testnet name to identify.

| Etherlink Shadownet testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://shadownet.explorer.etherlink.com/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
| Eventum testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://testnet-blockscout.eh-dev.app/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
| EVMOS testnet | <CopyAddress address="0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E" url="https://evm.evmos.dev/address/0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E" /> |
| Fantom testnet | <CopyAddress address="0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb" url="https://testnet.ftmscan.com/address/0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb" /> |
Expand Down
Loading