Skip to content

Commit 62141b1

Browse files
committed
Cleanup
1 parent b44f47f commit 62141b1

4 files changed

Lines changed: 3 additions & 10 deletions

content/guides/Ethereum-Smart-Contract-Auditor-Roadmap.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ PDF: [Smart Contract Auditor.pdf](https://github.com/razzorsec/AuditorsRoadmap/f
3636

3737
* Smart Contract Testing
3838
* [Hardhat](https://hardhat.org/guides/waffle-testing.html)
39-
* [Better Programming Hub](https://betterprogramming.pub/the-complete-hands-on-hardhat-tutorial-9e23728fc8a4)
39+
* [Complete hands on Hardhat tutorial](https://dev.to/rodrigoherrerai/the-complete-hands-on-hardhat-tutorial-3kbd)
4040
* [Code Eater (Hindi)](https://www.youtube.com/watch?v=vuqhHOx6188&list=PLgPmWS2dQHW9mucRpDVe16j9Qn74ZXqcD&index=5)
4141
* [Foundry](https://github.com/foundry-rs/foundry)
4242
* [Tenderly](https://tenderly.co/)
@@ -108,7 +108,6 @@ PDF: [Smart Contract Auditor.pdf](https://github.com/razzorsec/AuditorsRoadmap/f
108108
* [Surya](https://github.com/ConsenSys/surya)
109109
* [Scribble](https://github.com/ConsenSys/scribble)
110110
* [BlockSec ETH/BSC Tx Analysis](https://versatile.blocksecteam.com/tx)
111-
* [ethtx ETH Tx Analysis](https://ethtx.info/)
112111

113112
* Continue Learning
114113
* [Ethereum Yellow Paper](https://github.com/ethereum/yellowpaper)

content/guides/clean-contracts.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ In a series of blog posts, I’m planning to go through several patterns, practi
1818

1919
# Clean Code
2020

21-
![WTFs/minute](../assets/images/wtfs-minute.jpeg)
22-
2321
In this first article, I’ll cover more general engineering practices based on the concepts of Clean Code. Clean code is a well-known concept within the software development industry. [Robert C Martin, also known as 'Uncle Bob' wrote the famous handbook](https://amzn.to/30RsoKk). Its principles go back to even the earlier concepts of the Agile manifesto and software craftsmanship. It’s a knowledge base for the way we think, write, and read code. Build on decades of wisdom in software development.
2422

2523
> _“Truth can only be found in one place: the code“_ - Robert C. Martin
@@ -181,8 +179,6 @@ If a transaction doesn’t have enough gas to execute, the out of gas error is n
181179

182180
## Testing
183181

184-
![Test my code](../assets/images/test-my-code.jpeg)
185-
186182
The same rules for clean code, apply to testing. Clean tests are tests that are easy to read. Easy to understand. And easy to maintain. Tests help you keep your code flexible, maintainable, and reusable. They validate the behaviors, reduce the risks of making unintended changes, and save time debugging and writing your code.
187183

188184
### F.I.R.S.T
@@ -255,8 +251,6 @@ It is based on a set of key principles.
255251

256252
> _"Continuous Integration doesn’t get rid of bugs, but it does make them dramatically easier to find and remove."_ - Martin Fowler
257253
258-
![Ship all the code](../assets/images/ship-all-the-code.jpeg)
259-
260254
## Further Reading
261255

262256
Check out my [Clean Contracts](https://github.com/wslyvh/clean-contracts) repo for supporting code example from each chapter.

content/tutorials/Deploy_Your_Own_ERC721_NFT_Staking_with_Infinite_Rewards_with_BuildBears_NoCode_Deployment renamed to content/tutorials/Deploy_Your_Own_ERC721_NFT_Staking_with_Infinite_Rewards_with_BuildBears_NoCode_Deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "In this tutorial, you'll deploy ERC721 NFT Staking smart contract
44
authors: ["@_BuildBear"]
55
tags: ["Smart Contracts", "DeFi", "Dapp"]
66
languages: ["Solidity"]
7-
url: "https://www.buildbear.io/resources/guides-and-tutorials/ERC721_NFT_Staking"
7+
url: "https://www.cookbook.dev/contracts/nft-staking-with-infinite-rewards"
88
dateAdded: 2023-08-18
99
level: "Intermediate"
1010
---

content/tutorials/learn-to-build-an-on-chain-dao.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ And yes, that is me doing windmills.
2121
🐍 Python Video: https://www.youtube.com/watch?v=rD8AxZ_wBA4
2222
🎛 Openzeppelin Governance: https://docs.openzeppelin.com/contracts/4.x/api/governance
2323
📈 Compound Governance: https://compound.finance/governance
24-
🧙‍♀️ Contract Wizard: https://docs.openzeppelin.com/contracts/4.x/wizard
24+
🧙‍♀️ Contract Wizard: https://docs.openzeppelin.com/contracts/5.x/wizard
2525
🗳 CastVoteBySig: https://forum.openzeppelin.com/t/what-is-votecastbysig/17069/2

0 commit comments

Comments
 (0)