Skip to content

Commit 4cbc4fb

Browse files
authored
Merge pull request #15691 from austintgriffith/start-using-blockscout-more
Start using Blockscout more (it is Open Source and Etherscan is closed source)
2 parents 097ff78 + e77fad4 commit 4cbc4fb

File tree

47 files changed

+54
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+54
-49
lines changed

app/[locale]/staking/deposit-contract/_components/deposit-contract.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { DEPOSIT_CONTRACT_ADDRESS } from "@/data/addresses"
3030
import useTranslation from "@/hooks/useTranslation"
3131
import { usePathname } from "@/i18n/routing"
3232
import consensys from "@/public/images/projects/consensys.png"
33-
import etherscan from "@/public/images/projects/etherscan-logo-circle.png"
33+
import blockscout from "@/public/images/resources/blockscout.webp"
3434
import ef from "@/public/images/staking/ef-blog-logo.png"
3535

3636
const FlexBox = (props: ChildOnlyProp) => (
@@ -237,9 +237,9 @@ const DepositContractPage = () => {
237237
alt: "",
238238
},
239239
{
240-
title: "Etherscan",
241-
link: `https://etherscan.io/address/${DEPOSIT_CONTRACT_ADDRESS}`,
242-
image: etherscan,
240+
title: "Blockscout",
241+
link: `https://eth.blockscout.com/address/${DEPOSIT_CONTRACT_ADDRESS}`,
242+
image: blockscout,
243243
alt: "",
244244
},
245245
]
@@ -391,9 +391,9 @@ const DepositContractPage = () => {
391391
)}
392392
</CopyToClipboard>
393393
<InlineLink
394-
href={`https://etherscan.io/address/${DEPOSIT_CONTRACT_ADDRESS}`}
394+
href={`https://eth.blockscout.com/address/${DEPOSIT_CONTRACT_ADDRESS}`}
395395
>
396-
{t("page-staking-deposit-contract-etherscan")}
396+
{t("page-staking-deposit-contract-blockexplorer")}
397397
</InlineLink>
398398
</ButtonRow>
399399
</>

