-
Notifications
You must be signed in to change notification settings - Fork 449
docs: tw922-solidity-refs #3429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pete-vielhaber
wants to merge
5
commits into
master
Choose a base branch
from
tw922-solidity-refs
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4c4f14e
Adding Solidity references
pete-vielhaber 771dee3
Adding Solidity refs to sidebars
pete-vielhaber 8133a06
Moving refs to Solidity refs; adding link to Quickstart Solidity to refs
pete-vielhaber 3e52e3a
Typo
pete-vielhaber d199c55
Apply suggestions from code review
pete-vielhaber File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
docs/arbitrum-essentials/reference/solidity-references.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,78 @@ | ||
| --- | ||
| title: 'Solidity references' | ||
| description: 'Discover references/resources to learn and progress as a Solidity developer. Tutorials/guides/references.' | ||
| user_story: 'As a web2 or web3 developer, I want to learn more about Solidity.' | ||
| content_type: reference | ||
| author: pete-vielhaber | ||
| --- | ||
|
|
||
| Solidity is the dominant high-level, statically typed, object-oriented language for writing smart contracts that run on the Ethereum Virtual Machine (EVM) and EVM-compatible chains (including Layer 2s like Arbitrum). It powers the vast majority of DeFi, NFTs, DAOs, and other onchain applications. | ||
|
|
||
| ## Official documentation | ||
|
|
||
| These are the authoritative, always-current references. | ||
|
|
||
| - [Solidity documentation](https://docs.soliditylang.org/): The single most important resource. Two sections are must reads: | ||
| - Solidity by Example | ||
| - Security Considerations | ||
| - [Solidity Language Portal](https://www.soliditylang.org/): Overview, translations, links to the compiler/repo. | ||
| - [Ethereum.org developer docs](https://ethereum.org/developers/docs/): Smart contracts, EVM, testing, compiling, security, and the full stack. Excellent companion to the Solidity docs. | ||
| - [Official GitHub Repository](https://github.com/ethereum/solidity): Compiler source, issues, releases, and vulnerability reporting. | ||
|
pete-vielhaber marked this conversation as resolved.
Outdated
|
||
|
|
||
| ## Learning paths and courses | ||
|
|
||
| The ecosystem moves fast; high-quality, free project-based courses outperform most books (which are slow to market). | ||
|
|
||
| - [Cyfrin Updraft (Patrick Collins)](https://updraft.cyfrin.io/): Beginner-to-advanced, heavily project-based, uses Foundry from the start. Includes security/auditing tracks. | ||
| - [RareSkills Ultimate Solidity Course](https://rareskills.io/learn-solidity): In-depth, trusted by security experts and auditors. Strong on real-world patterns and protocol walkthroughs. | ||
| - [CryptoZombies](https://cryptozombies.io/): Classic interactive game-based introduction. A little outdated, but still excellent for absolute beginners to learn syntax and basic patterns quickly. | ||
| - [Alchemy University](https://www.alchemy.com/university/courses/solidity): Online education platform for blockchain and Web3 development courses. | ||
| - [Risein](https://www.risein.com/#open-programs): Online education for blockchain and Web3 development courses. | ||
| - [HackQuest](https://www.hackquest.io/learning-track/Ethereum): Ethereum development. | ||
| - [Stylus course](https://www.hackquest.io/learning-track/Arbitrum) | ||
| - [LearnWeb3](https://learnweb3.io/degrees/ethereum-developer-degree/): Ethereum specific developer learning. | ||
|
pete-vielhaber marked this conversation as resolved.
Outdated
|
||
| - [Stylus course](https://learnweb3.io/courses/arbitrum-stylus-course/) | ||
| - [Ethernaut](https://ethernaut.openzeppelin.com/): Interactive smart contract hacking game. | ||
|
|
||
| **Paid courses** | ||
|
|
||
| - [Metana](https://metana.io/web3-solidity-bootcamp-ethereum-blockchain/) | ||
|
|
||
| ## Development frameworks and tooling | ||
|
|
||
| - [Foundry (Rust-based)](https://getfoundry.sh/): Excellent fuzzing, mainnet forking, and cheat codes. Preferred by security researchers and DeFi protocols. | ||
| - [Hardhat](https://hardhat.org/): JavaScript/TypeScript-first. Hardhat 3 brings a Rust-powered runtime for big performance gains. Outstanding stack traces, console.log in Solidity, vast plugin ecosystem (verification, gas reporter, etc.). Great for teams with frontend/web devs. | ||
| - [Remix IDE (browser-based)](https://remix.ethereum.org/): Zero-setup prototyping, debugging, and deployment. Perfect for quickstarts and learning. | ||
|
|
||
| **Other tools**: VS Code + Solidity extensions, Slither (static analysis, integrates with Foundry), Etherscan/Blockscout for verification. | ||
|
|
||
| ## Security best practices and auditing | ||
|
|
||
| Security is non-negotiable—most exploits stem from reentrancy, access control, integer issues, oracle problems, or upgrade logic. | ||
|
|
||
| #### Core resources | ||
|
pete-vielhaber marked this conversation as resolved.
Outdated
|
||
|
|
||
| - [Solidity Docs](https://docs.soliditylang.org/) → Security Considerations section. | ||
| - [ConsenSys Diligence Smart Contract Best Practices](https://consensysdiligence.github.io/smart-contract-best-practices/) | ||
| - [OWASP Smart Contract Top 10](https://owasp.org/www-project-smart-contract-top-10/) | ||
| - [OpenZeppelin Ethernaut](https://ethernaut.openzeppelin.com/) | ||
| - [Trail of Bits “Building Secure Contracts” GitHub repo](https://github.com/crytic/building-secure-contracts) | ||
| - [Cyfrin Updraft Security & Auditing track](https://updraft.cyfrin.io/courses/security) | ||
|
|
||
| #### Libraries and standards | ||
|
pete-vielhaber marked this conversation as resolved.
Outdated
|
||
|
|
||
| - [OpenZeppelin Contracts](https://docs.openzeppelin.com/contracts/5.x/): The gold standard for ERC-20/721/1155, access control (Ownable, Roles), upgradeable proxies (UUPS/Transparent), pausability, etc. Always audit your usage and prefer their implementations over custom code. [OpenZeppelin GitHub repo](https://github.com/OpenZeppelin/openzeppelin-contracts). | ||
|
|
||
| ## Community, forums, ongoing learning | ||
|
|
||
| - [Ethereum Stack Exchange](https://ethereum.stackexchange.com/): Best for technical Q&A | ||
|
pete-vielhaber marked this conversation as resolved.
Outdated
|
||
| - [awesome-solidity GitHub repo](https://github.com/bkrem/awesome-solidity): Curated list of repos, tools, and examples | ||
|
pete-vielhaber marked this conversation as resolved.
Outdated
|
||
|
|
||
| ## GitHub repositories worth studying | ||
|
|
||
| - [Official compiler](https://github.com/argotorg/solidity) and [examples](https://github.com/ethereum/solidity-examples) | ||
| - [OpenZeppelin](https://github.com/OpenZeppelin)/[openzeppelin-contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) (read every line eventually). | ||
| - [foundry-rs](https://github.com/foundry-rs/foundry)/[forge-std](https://github.com/foundry-rs/forge-std) | ||
| - [NomicFoundation/hardhat](https://github.com/NomicFoundation/hardhat) | ||
| - [ethereum/EIPs](https://github.com/ethereum/EIPs) (track changes affecting the EVM/Solidity). | ||
| - Protocol repos (Uniswap, Aave, etc.) for real-world patterns. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.