public/content/developers/docs/apis/backend/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ These libraries abstract away much of the complexity of interacting directly wit
5555
**Etherscan - Block Explorer and Transaction APIs**
5656
- [Documentation](https://docs.etherscan.io/)
5757

58+
**Blockscout - Open Source Block Explorer**
59+
- [Documentation](https://docs.blockscout.com/)
60+
5861
**GetBlock-** **_Blockchain-as-a-service for Web3 development_**
5962

6063
- [GetBlock.io](https://getblock.io/)

public/content/guides/how-to-revoke-token-access/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Several websites let you view and revoke smart contracts connected to your addre
2020

2121
- [Ethallowance](https://ethallowance.com/) (Ethereum)
2222
- [Etherscan](https://etherscan.io/tokenapprovalchecker) (Ethereum)
23+
- [Blockscout](https://eth.blockscout.com/apps/revokescout) (Ethereum)
2324
- [Cointool](https://cointool.app/approve/eth) (multiple networks)
2425
- [Revoke](https://revoke.cash/) (multiple networks)
2526
- [Unrekt](https://app.unrekt.net/) (multiple networks)

public/content/history/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ The Tangerine Whistle fork was the first response to the denial of service (DoS)
581581

582582
#### Summary {#dao-fork-summary}
583583

584-
The DAO fork was in response to the [2016 DAO attack](https://www.coindesk.com/learn/understanding-the-dao-attack/) where an insecure [DAO](/glossary/#dao) contract was drained of over 3.6 million ETH in a hack. The fork moved the funds from the faulty contract to a [new contract](https://etherscan.io/address/0xbf4ed7b27f1d666546e30d74d50d173d20bca754) with a single function: withdraw. Anyone who lost funds could withdraw 1 ETH for every 100 DAO tokens in their wallets.
584+
The DAO fork was in response to the [2016 DAO attack](https://www.coindesk.com/learn/understanding-the-dao-attack/) where an insecure [DAO](/glossary/#dao) contract was drained of over 3.6 million ETH in a hack. The fork moved the funds from the faulty contract to a [new contract](https://eth.blockscout.com/address/0xbf4ed7b27f1d666546e30d74d50d173d20bca754) with a single function: withdraw. Anyone who lost funds could withdraw 1 ETH for every 100 DAO tokens in their wallets.
585585

586586
This course of action was voted on by the Ethereum community. Any ETH holder was able to vote via a transaction on [a voting platform](https://web.archive.org/web/20170620030820/http://v1.carbonvote.com/). The decision to fork reached over 85% of the votes.
587587

public/content/nft/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ Security issues relating to NFTs are most often related to phishing scams, smart
102102

103103
- [A beginner's guide to NFTs](https://linda.mirror.xyz/df649d61efb92c910464a4e74ae213c4cab150b9cbcc4b7fb6090fc77881a95d)_Linda Xie, January 2020_
104104
- [EtherscanNFT tracker](https://etherscan.io/nft-top-contracts)
105+
- [Blockscout NFT tracker](https://eth.blockscout.com/tokens?type=ERC-721,ERC-1155,ERC-404)
105106
- [ERC-721 token standard](/developers/docs/standards/tokens/erc-721/)
106107
- [ERC-1155 token standard](/developers/docs/standards/tokens/erc-1155/)
107108
- [Popular NFT Apps and Tools](https://www.ethereum-ecosystem.com/blockchains/ethereum/nfts)

public/content/wrapped-eth/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ Besides the [canonical implementation of WETH](https://etherscan.io/token/0xc02a
6262
## Further reading {#further-reading}
6363

6464
- [WTF is WETH?](https://weth.tkn.eth.limo/)
65-
- [WETH token information on Etherscan](https://etherscan.io/token/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2)
65+
- [WETH token information on Blockscout](https://eth.blockscout.com/token/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)
6666
- [Formal Verification of WETH](https://zellic.io/blog/formal-verification-weth)

src/intl/ar/page-staking-deposit-contract.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"page-staking-deposit-contract-confirm-address": "التأكيد للكشف عن العنوان",
99
"page-staking-deposit-contract-copied": "العنوان الذي تم نسخه",
1010
"page-staking-deposit-contract-copy": "نسخ العنوان",
11-
"page-staking-deposit-contract-etherscan": "عرض العقد على Etherscan",
11+
"page-staking-deposit-contract-blockexplorer": "عرض العقد على Etherscan",
1212
"page-staking-deposit-contract-h2": "هذا ليس المكان المخصص لتجميد العملات",
1313
"page-staking-deposit-contract-launchpad": "المراهنة باستخدام منصة التشغيل",
1414
"page-staking-deposit-contract-launchpad-2": "استخدام منصة التشغيل",

src/intl/bg/page-staking-deposit-contract.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"page-staking-deposit-contract-confirm-address": "Потвърдете, за да видите адреса",
99
"page-staking-deposit-contract-copied": "Копиран адрес",
1010
"page-staking-deposit-contract-copy": "Копиране на адрес",
11-
"page-staking-deposit-contract-etherscan": "Вижте договора в Etherscan",
11+
"page-staking-deposit-contract-blockexplorer": "Вижте договора в Etherscan",
1212
"page-staking-deposit-contract-h2": "Залагането не е тук",
1313
"page-staking-deposit-contract-launchpad": "Залагайте, като ползвате лончпад",
1414
"page-staking-deposit-contract-launchpad-2": "Ползвайте лончпад",

src/intl/bn/page-staking-deposit-contract.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"page-staking-deposit-contract-confirm-address": "ঠিকানা প্রকাশ নিশ্চিত করুন",
99
"page-staking-deposit-contract-copied": "কপি করা ঠিকানা",
1010
"page-staking-deposit-contract-copy": "ঠিকানা কপি করুন",
11-
"page-staking-deposit-contract-etherscan": "ইথারস্ক্যানে কনট্র্যাক্ট দেখুন",
11+
"page-staking-deposit-contract-blockexplorer": "ইথারস্ক্যানে কনট্র্যাক্ট দেখুন",
1212
"page-staking-deposit-contract-h2": "যেখানে আপনি স্টেক করেন এটি তা নয়",
1313
"page-staking-deposit-contract-launchpad": "লঞ্চপ্যাড ব্যবহার করে স্টেক করুন",
1414
"page-staking-deposit-contract-launchpad-2": "লঞ্চপ্যাড ব্যবহার করুন",

src/intl/ca/page-staking-deposit-contract.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"page-staking-deposit-contract-confirm-address": "Confirmeu per mostrar l'adreça",
99
"page-staking-deposit-contract-copied": "Adreça copiada",
1010
"page-staking-deposit-contract-copy": "Copiar l'adreça",
11-
"page-staking-deposit-contract-etherscan": "Mostrar el contracte a Etherscan",
11+
"page-staking-deposit-contract-blockexplorer": "Mostrar el contracte a Etherscan",
1212
"page-staking-deposit-contract-h2": "Aquí no és on has apostat",
1313
"page-staking-deposit-contract-launchpad": "Aposta utilitzant una plataforma",
1414
"page-staking-deposit-contract-launchpad-2": "Utilitza la plataforma de llançament",

0 commit comments

Comments
 (0)