├── README.md ├── blockchain ├── README.md ├── bitcoin.md ├── consensys │ ├── README.md │ ├── consensys.md │ └── pos.md ├── domains.md ├── ethereum.md ├── ethereum_pos.md ├── forks.md ├── interoperability │ ├── README.md │ └── interoperability.md ├── l1.md ├── l2.md ├── mixers.md ├── oracles.md ├── scale.md ├── security │ ├── 51.md │ ├── README.md │ ├── account-safety.md │ ├── blockchain-security.md │ ├── double-spending.md │ ├── mev.md │ ├── smart-contracts-security.md │ └── sybil.md ├── tools │ ├── README.md │ ├── graph.md │ ├── ipfs.md │ ├── providers.md │ └── tools.md ├── wallets │ ├── README.md │ ├── custody.md │ ├── mpc.md │ ├── multisig.md │ └── wallets.md └── zero.md ├── blockchains ├── README.md └── bitcoin │ ├── README.md │ ├── basics.md │ └── ordinals.md ├── defi ├── README.md ├── dao │ └── dao.md ├── defi.md ├── economics.md ├── insurance │ ├── README.md │ └── insurance.md ├── lending │ ├── README.md │ ├── aave.md │ ├── compound.md │ ├── lending.md │ └── truefi.md ├── nft │ ├── README.md │ ├── f-nft.md │ ├── marketplace.md │ ├── metaverse │ │ ├── README.md │ │ ├── decentraland.md │ │ ├── metaverse.md │ │ └── sandbox.md │ ├── nft.md │ ├── p2e │ │ ├── P2E.md │ │ ├── README.md │ │ └── cryptokitties.md │ └── soulbound.md ├── stablecoins │ └── stablecoins.md ├── tokenization │ ├── README.md │ └── basics.md ├── tokens │ ├── README.md │ ├── fungible-tokens.md │ └── tokenomics │ │ ├── README.md │ │ ├── airdrops.md │ │ ├── distribution.md │ │ ├── initial-offering.md │ │ ├── launchpads │ │ ├── README.md │ │ └── launchpads.md │ │ ├── token_mechanics.md │ │ └── tokenomics.md ├── trading │ ├── README.md │ ├── cex │ │ └── cex.md │ ├── derivatives.md │ ├── dex │ │ ├── README.md │ │ ├── curve.md │ │ ├── dex.md │ │ ├── sushi.md │ │ ├── uni.md │ │ └── uni3.md │ ├── frontrunning.md │ ├── fundamental.md │ ├── strategies.md │ └── technical.md └── vaults │ ├── README.md │ ├── vaults.md │ └── yield.md ├── regulation ├── README.md └── kyc.md └── web3 └── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Web3 roadmap for non-developers 2 | 3 | Hello! We are the [MetaLamp](https://metalamp.io/) team - we have been packaging customer ideas into finished products since 2014. Since 2020, we have focused on projects in the web3 space and we've been developing our expertise which we want to share with the community. 4 | 5 | We already have open access roadmaps and training programs for front-end and back-end developers that have helped hundreds of people gain knowledge about development from scratch. Now many of these people are working on real IT projects. And now we're publishing our roadmap for everyone who wants to work in the field of web3, but doesn't know where to start. 6 | 7 | Our roadmap can be useful to people working or looking for work as: 8 | 9 | * **HR-manager**, which needs to evaluate the developer's level of immersion in web3 10 | * **A project manager** who strives to speak the same language with a devs team and clearly understand the progress of work on projects 11 | * **A sales manager** who needs to understand the customers’ pains and needs of a project in the field of DeFi at the pre-sale stage and the formation of an ideal commercial offer 12 | * **A digital marketer** who wants to understand his audience in order to select relevant channels for promoting services 13 | * **An editor/copywriter** who knows the importance of writing in the language of the audience and using catchy topics 14 | * **An enthusiast** who wants to understand the world of decentralized techs in order to follow trends to earn money or even launch their own project 15 | 16 | We want to grow and help others grow. Leave any suggestions and comments to the roadmap (write or contact, or sign, as in the interface of where we will publish, people could comment on something) 17 | 18 | 19 | ## Table of contents 20 | 21 | * [Web 3.0](web3/README.md) 22 | * [Blockchain basics](blockchain/README.md) 23 | * [DEFI basics](defi/README.md) 24 | * [Regulation](regulation/README.md) 25 | * [Blockchains](blockchains/README.md) 26 | -------------------------------------------------------------------------------- /blockchain/README.md: -------------------------------------------------------------------------------- 1 | # Blockchain 2 | 3 | - [Bitcoin](bitcoin.md) 4 | - [Ethereum and smart-contracts](ethereum.md) 5 | - [Wallets](wallets/README.md) 6 | - [Consensys](consensys/README.md) 7 | - [Ethereum v2](ethereum_pos.md) 8 | - [Oracles](oracles.md) 9 | - [Forks](forks.md) 10 | - [Security](security/README.md) 11 | - [Development tools](tools/README.md) 12 | - [Zero knowledge proof](zero.md) 13 | - [Interoperability](interoperability/README.md) 14 | - [Scallability](scale.md) 15 | - [Mixers](mixers.md) 16 | - [Human readable domains](domains.md) 17 | -------------------------------------------------------------------------------- /blockchain/bitcoin.md: -------------------------------------------------------------------------------- 1 | # Blockchain and Bitcoin 2 | 3 | ## Resources: 4 | 5 | * [Blockchain Inside Out: How Bitcoin Works. Once and for all in simple words](https://vas3k.com/blog/blockchain/) 6 | * [But how does bitcoin actually work? by 3Blue1Brown](https://www.youtube.com/watch?v=bBC-nXj3Ng4) 7 | * [How Public and Private Key Work In Your Crypto Wallets](https://www.youtube.com/watch?v=bvSJm7fHXto) 8 | * [What is a Cryptographic Hashing Function? (Example + Purpose)](https://www.youtube.com/watch?v=gTfNtop9vzM) 9 | 10 | 11 | ## Additional resources: 12 | * [What are Blockchain Confirmations and Why Do We Need Them?](https://originstamp.com/blog/what-are-blockchain-confirmations-and-why-do-we-need-them/) 13 | * [Bitcoin blocks explorer](https://blockexplorer.one/bitcoin/mainnet) 14 | * [What is a Bitcoin node? A beginner’s guide on blockchain nodes](https://cointelegraph.com/bitcoin-for-beginners/what-is-a-bitcoin-node-a-beginners-guide-on-blockchain-nodes) 15 | * [How Do BLOCKCHAIN Nodes Work? Different Types Explained](https://www.youtube.com/watch?v=Jc0NwgqCtik) 16 | * [Bitcoin node size](https://ycharts.com/indicators/bitcoin_blockchain_size) 17 | 18 | ## Questions: 19 | 20 | * What is blockchain? What problem does it solve? 21 | * How to add new block to the blockchain? What is nonce? What is Mining Difficulty? 22 | * What is a hash function and what are 5 rules with it? 23 | * What types of keys are there? What are they needed for? How keys work together? 24 | * What is a node in blockchain? What types of nodes do you know? 25 | * Who are miners and what are mining pools? What is Asics? 26 | * What is a hash rate? 27 | * What is the current reward for mining a block? 28 | * How many bitcoins are there in total? 29 | * What is halving? When was the last halving? 30 | * How will the Bitcoin blockchain work when all the Bitcoins are mined? 31 | * What is the current commission for transferring bitcoins? 32 | * What is the size of Bitcoin blockchain node right now? 33 | -------------------------------------------------------------------------------- /blockchain/consensys/README.md: -------------------------------------------------------------------------------- 1 | # Consensys 2 | 3 | * [Basics](consensys.md) 4 | * [Proof of stake](pos.md) -------------------------------------------------------------------------------- /blockchain/consensys/consensys.md: -------------------------------------------------------------------------------- 1 | # Consensys 2 | 3 | ## Resources: 4 | 5 | * [The Consensus Series, Part I: The Basics of Collectivity](https://blog.coinfund.io/the-consensus-series-part-i-the-basics-of-collectivity-a11d76ff4d5d) 6 | * [Consensus Algorithms](https://www.dremio.com/wiki/consensus-algorithms/) 7 | * [12 Consensus Mechanisms + How they Work (Pros/Cons)](https://www.youtube.com/watch?v=3QCykHU89To) 8 | * [All Major Blockchain Consensus Algorithms Explained](https://medium.com/@learnwithwhiteboard_digest/all-major-blockchain-consensus-algorithms-explained-6934b4f5d47a) 9 | 10 | ### Game Theory 11 | 12 | * [Game Theory and Cryptocurrencies](https://academy.binance.com/en/articles/game-theory-and-cryptocurrencies) 13 | * [Game Theory and Blockchain](https://medium.com/@africablockchaininstitute/game-theory-and-blockchain-4ed20fe9f6e3) 14 | 15 | ## Questions: 16 | 17 | * What is consensus mechanism? Why is it needed? 18 | * What are consensus mechanisms exist? 19 | -------------------------------------------------------------------------------- /blockchain/consensys/pos.md: -------------------------------------------------------------------------------- 1 | # Proof of Stake 2 | 3 | ## Resources: 4 | 5 | * [What is Proof of Work? (Cryptocurrency Explanation)](https://www.youtube.com/watch?v=XLcWy1uV8YM) 6 | * [What is Proof of Stake? How it works (Animated) + Ethereum 2.0 Upgrade!](https://www.youtube.com/watch?v=x83EVUZ_EWo) 7 | 8 | ## Additional resources: 9 | 10 | ## Questions: 11 | 12 | * What is Proof-of-Stake? 13 | * How does leader selection happen in PoS? 14 | * What are pros and cons of PoS? 15 | * What are the differences between PoW & PoS? 16 | -------------------------------------------------------------------------------- /blockchain/domains.md: -------------------------------------------------------------------------------- 1 | # Human readable domains 2 | 3 | ## Resources: 4 | 5 | ### ENS 6 | 7 | * [ens.domains](https://ens.domains/) 8 | * [What is ENS? Ethereum Name Service Lookup System](https://www.youtube.com/watch?v=P8RlPsjGaR8) 9 | * [A COMPREHENSIVE GUIDE TO ETHEREUM NAME SERVICE (ENS) IN CRYPTOCURRENCY](https://medium.com/@feeltheking76/a-comprehensive-guide-to-ethereum-name-service-ens-in-cryptocurrency-29b94943e41e) 10 | * [Dune @ethereumnameservice / ENS](https://dune.com/ethereumnameservice/ens) 11 | * [What is ENS? What exactly is ENS & Core Concepts](https://support.ens.domains/en/collections/4027739-what-is-ens) 12 | 13 | ### Unstoppable domains 14 | * [Unstoppable domains](https://unstoppabledomains.com/) 15 | * [How To Own Unstoppable Domains](https://www.youtube.com/watch?v=4NfUfq2u1KE) 16 | * [Unstoppable Domains Tutorial (Human-Readable Crypto Addresses)](https://www.youtube.com/watch?v=NhslUcvojOk) 17 | * [What is Unstoppable Domain and How Does it Work?](https://tinycryptolabs.medium.com/what-is-unstoppable-domain-and-how-does-it-work-e3aafc5d9037) 18 | 19 | ## Questions: 20 | 21 | * How does DNS work and what is it? 22 | * What is Ethereum Name Service? 23 | * What is the difference between ENS and Unstoppable domains in: 24 | - Supported chains; 25 | - Fees; 26 | - Domain for site; 27 | - Allowed addresses; 28 | - Passing ownership of name; 29 | * What are the risks of using Unstoppable domains? 30 | -------------------------------------------------------------------------------- /blockchain/ethereum.md: -------------------------------------------------------------------------------- 1 | # Ethereum and smart-contracts 2 | 3 | ## Resources: 4 | 5 | * [How Ethereum and Smart Contracts Work. Distributed Turing Machine with Blockсhain Protection](https://vas3k.com/blog/ethereum/) 6 | * [CODE IS LAW? Smart Contracts Explained (Ethereum, DeFi)](https://www.youtube.com/watch?v=pWGLtjG-F5c) 7 | * [What are Smart Contracts in Crypto? (4 Examples + Animated)](https://www.youtube.com/watch?v=ZE2HxTmxfrI) 8 | * [What is Ethereum Gas? (Examples + Easy Explanation)](https://www.youtube.com/watch?v=3ehaSqwUZ0s) 9 | * [What is the EVM? Ethereum Virtual Machine - Explained with Animations](https://www.youtube.com/watch?v=sTOcqS4msoU) 10 | 11 | ## Additional resources: 12 | * [etherscan.io - Ethereum transactions scanner](https://etherscan.io/) 13 | * [What Is Etherscan and How to Use It?](https://academy.binance.com/en/articles/what-is-etherscan-and-how-to-use-it) 14 | * [Upgradable Smart Contracts: What They Are and How To Deploy Your Own](https://blog.chain.link/upgradable-smart-contracts/) - Read only first simple pattern. 15 | 16 | ## Questions: 17 | 18 | * What are smart contracts? What problem do they solve? 19 | * Why is it impossible to write smart contracts for bitcoin, but possible for Ethereum? 20 | * Describe process from calling a smart contract function to adding transaction to block? 21 | * How to make an http request from inside the smart contract function? 22 | * Is it possible to call the function of another smart contract from within a smart contract function? 23 | * Is it possible to call a smart contract function using a delayed timer? Can the contract return funds to the user automatically without calling functions if the transaction was violated? 24 | * Who pays the fee for calling the smart contract method? How is this commission calculated? What is Gas Price and Gas Limit? 25 | * What happens if the commission is not enough to perform the function of a smart contract? 26 | * How is the difference between wallet and contract in the Ethereum network? 27 | * What is the reason of calling a transaction without a recipient? 28 | * What is the difference between a chain of states and a chain of changes? 29 | * What is storage in the smart contract of the Ethereum network? 30 | * Is it real to change contract code? 31 | 32 | ## Tasks: 33 | * Look at what the code of smart contract looks like [here](https://etherscan.io/address/0xdac17f958d2ee523a2206206994597c13d831ec7#code) 34 | -------------------------------------------------------------------------------- /blockchain/ethereum_pos.md: -------------------------------------------------------------------------------- 1 | # Ethereum v2 2 | 3 | ## Resources: 4 | 5 | * [ETHEREUM MERGE - The Most Anticipated Event In Crypto Explained](https://finematics.com/the-ethereum-merge-explained/) 6 | * [Ethereum roadmap. The Merge.](https://ethereum.org/en/roadmap/merge/) 7 | * [The Merge Is Done. What’s Next for the Ethereum Ecosystem?](https://consensys.net/blog/news/the-merge-is-done-whats-next-for-the-ethereum-ecosystem/) 8 | 9 | ## Additional resources: 10 | 11 | * [One Year After the Merge: Where Does Ethereum Stand?](https://decrypt.co/197341/one-year-after-the-merge-where-does-ethereum-stand) 12 | * [Lido Protocol](https://medium.com/bracket-labs/lido-protocol-48ceb046aa1a) 13 | * [Ethereum Staking Pools: The Risks of Lido's Centralization](https://www.hord.fi/blog/ethereum-staking-pools-the-risks-of-lidos-centralization) 14 | * [ETH staking market share](https://dune.com/hildobby/eth2-staking) 15 | 16 | ## Questions: 17 | 18 | * What are the main goals of Ethereum Merge? 19 | * What are the main changes in Ethereum? 20 | * What is Beacon Chain? Why is this update called "the merge"? 21 | * What problems are not resolved after the merge? 22 | * What happened with previous version of Ethereum? 23 | * What are the goals of the following updates: The surge, the verge, the purge, the splurge? 24 | * What is the Lido protocol? What does "liquid staking" mean? Why it made Ethereum more centralised? 25 | -------------------------------------------------------------------------------- /blockchain/forks.md: -------------------------------------------------------------------------------- 1 | # Forks 2 | 3 | 4 | ## Resources: 5 | 6 | * [Soft Fork vs Hard Fork in Crypto (ETH Classic, Litecoin, BTC Cash...)](https://www.youtube.com/watch?v=Bu1GcyyFZ7w) 7 | 8 | ## Additional resources: 9 | * [How Bitcoin Cash Was Created](https://originstamp.com/blog/how-bitcoin-cash-was-created/) 10 | * [What is Ethereum Classic? ETC Explained with Animations](https://youtu.be/dmLKnnzqmVU) 11 | * [What is Litecoin? LTC Explained with Animations](https://www.youtube.com/watch?v=JMTJvXyHJGU) 12 | 13 | ## Questions: 14 | 15 | * What is a fork? 16 | * What is the difference between soft fork and hard fork? 17 | * How Ethereum Classic was born? What was the main purpose? 18 | * How Bitcoin Cash and Litecoin were born? What was the main purpose? 19 | -------------------------------------------------------------------------------- /blockchain/interoperability/README.md: -------------------------------------------------------------------------------- 1 | # Interoperability 2 | 3 | * [Interoperability](./interoperability.md) 4 | 5 | -------------------------------------------------------------------------------- /blockchain/interoperability/interoperability.md: -------------------------------------------------------------------------------- 1 | # Interoperability 2 | 3 | 4 | ## Resources: 5 | 6 | * [What Is Blockchain Interoperability?](https://blog.chain.link/blockchain-interoperability/) 7 | * [Blockchain Agnostic: What, Why, and How?](https://chain-link.translate.goog/education-hub/blockchain-agnostic?_x_tr_sl=en&_x_tr_tl=ru&_x_tr_hl=ru&_x_tr_pto=wapp) 8 | * [What is a Crypto Bridge? (Examples + Purpose for Blockchains)](https://www.youtube.com/watch?v=nT26cIz8HjI) 9 | * [What Is A Crypto Bridge? | Blockchain Bridge EXPLAINED For Beginners](https://www.youtube.com/watch?v=xS0PyYpt6bA) 10 | * [Crypto Education: Inter-Blockchain Bridges Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=YivPupDvhbA) 11 | * [Blockchain / Crosschain / DeFi Bridge Design](https://www.youtube.com/watch?v=zq4cbS3q-lY) 12 | * [Crypto Bridges: Why Are They Needed & How Do They Work?](https://www.youtube.com/watch?v=PBmzDUWmJgg) 13 | * [What is a Crypto Bridge? (Explained with Animations)](https://www.youtube.com/watch?v=T4yAxcluIho) 14 | * [How to Convert from Ethereum to Polygon using the Bridge](https://www.youtube.com/watch?v=GLK33hkwA68) 15 | * [Blockchain Bridges: Building Networks of Cryptonetworks](https://medium.com/1kxnetwork/blockchain-bridges-5db6afac44f8) 16 | 17 | ## Additional resources: 18 | * [What Is Cross-Chain DeFi?](https://chain.link/education-hub/cross-chain-defi) 19 | * [What Is an Atomic Swap?](https://chain.link/education-hub/atomic-swaps) 20 | * [What Is Multi-Chain?](https://chain.link/education-hub/multi-chain) 21 | * [What Are Cross-Chain NFTs?](https://chain.link/education-hub/cross-chain-nft) 22 | * [What Is Cross-Chain Gaming?](https://chain.link/education-hub/cross-chain-gaming) 23 | * [Understanding Cross-Chain Token Transfers](https://chain.link/education-hub/cross-chain-token-transfers) 24 | * [What Are Cross-Chain Swaps?](https://chain.link/education-hub/cross-chain-swap) 25 | * [What Are Cross-Chain Smart Contracts?](https://chain.link/education-hub/cross-chain-smart-contracts) 26 | * [What Is a Cross-Chain Bridge?](https://chain.link/education-hub/cross-chain-bridge) 27 | 28 | 29 | ## Questions: 30 | 31 | * What Is Blockchain Interoperability? 32 | * Why are there a lot of different blockchains? 33 | * What types of Blockchain Interoperability Solutions do you know? 34 | -------------------------------------------------------------------------------- /blockchain/l1.md: -------------------------------------------------------------------------------- 1 | # L1 blockchain solutions 2 | 3 | ## Resources: 4 | 5 | * [Crypto Education - Layer 1 Blockchain Solutions Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=p7I4iDiMwCc) 6 | * [What Is Layer 1 in Blockchain?](https://academy.binance.com/en/articles/what-is-layer-1-in-blockchain) 7 | * [A Beginner’s Guide to Segregated Witness (SegWit)](https://academy.binance.com/en/articles/a-beginners-guide-to-segretated-witness-segwit) 8 | 9 | ## Questions: 10 | 1. What is a first-level blockchain? 11 | -------------------------------------------------------------------------------- /blockchain/l2.md: -------------------------------------------------------------------------------- 1 | # Layer 2: Rollups, sidechains, lightning networks 2 | 3 | 4 | ## Resources: 5 | 6 | * [Layer 2 Scaling Solutions Explained (Rollups, Plasma, Sidechains, Channels ANIMATED)](https://www.youtube.com/watch?v=9pJjtEeq-N4) 7 | * [Ethereum Layer 2 Solutions Explained: Arbitrum, Optimism And More!](https://www.youtube.com/watch?v=rj7-sE6H-Hs) 8 | * [Every Ethereum Layer 2 Blockchain Compared - Arbitrum, Optimism, Etc...](https://www.youtube.com/watch?v=iTKSwf6je5g) 9 | * [Crypto Education - Layer 2 Blockchain Solutions Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=2Z_2ebio8Nc) 10 | * [Ethereum LAYER 2 SCALING Explained (Rollups, Plasma, Channels, Sidechains)](https://www.youtube.com/watch?v=BgCgauWVTs0&t=1s) 11 | * [What Are Altchains? Layer 0, Layer 1, And Layer 2 Explained](https://www.youtube.com/watch?v=LorgQfXpuK0) 12 | 13 | * Sidechains 14 | - [What are Sidechains in Crypto? Rootstock + Polygon Explained!](https://www.youtube.com/watch?v=cFRj2-jzm8E&t=3s) 15 | - [POLYGON (MATIC) - Ethereum's Internet Of Blockchains Explained - Layer 2](https://www.youtube.com/watch?v=IijtdpAtOt0) 16 | - [Polygon PoS Chain - A Commit Chain? DeFi Explained](https://www.youtube.com/watch?v=f7F67ZP9fsE) 17 | - [How to Add Polygon to MetaMask?](https://academy.binance.com/en/articles/how-to-add-polygon-to-metamask) 18 | * Rollups 19 | - [ROLLUPS - The Ultimate Ethereum Scaling Strategy? Arbitrum & Optimism Explained](https://www.youtube.com/watch?v=7pWxCklcNsU) 20 | - [What are Rollups in Crypto? ZKSnarks vs Optimistics Rollups Explained](https://www.youtube.com/watch?v=6_nOYsvXMsE) 21 | - [ZkSync](https://github.com/fullstack-development/blockchain-wiki-en/blob/main/blockchains/zksync/zksync.md) 22 | * Lightning networks 23 | - [Bitcoin's Lightning Network, Simply Explained!](https://www.youtube.com/watch?v=rrr_zPmEiME) 24 | - [What is the Lightning Network? (Animated) Free & Instant BTC Transaction](https://www.youtube.com/watch?v=SXT9iq__V8c) 25 | - [Lightning Network Explained](https://www.youtube.com/watch?v=9UIOeoBEjmw) 26 | - [A Beginner's Guide to Bitcoin's Lightning Network](https://academy.binance.com/en/articles/what-is-lightning-network) 27 | * Sharding 28 | - [What is Sharding in Crypto? Scaling Solution (Animated)](https://www.youtube.com/watch?v=SZpjvWMfgDA) 29 | - [Crypto Education - Sharding Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=OqmG67Y2QM4) 30 | 31 | ## Questions: 32 | 33 | * What is L2 and what is it for? 34 | * What is Sidechains? 35 | * What is Rollups? 36 | * What is Lightning networks? 37 | * What is Sharding? 38 | * Zk-rollups: what is the difference between Optimistic-rollups and Zk-rollups? 39 | * How are zk-proofs working? Why roll-ups use this technology? 40 | 41 | -------------------------------------------------------------------------------- /blockchain/mixers.md: -------------------------------------------------------------------------------- 1 | # Mixers 2 | 3 | ## Resources: 4 | 5 | * [Crypto mixers: What are they and how are they used?](https://www.welivesecurity.com/2022/06/20/crypto-mixers-what-are-they-how-are-they-used/) 6 | * [What is a Bitcoin Tumbler? (Legality + Examples)](https://www.youtube.com/watch?v=LxnC8eFCOFA) 7 | * [What is a Cryptocurrency Mixer?](https://www.youtube.com/watch?v=_RS-OuDYXBc) 8 | * [Tornado Cash - How it Works | DeFi + Zero Knowledge Proof](https://www.youtube.com/watch?v=z_cRicXX1jI) 9 | * [How does Tornado Cash work?](https://www.coincenter.org/education/advanced-topics/how-does-tornado-cash-work/) 10 | 11 | ## Additional resources: 12 | * [What are Crypto Mixers? Are They Legal?](https://www.youtube.com/watch?v=OlXjduCOXoM) 13 | * [Tornado Cash (Crypto dApp) added to US Sanctions List - Explanation](https://youtu.be/wwBnf-e1PY8) 14 | 15 | ## Questions: 16 | 17 | * Briefly explain the main purpose of mixers and how they work? 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /blockchain/oracles.md: -------------------------------------------------------------------------------- 1 | # Oracles 2 | 3 | 4 | ## Resources: 5 | 6 | * [What are Oracles in Crypto? (Animated)](https://www.youtube.com/watch?v=uycQ7ReSt_c&t=3s) 7 | * [Crypto Oracles Explained | How do Oracles Work? | Animation | Cryptomatics](https://www.youtube.com/watch?v=MNfXtMSgL0A) 8 | * [What is a blockchain oracle, and how does it work?](https://cointelegraph.com/blockchain-for-beginners/what-is-a-blockchain-oracle-and-how-does-it-work) — for beginners 9 | * [Oracles](https://github.com/fullstack-development/blockchain-wiki-en/tree/main/concepts/oracles) — An advanced and detailed breakdown with code examples from our developer Pavel Naydanov. 10 | 11 | ## Additional resources: 12 | * [What is Chainlink? LINK Explained with Animations (Price Prediction)](https://www.youtube.com/watch?v=GnXsJe2wZ_w) 13 | * [Pyth vs Chainlink: A Comprehensive Head-to-Head Comparison](https://support.bitrue.com/hc/en-001/articles/29295651876249-Pyth-vs-Chainlink-A-Comprehensive-Head-to-Head-Comparison) 14 | * [What Is a Blockchain Oracle? What Is the Oracle Problem? | Chainlink Engineering Tutorials](https://www.youtube.com/watch?v=ZJfkNzyO7-U) 15 | * [UMA Protocol](https://metalamp.io/magazine/article/uma-protocol-how-does-the-popular-optimistic-oracle-work) — How the oracle powering Polymarket works, with code examples. 16 | 17 | ## Questions: 18 | * What are Oracles? 19 | * How do you get data from an oracle or an API? What are the advantages and disadvantages of each method? 20 | * What types of oracles do you know? 21 | * How does Chainlink solve the oracle problem? Explain how it works. 22 | * What are inbound and outbound oracles? 23 | * Explain the key differences between Pyth Network and Chainlink. What tasks is each suited for? 24 | * What is the UMA protocol and how does it work? Why is it called optimistic? What motivates voters to provide honest information about events? 25 | -------------------------------------------------------------------------------- /blockchain/scale.md: -------------------------------------------------------------------------------- 1 | # Scallability 2 | 3 | 4 | ## Resources: 5 | 6 | * [Scaling | The Blockchain Trilemma](https://www.youtube.com/watch?v=w-NdQECb6sU) 7 | * [A Deep Dive Into Blockchain Scalability](https://crypto.com/university/blockchain-scalability) 8 | * [Blockchain Scalability: Execution, Storage, and Consensus](https://blog.chain.link/blockchain-scalability-approaches/) 9 | 10 | ## Questions: 11 | * Briefly describe the blockchain scalability trilemma. 12 | -------------------------------------------------------------------------------- /blockchain/security/51.md: -------------------------------------------------------------------------------- 1 | # 51 Percent Attack 2 | 3 | ## Resources: 4 | 5 | * [What is a 51% attack and what are the risks?](https://www.coinbase.com/learn/crypto-glossary/what-is-a-51-percent-attack-and-what-are-the-risks) 6 | * [Bitcoin 51% Attack EXPLAINED in 3 minutes](https://www.youtube.com/watch?v=8jOacOeGNSE) 7 | * [51% Attack: The Concept, Risks & Prevention](https://hacken.io/discover/51-percent-attack/) 8 | 9 | ## Questions: 10 | 11 | * What is the principle of 51 Percent Attack? -------------------------------------------------------------------------------- /blockchain/security/README.md: -------------------------------------------------------------------------------- 1 | # Blockchain Security 2 | 3 | * [Account safety](./account-safety.md) 4 | * [Blockchain security](./blockchain-security.md) 5 | - [51% Attack](./51.md) 6 | - [Sybil Attack](./sybil.md) 7 | - [Double spending Attack](./double-spending.md) 8 | - [MEV](./mev.md) 9 | * [Smart-contracts security](./smart-contracts-security.md) 10 | -------------------------------------------------------------------------------- /blockchain/security/account-safety.md: -------------------------------------------------------------------------------- 1 | # Account safety 2 | 3 | ## Resources: 4 | 5 | * [9 Tips For Securing Your Bitcoin and Crypto Wallets You Must Follow (Updated 2022)](https://cryptopotato.com/9-must-tips-securing-crypto-wallet) 6 | * [Crypto Scams to Avoid - 10 Tricks Scammers Use](https://youtu.be/dJA5L4ZUTtU) 7 | * [Crypto Scams: How to Identify & Prevent Crypto Fraud [2024]](https://www.blockpit.io/blog/crypto-scams) 8 | * [All You Should Know About Address Poisoning in Crypto](https://prestmit.io/blog/address-poisoning-in-crypto-all-you-should-know-about-it) 9 | 10 | ## Additional resources: 11 | * [Someone burned ~$90k on tx fee for a simple eth transfer.](https://twitter.com/TheDEFIac/status/1822757900349026478?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1822757900349026478%7Ctwgr%5E48e613efeb9de698f24ded27bcbc36f0f6f8e561%7Ctwcon%5Es1_c10&ref_url=https%3A%2F%2Fforklog.com%2Fnews%2Fpolzovatel-zaplatil-89-000-za-perevod-2200-v-ethereum) 12 | * [The Seal of Approval: Know What You’re Consenting To With Permissions and Approvals in MetaMask](https://consensys.net/blog/metamask/the-seal-of-approval-know-what-youre-consenting-to-with-permissions-and-approvals-in-metamask/) 13 | * [How Can a Simple Signature in Metamask Drain Your Wallet?](https://typefully.com/korpi87/iHknFMq) 14 | * [Why smart contract approval is dangerous](https://steveng.medium.com/why-smart-contract-approval-is-dangerous-7e3da85ca6d2) 15 | 16 | ## Questions: 17 | 18 | * What tips are there to keep your wallet safe? 19 | * What is phishing attack? How to avoid it? 20 | * Why you should check destination address and fee size of your transaction? 21 | * What is Ponzi schemes? 22 | * What is Pump and Dump Schemes? 23 | * What is approval in erc20 and why it may be dangerous? 24 | * What other scam types do you know? 25 | 26 | ## Tasks: 27 | * Find out service where you can revoke your approvals 28 | -------------------------------------------------------------------------------- /blockchain/security/blockchain-security.md: -------------------------------------------------------------------------------- 1 | # Blockchain security 2 | 3 | ## Resources: 4 | 5 | * [What Makes a Blockchain Secure?](https://www.binance.com/en/square/post/43079) 6 | 7 | ### Immutability 8 | 9 | * [Immutability](https://academy.binance.com/en/glossary/immutability) 10 | * [Blockchain Immutable Ledger](https://www.youtube.com/watch?v=Ya7SIo5-axk) 11 | 12 | ### Cryptography 13 | * [Cryptography](https://academy.binance.com/en/glossary/cryptography) 14 | * [What is Cryptography in Blockchain? How Does it Work?](https://blog.cfte.education/what-is-cryptography-in-blockchain/) 15 | 16 | ## Questions: 17 | 18 | * What is the role of consensus in blockchain security? 19 | * How can we explain the immutability of the blockchain? What does this mean in terms of security? 20 | * How does game theory relate to blockchain security? 21 | * Why is cryptography used in blockchain? What is the difference between encryption and hashing? 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /blockchain/security/double-spending.md: -------------------------------------------------------------------------------- 1 | # Double Spending Attack 2 | 3 | ## Resources: 4 | 5 | * [Double Spending Explained](https://academy.binance.com/en/articles/double-spending-explained) 6 | * [What is a Double Spending Attack?](https://www.youtube.com/watch?v=MXb1BVGGeX8) 7 | * [Race attack](https://www.bitget.com/glossary/race-attack) 8 | * [What is Race Attack? | WazirX Crypto Guide |](https://www.youtube.com/watch?v=hqisfMM20b0) 9 | 10 | ## Questions: 11 | 12 | * What is the principle of a double spend attack? -------------------------------------------------------------------------------- /blockchain/security/mev.md: -------------------------------------------------------------------------------- 1 | # MEV (Miner Extractable Value / Maximum Extractable Value) 2 | 3 | 4 | ## Resources: 5 | 6 | * [Decoding MEV: Past, Present, Future](https://www.youtube.com/watch?v=F9IuBZGseFQ) 7 | * [What is MEV? (MEV on Ethereum Explained)](https://www.youtube.com/watch?v=fBR5Rjwk5C4) 8 | * [What is MEV?](https://www.youtube.com/watch?v=eMuwGmOYjTE) 9 | * [What is MEV (Miner Extractable Value) in crypto?](https://blog.pantherprotocol.io/miner-extractable-value-the-good-the-bad-the-ugly/) 10 | * [Understanding Different MEV Attacks: Frontrunning, Backrunning and other attacks](https://bitquery.io/blog/different-mev-attacks) 11 | * [What is miner extractable value (MEV) and how does it work?](https://cointelegraph.com/learn/what-is-mev-ethereums-invisible-tax) 12 | 13 | 14 | ## Additional resources: 15 | 16 | * [ETH mempool](https://etherscan.io/txsPending) 17 | * [MEV bot ‘jaredfromsubway’ Spent 210 ETH In Gas Fees](https://www.cryptotimes.io/2024/06/06/mev-bot-jaredfromsubway-spent-210-eth-in-gas-fees/) 18 | 19 | ## Questions: 20 | 21 | * What is MEV? 22 | * What is mempool? 23 | * What is gas golfing? 24 | * What is front running, back running and sandwich attack? 25 | * What are the good and bad sides of MEV? 26 | -------------------------------------------------------------------------------- /blockchain/security/smart-contracts-security.md: -------------------------------------------------------------------------------- 1 | # Smart-contracts security 2 | 3 | ## Resources: 4 | 5 | * [Top 28 DeFi attack vectors](https://medium.com/@genisis0x/top-28-defi-attack-vectors-eba0ce89e19a) 6 | 7 | * [How to identify scam tokens](https://ethereum.org/en/guides/how-to-id-scam-tokens/) 8 | * [8 Ways to Check if a Token is a Scam at a Glance](https://www.binance.com/en/square/post/2024-05-18-8-8266602015474) 9 | * [WHAT IS A GOVERNANCE ATTACK?](https://www.halborn.com/blog/post/what-is-a-governance-attack) 10 | * [Reentrancy attacks in smart contracts, explained](https://cointelegraph.com/explained/reentrancy-attacks-in-smart-contracts-explained) 11 | 12 | * [How to perform smart contract testing](https://cointelegraph.com/news/smart-contract-testing-for-dummies) 13 | 14 | * [A Beginner's Guide to Smart Contract Audits: What You Need to Know](https://dev.to/vaibhavaher219/a-beginners-guide-to-smart-contract-audits-what-you-need-to-know-4pab) 15 | * [What is smart contract security audit?](https://www.binance.com/en/square/post/43293) 16 | * [What Is a Smart Contract Audit?](https://www.coindesk.com/learn/what-is-a-smart-contract-audit/) 17 | 18 | ## Questions: 19 | 20 | * Why do you think you need to know about attack vectors? 21 | * How to recognize a scam token? 22 | * What are the risks of hacking the DAO? 23 | * What is reentrancy attack? 24 | * Why is it important to test smart contracts? what is the difference between unit and integration tests? 25 | * Why is auditing important? Can it be trusted completely? 26 | -------------------------------------------------------------------------------- /blockchain/security/sybil.md: -------------------------------------------------------------------------------- 1 | # Sybil Attack 2 | 3 | ## Resources: 4 | 5 | * [What Is a Sybil Attack?](https://blog.chain.link/sybil-attack/) 6 | * [What Is a Sybil Attack in Crypto?](https://www.ledger.com/academy/topics/security/what-is-a-sybil-attack-in-crypto) 7 | * [The Sybil and 51% attacks](https://medium.com/coinmonks/the-sybil-and-51-attacks-e220e4a0399d) 8 | 9 | ## Questions: 10 | 11 | * What is the principle of the sybil attack? 12 | 13 | 14 | -------------------------------------------------------------------------------- /blockchain/tools/README.md: -------------------------------------------------------------------------------- 1 | # Development Tools 2 | 3 | * [Intro](./tools.md) 4 | * [Node Providers](./providers.md) 5 | * [IPFS](./ipfs.md) 6 | * [The graph](./graph.md) 7 | -------------------------------------------------------------------------------- /blockchain/tools/graph.md: -------------------------------------------------------------------------------- 1 | # The graph 2 | 3 | 4 | ## Resources: 5 | * [The GRAPH - Google Of Blockchains? GRT Token Explained](https://finematics.com/the-graph-explained/) 6 | * [Why THE GRAPH is The Google of Blockchains](https://www.youtube.com/watch?v=mPfSWf_q77Y) 7 | * [About The Graph](https://thegraph.com/docs/en/about/) 8 | 9 | ## Additional resources: 10 | * [What is QraphQl](https://www.youtube.com/watch?v=eIQh02xuVw4) 11 | * [THE GRAPH HUB](https://www.grtdatahub.com/) 12 | * [Uniswap subgraph example](https://thegraph.com/hosted-service/subgraph/uniswap/uniswap-v3) 13 | 14 | ## Questions: 15 | * What is the purpose of The graph? 16 | * How does it work? 17 | * What roles exist in The graph? 18 | * What is the Hosted service in The graph? 19 | * What skills should developers have to write subgraph? 20 | -------------------------------------------------------------------------------- /blockchain/tools/ipfs.md: -------------------------------------------------------------------------------- 1 | # IPFS 2 | 3 | ## Resources: 4 | * [IPFS: Interplanetary file storage!](https://www.youtube.com/watch?v=5Uj6uR3fp-U) 5 | 6 | ## Additional resources: 7 | * [Scaling Your NFT Project: A Beginner’s Guide to IPFS By Pinata](https://www.bueno.art/blog/pinata-ipfs-guide) 8 | * [Storing NFTs on IPFS](https://blog.ipfs.tech/2021-04-05-storing-nfts-on-ipfs/) 9 | 10 | ## Questions: 11 | 12 | * What is IPFS? What is the purpose of this service? 13 | * Where is data stored? 14 | * How is data devided and stored in IPFS? 15 | * What are the use cases of IPFS? 16 | * Does stored data have any limitations or problems? 17 | * What is Pinata? 18 | * What is Filecoin? 19 | * What is submarining? 20 | -------------------------------------------------------------------------------- /blockchain/tools/providers.md: -------------------------------------------------------------------------------- 1 | # Blockchain Node Providers in Web3 2 | 3 | ## Resources: 4 | 5 | * [What is Infura](https://medium.com/what-is-infura/what-is-infura-59dbdd778455) 6 | * [The 12 Best Blockchain Node Providers in Web3 (2023)](https://www.alchemy.com/overviews/blockchain-node-providers) 7 | 8 | ## Additional resources: 9 | 10 | * [infura.io](https://infura.io/) 11 | 12 | ## Questions: 13 | 14 | * What are node providers for? 15 | * What are the advantages or disadvantages of using providers? 16 | * What are the most popular node providers? 17 | -------------------------------------------------------------------------------- /blockchain/tools/tools.md: -------------------------------------------------------------------------------- 1 | # Development tools 2 | 3 | ## Resources: 4 | * [Web3 Developer ToolBox - List of Software, Packages, Tools...](https://youtu.be/1M0n4mGHmpo) 5 | * [The Architecture of a Web 3.0 application](https://www.preethikasireddy.com/post/the-architecture-of-a-web-3-0-application) 6 | -------------------------------------------------------------------------------- /blockchain/wallets/README.md: -------------------------------------------------------------------------------- 1 | # Wallets 2 | 3 | * [Crypto-wallets](wallets.md) 4 | * [Multisig](multisig.md) 5 | * [MPC](mpc.md) 6 | * [Third-Party Custody](custody.md) -------------------------------------------------------------------------------- /blockchain/wallets/custody.md: -------------------------------------------------------------------------------- 1 | # Third-Party Custody 2 | 3 | ## Resources: 4 | 5 | * [Critical Things About Crypto Custody](https://medium.com/cryptodigest/critical-things-about-crypto-custody-79782854ed67) - very old but still actual 6 | * [What Are Cryptocurrency Custody Solutions?](https://www.investopedia.com/news/what-are-cryptocurrency-custody-solutions/) 7 | * [Security Considerations in Digital Asset Custody](https://medium.com/@keywa_io/security-considerations-in-digital-asset-custody-a06e641f59ec) 8 | 9 | ## Additional resources: 10 | * [Centralized and Decentralized Custody Solutions Overview](https://medium.com/@MindWorksCap/centralized-and-decentralized-custody-solution-overview-d319dd42d3e1) 11 | * [Global Business Week: Crypto Custody Providers Compared](https://medium.com/technicity/global-business-week-crypto-custody-providers-compared-e1b4cf0b6298) - Main players in crypto custody service 12 | * [Cryptocurrency Exchange Hacks](https://www.hedgewithcrypto.com/cryptocurrency-exchange-hacks/) - Major Exchange Hacks 13 | 14 | ## Questions: 15 | 16 | * What is custody provider? 17 | * What types of business are clients of Third-Party Custody providers? 18 | * What are the most popular custody providers? 19 | * What are the main purposes of using third party custody provider for business? 20 | * Are there any regulatory requirements to store keys with third-party providers? 21 | * What conclusions can be drawn from the [incident](https://www.coindesk.com/business/2023/02/01/crypto-custody-firm-copper-alerted-to-security-incident-over-christmas) with the Copper custody provider? 22 | * What is the main difference between custody and MPC vaults? 23 | -------------------------------------------------------------------------------- /blockchain/wallets/mpc.md: -------------------------------------------------------------------------------- 1 | # MPC 2 | 3 | ## Resources: 4 | 5 | * [MPC vs. Multi-sig: Why Is MPC So Much Better](https://medium.com/@hamilton_21385/mpc-vs-multi-sig-why-is-mpc-so-much-better-1f74fe7937a6) 6 | 7 | ## Additional resources: 8 | 9 | * [Seedless Self-Custody: On MPC and Smart Contract Wallets](https://medium.com/1kxnetwork/wallets-91c7c3457578) 10 | 11 | ## Questions: 12 | 13 | * What is MPC? 14 | * Why is MPC better than multisig? 15 | * What MPC providers are most popular in web3? 16 | -------------------------------------------------------------------------------- /blockchain/wallets/multisig.md: -------------------------------------------------------------------------------- 1 | # Multisig & Gnosis Safe 2 | 3 | 4 | ## Resources: 5 | 6 | * [Multisignature Wallets Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=E47Ih7DArKs) 7 | * [How to Create a MultiSig Wallet Using Gnosis SAFE](https://www.youtube.com/watch?v=JoFYldw6hVE) 8 | * [What Is a Multisig Wallet?](https://academy.binance.com/en/articles/what-is-a-multisig-wallet) 9 | 10 | ## Questions: 11 | 12 | * What is multisig? 13 | * What benefits does multisig have? 14 | * Does using of multisig have any risks? 15 | * What is Gnosis Safe? 16 | * Name some cases when you can get advantages of using multisig? 17 | 18 | ## Tasks: 19 | 20 | * Create multisig wallet with 2/3 option in any testnet and try to execute any transaction 21 | -------------------------------------------------------------------------------- /blockchain/wallets/wallets.md: -------------------------------------------------------------------------------- 1 | # Crypto wallets 2 | 3 | ## Resources: 4 | 5 | * [What is a Cryptocurrency Wallet? (3 Types + Key Examples)](https://www.youtube.com/watch?v=SQyg9pyJ1Ac&t=3s) 6 | * [Crypto Wallets Explained (Beginners Guide 2024)](https://www.youtube.com/watch?v=4PvA7oYDXu8) - A video guide on interacting with the blockchain through a wallet: transactions, hot and cold wallets, bridges. Everything, all at once. 7 | * [Ultimate Guide To Crypto Wallets](https://medium.com/@krayon_digital/ultimate-guide-to-crypto-wallets-in-2023-83b27c930b43) — A similar guide for those who prefer text. 8 | * [How To Build a Crypto Wallet ](https://chain.link/tutorials/how-to-build-a-crypto-wallet) - If you’re a developer and you’re curious about how wallet software works, you’ll enjoy this article. 9 | 10 | ## Additional resources: 11 | * [MetaMask Tutorial (How to Use MetaMask)](https://www.youtube.com/watch?v=tw-tQD0jztE) - A guide on how to use the most popular wallet among developers. It will teach you how to add custom blockchains and tokens, and how to use it with dApps. 12 | * [How to Use WalletConnect](https://academy.binance.com/en/articles/how-to-use-walletconnect) 13 | * [How to Cancel or Replace a Pending Ethereum Transaction](https://academy.binance.com/en/articles/how-to-cancel-or-replace-a-pending-ethereum-transaction) 14 | * [Buy testnet coins for real crypto](https://www.gas.zip/) 15 | 16 | ## Questions: 17 | 18 | * What is a crypto wallet? 19 | * What does "Not Your Keys, Not Your Coins." mean? 20 | * What are Mnemonic Phrase? What is the difference between private key and seed phrase? 21 | * What is a cold crypto wallet? 22 | * What is the difference between custodial and non-custodial wallets? 23 | * Which kind of wallets can require the KYC? 24 | 25 | ## Tasks: 26 | 27 | * Download a crypto wallet. We recommend starting with Metamask. 28 | * Add the BNB Smart Chain test network to your wallet. You can select a reliable RPC on [ChainList]([url](https://chainlist.org/chain/97)). 29 | * Get test tokens from this [faucet](https://chainlist.org/chain/97). I recommend getting different tokens, and make sure to get some BNB as well. 30 | * Make a swap on [PancakeSwap](https://pancakeswap.finance/?chain=bscTestnet). Exchange one coin for another. 31 | * Provide liquidity to one of the [pools](https://pancakeswap.finance/liquidity/pools). 32 | -------------------------------------------------------------------------------- /blockchain/zero.md: -------------------------------------------------------------------------------- 1 | # Zero knowledge proofs 2 | 3 | ## Resources: 4 | 5 | * [Zero Knowledge Proof: Explain it Like I’m 5 (Halloween Edition)](https://hackernoon.com/eli5-zero-knowledge-proof-78a276db9eff) 6 | * [Zero Knowledge Proof - ZKP](https://www.youtube.com/watch?v=OcmvMs4AMbM) 7 | 8 | ## Questions: 9 | 10 | * What is the Zero Knowledge Proof? 11 | -------------------------------------------------------------------------------- /blockchains/README.md: -------------------------------------------------------------------------------- 1 | # Blockchains 2 | 3 | * [Bitcoin](./bitcoin/README.md) 4 | -------------------------------------------------------------------------------- /blockchains/bitcoin/README.md: -------------------------------------------------------------------------------- 1 | # Bitcoin 2 | 3 | * [Ecosystem research](basics.md) 4 | * [Ordinals](ordinals.md) -------------------------------------------------------------------------------- /blockchains/bitcoin/basics.md: -------------------------------------------------------------------------------- 1 | # Bitcoin state -------------------------------------------------------------------------------- /blockchains/bitcoin/ordinals.md: -------------------------------------------------------------------------------- 1 | # Bitcoin Ordinals 2 | 3 | ## Resources: 4 | 5 | * [What are Bitcoin ordinals?](https://cointelegraph.com/explained/what-are-bitcoin-ordinals) 6 | 7 | ## Questions: 8 | 9 | * What are Bitcoin ordinals? 10 | -------------------------------------------------------------------------------- /defi/README.md: -------------------------------------------------------------------------------- 1 | # DEFI 2 | 3 | * [Intro](./defi.md) 4 | * [Economics](./economics.md) 5 | * [Fungible Tokens](./tokens/README.md) 6 | * [NFT](./nft/README.md) 7 | * [Trading & Exchanges](./trading/README.md) 8 | * [Stablecoins](./stablecoins/stablecoins.md) 9 | * [Lending & Borrowing](./lending/README.md) 10 | * [Vaults](./vaults/README.md) 11 | * [DAO](./dao/README.md) 12 | * [Real-world Assets tokenization](./tokenization/README.md) 13 | -------------------------------------------------------------------------------- /defi/dao/dao.md: -------------------------------------------------------------------------------- 1 | # DAO 2 | 3 | ## Resources: 4 | 5 | * [What is a DAO in Crypto? (Decentralized Autonomous Organization)](https://www.youtube.com/watch?v=KHm0uUPqmVE) 6 | * [A beginner’s guide to DAOs](https://linda.mirror.xyz/Vh8K4leCGEO06_qSGx-vS5lvgUqhqkCz9ut81WwCP2o) 7 | * [Crypto Education - DAO Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=0uDuUXyFFoo) 8 | * [DAOs, DACs, DAs and More: An Incomplete Terminology Guide](https://blog.ethereum.org/2014/05/06/daos-dacs-das-and-more-an-incomplete-terminology-guide) 9 | * [What is a DAO and What is it For?](https://daohaus.substack.com/p/-what-is-a-dao-and-what-is-it-for) 10 | * [Decentralized Autonomous Organization (DAO): Definition, Purpose, and Example](https://www.investopedia.com/tech/what-dao/) 11 | * [Aragon. Level Up Your Knowledge of DAOs](https://aragon.org/dao) 12 | * [What is a decentralized autonomous organization, and how does a DAO work?](https://cointelegraph.com/daos-for-beginners/what-is-a-dao) 13 | * [What Is A DAO And How Do They Work?](https://consensys.net/blog/blockchain-explained/what-is-a-dao-and-how-do-they-work/) 14 | * [What Are Governance Tokens?](https://academy.binance.com/en/articles/what-are-governance-tokens) 15 | * [What are Governance Tokens?](https://www.youtube.com/watch?v=8Sh8EOyWga8) 16 | * [Governance Tokens Explained in One Minute](https://www.youtube.com/watch?v=XlmyoWSVl9s) 17 | * [What are Governance Tokens? Governance Tokens Explained (with Animations)](https://www.youtube.com/watch?v=rIgpEaLLINI&t=163s) 18 | 19 | 20 | ## Additional resources: 21 | * [Holographic consensus—part 1](https://medium.com/daostack/holographic-consensus-part-1-116a73ba1e1c) 22 | * [DAOs are not corporations: where decentralization in autonomous organizations matters](https://vitalik.eth.limo/general/2022/09/20/daos.html) 23 | * [House of DAOs](https://wiki.metagame.wtf/great-houses/house-of-daos) 24 | * [What is cryptocurrency Aragon (ANT) and how does it work?](https://kriptomat.io/cryptocurrencies/aragon/what-is-aragon/) 25 | * [What is OlympusDAO? - OHM Explained with Animations](https://www.youtube.com/watch?v=o699i_l_qy8) 26 | * [Aragon blog](https://blog.aragon.org/) 27 | - [How to Join a DAO](https://blog.aragon.org/how-to-join-a-dao/) 28 | - [What Is It Like to Join a DAO?](https://blog.aragon.org/what-is-it-like-to-join-a-dao/) 29 | - [How to Start a Research Organization (from your Bedroom) | VitaDAO](https://blog.aragon.org/how-to-start-a-research-organization/) 30 | - [How to Start a Charity (from your Bedroom) | Elimu](https://blog.aragon.org/how-to-start-a-charity-from-your-bedroom/) 31 | - [How to Start a Hedge Fund (from your Bedroom) | Surf Finance](https://blog.aragon.org/how-to-start-a-hedge-fund-from-your-bedroom/) 32 | - [15 Ways the World is being Transformed by DAOs](https://blog.aragon.org/15-ways-the-world-is-being-transformed-by-daos/) 33 | - [10 Industries Being Disrupted by DAOs](https://blog.aragon.org/10-industries-being-disrupted-by-daos/) 34 | - [5 Ways to Work for a DAO (non-Tech)](https://blog.aragon.org/5-ways-to-work-for-a-dao-non-tech/) 35 | - [Introducing Weighted Voting](https://blog.aragon.org/introducing-weighted-voting/) 36 | - [What is Composability?](https://blog.aragon.org/what-is-composability/) 37 | - [Incentive Design & Tooling for DAOs](https://blog.aragon.org/incentive-design-tooling-for-daos/) 38 | - [DAOs as Purpose-Led Organizations](https://blog.aragon.org/daos-as-purpose-led-organizations/) 39 | - [Choice Architecture & DAOs](https://blog.aragon.org/choice-architecture-and-daos-part-1/) 40 | - [A Taxonomy of Voting Methods](https://blog.aragon.org/a-taxonomy-of-voting-methods/) 41 | - [L2 Governance Models](https://blog.aragon.org/l2-governance-voting-models/) 42 | * [Could a DAO Build the Next Great City? | Scott Fitsimones | TED](https://www.youtube.com/watch?v=zTStDvUtQWc) 43 | * [How to Create a DAO on Polygon with Aragon](https://www.youtube.com/watch?v=NbeMilheqy0) 44 | * [Blockchain Governance: Programming Our Future](https://medium.com/@FEhrsam/blockchain-governance-programming-our-future-c3bfe30f2d74) 45 | * [Governance Minimization](https://fehrsam.xyz/blog/governance-minimization) 46 | * [A new type of DAO — For NFTs, by NFTs](https://mintable.medium.com/a-new-type-of-dao-for-nfts-by-nfts-9859253dd823) 47 | * [deepdao.io](https://deepdao.io/organizations) 48 | 49 | ## Questions: 50 | 51 | * Do DAOs truly offer decentralization? 52 | * What are the distinct models for membership in DAOs? 53 | * What is the basic objective for introducing DAOs? 54 | 55 | 56 | -------------------------------------------------------------------------------- /defi/defi.md: -------------------------------------------------------------------------------- 1 | # DEFI 2 | 3 | ## Resources: 4 | 5 | * 1 & 2 chapters from 'How to DEFI' book by Coingecko 6 | * [DEFI - The Future Of Finance Explained](https://finematics.com/defi-the-future-of-finance/) 7 | * [What are the major challenges hindering Decentralized Finance (DeFi) adoption in 2022?](https://bitcoinist.com/what-are-the-major-challenges-hindering-decentralized-finance-defi-adoption-in-2022/) 8 | * [Everything About DeFi Development One Should Know In 2023!](https://blog.cryptostars.is/everything-about-defi-development-one-should-know-in-2023-55f7a89547b4) 9 | 10 | ## Additional resources: 11 | * [Why TVL matters in DeFi](https://blog.thestandard.io/why-total-value-locked-tvl-matters-in-defi-d6937bfc6b6d) 12 | * [DEFI - From Inception To 2021 And Beyond (History Of Decentralized Finance Explained)](https://finematics.com/history-of-defi-explained/) 13 | 14 | 15 | ## Questions: 16 | 17 | * What is DEFI? 18 | * What are the problems with traditional finanсial system? 19 | * What is the goal of DEFI? 20 | * What challenges is DEFI facing? 21 | * What categories of products in DEFI do you know? 22 | * What is TVL? Why is it an important metric for DEFI? 23 | 24 | ## Tasks: 25 | 26 | * Find at [defillama.com](https://defillama.com/) current TVL of Uniswap. 27 | * Compare TVL of whole DEFI in 2020, 2021, 2022 28 | -------------------------------------------------------------------------------- /defi/economics.md: -------------------------------------------------------------------------------- 1 | # Economics 2 | 3 | 4 | ## Resources: 5 | 6 | * [How The Economic Machine Works by Ray Dalio](https://www.youtube.com/watch?v=PHe0bXAIuk0) 7 | * [How Does the Economy Work?](https://academy.binance.com/en/articles/how-does-the-economy-work) 8 | * [How does raising interest rates control inflation?](https://www.youtube.com/watch?v=R8VBRCs2jTU) 9 | 10 | ## Questions: 11 | 12 | * Why does credit matter for any financial system? 13 | * What is inflation and deflation? How do they affect the market? 14 | * What is an interest rate? 15 | * What is a monetary policy? 16 | -------------------------------------------------------------------------------- /defi/insurance/README.md: -------------------------------------------------------------------------------- 1 | # Insurance 2 | 3 | - Basics 4 | - Nexus Mutual -------------------------------------------------------------------------------- /defi/insurance/insurance.md: -------------------------------------------------------------------------------- 1 | # Insurance 2 | 3 | ## Resources: 4 | 5 | * [Decentralized Insurance: These 4 Companies are Raising the Bar in 2021](https://hackernoon.com/decentralized-insurance-these-4-companies-are-raising-the-bar-in-2021-oxk35eo) 6 | * [Nexus Mutual](https://www.youtube.com/watch?v=8ljNoV2IhGE) 7 | * [Nexus Mutual whitepaper](https://nexusmutual.io/assets/docs/nmx_white_paperv2_3.pdf) 8 | * [Nexus Mutual Docs](https://nexusmutual.gitbook.io/docs/users/understanding-nexus-mutual) 9 | * [Nexus Mutual Review: Buy & Stake NXM (DeFi Insurance)](https://www.youtube.com/watch?v=sl0P3-lI_AI) 10 | * [Nexus Mutual | Understanding the Concept of Decentralised Insurance | Interaxis.io](https://www.youtube.com/watch?v=8ljNoV2IhGE) 11 | * [How to Buy DeFi Insurance and the NXM Token with Nexus Mutual](https://www.youtube.com/watch?v=rnzInsKPLR0) 12 | * Unslashed Finance 13 | * [unslashed.finance](https://unslashed.finance/) 14 | * [Unslashed Finance - DeFi Insurance Explained | Securing Your Crypto](https://www.youtube.com/watch?v=eHrN46pQGrk) 15 | 16 | ## Additional resources: 17 | * [TOKEN-BASED INSURANCE SOLUTIONS ON BLOCKCHAIN](https://arxiv.org/pdf/2109.07902.pdf) 18 | * [What is crypto insurance and who are its top players?](https://www.techinasia.com/crypto-insurance-top-players) 19 | * CHAPTER 8: DECENTRALIZED INSURANCE in How to DEFI. Advanced 20 | 21 | ## Questions: 22 | 23 | * What are the popular blockchain insurance protocols? 24 | * What insurance risks do insurance protocols cover? 25 | * How do insurance protocols work? How are they structured? 26 | * What is kleros, and what is its role in the system Unslashed Finance? 27 | -------------------------------------------------------------------------------- /defi/lending/README.md: -------------------------------------------------------------------------------- 1 | # Lending protocols 2 | 3 | - [Lending protocols basics](lending.md) 4 | - [Aave](aave.md) 5 | - [Compound](compound.md) 6 | - [TrueFi](truefi.md) -------------------------------------------------------------------------------- /defi/lending/aave.md: -------------------------------------------------------------------------------- 1 | # Aave 2 | 3 | ## Resources: 4 | 5 | - [What is AAVE? (Animated) Crypto Borrowing and Lending Explained](https://www.youtube.com/watch?v=dTCwssZ116A) 6 | - [What is Aave Explained? (Aave DeFi Lending Tutorial)](https://www.youtube.com/watch?v=PYSYOn-wfow) 7 | - [Aave 👻 Defi Tutorial: How to Earn Interest & Borrow Against your Crypto](https://www.youtube.com/watch?v=qq-Z0-b4sUw) -------------------------------------------------------------------------------- /defi/lending/compound.md: -------------------------------------------------------------------------------- 1 | # Compound 2 | 3 | ## Resources: 4 | 5 | - [Compound whitepaper](https://compound.finance/documents/Compound.Whitepaper.pdf) 6 | - [Compound Finance DeFi Tutorial: How to Earn Interest on your Crypto & $COMP Tokens](https://www.youtube.com/watch?v=VYp9oiEI7GU) -------------------------------------------------------------------------------- /defi/lending/lending.md: -------------------------------------------------------------------------------- 1 | # Lending & Borrowing 2 | 3 | 4 | ## Resources: 5 | 6 | * [What Is Crypto Lending and How Does It Work?](https://academy.binance.com/en/articles/what-is-crypto-lending-and-how-does-it-work) 7 | * [Lending And Borrowing In DEFI Explained - Aave, Compound](https://www.youtube.com/watch?v=aTp9er6S73M) 8 | * [Crypto Education - Lending & Borrowing | Animation | Cryptomatics](https://www.youtube.com/watch?v=SrArEE6p3zM) 9 | * [Interest Rates Explained](https://academy.binance.com/ru/articles/interest-rates-explained) 10 | * [APR vs. APY: What’s the difference?](https://cointelegraph.com/explained/apr-vs-apy-whats-the-difference) 11 | 12 | 13 | ## Questions: 14 | -------------------------------------------------------------------------------- /defi/lending/truefi.md: -------------------------------------------------------------------------------- 1 | # TrueFi 2 | 3 | ## Resources: 4 | - [Introducing TrueFi, the DeFi Protocol for Uncollateralized Lending](https://blog.trusttoken.com/introducing-truefi-the-defi-protocol-for-uncollateralized-lending-9bfd6594a48) 5 | - [TrueFi EXPLAINED - UNCOLLATERALIZED DeFi/CeFi Lending!](https://www.youtube.com/watch?v=xjC99q_UaZ4) -------------------------------------------------------------------------------- /defi/nft/README.md: -------------------------------------------------------------------------------- 1 | # NFT 2 | 3 | - [NFT basics](./nft.md) 4 | - [Marketplace](./marketplace.md) 5 | - [Play to earn](./p2e/README.md) 6 | - [Metaverse](./metaverse/README.md) 7 | - [F-NFT](./f-nft.md) 8 | - [Soulbound token](./soulbound.md) 9 | -------------------------------------------------------------------------------- /defi/nft/f-nft.md: -------------------------------------------------------------------------------- 1 | # F-NFT 2 | 3 | ## Resources: 4 | * [Fractional NFTs Explained — Benefits and Risks](https://10clouds.com/blog/defi/fractional-nfts-explained-benefits-and-risks/) 5 | * [What is NFT Fractionalization?](https://academy.synfutures.com/what-is-nft-fractionalization/) 6 | 7 | ## Additional resources: 8 | * [All You Need to Know About the Real Estate Token Market](https://hackernoon.com/all-you-need-to-know-about-the-real-estate-token-market) 9 | 10 | ## Questions: 11 | 12 | * What is Fractional NFT? 13 | * What are the benefits of NFT fractalization? 14 | * What are the risks of NFT fractalization? 15 | * What do you know about use cases of NFT fractalization? 16 | -------------------------------------------------------------------------------- /defi/nft/marketplace.md: -------------------------------------------------------------------------------- 1 | # NFT Marketplace 2 | 3 | ## Resources: 4 | 5 | * [Complete Guide On Types of NFT Marketplace](https://sdlccorp.com/post/complete-guide-on-types-of-nft-marketplace/) 6 | * [The Ultimate Guide to NFT Royalties and NFT Marketplaces in 2023](https://coinmarketcap.com/alexandria/article/the-ultimate-guide-to-nft-royalties-and-nft-marketplaces) 7 | 8 | ## Additional resources: 9 | * [Dutch Auction: Understanding How It’s Used in Public Offerings](https://www.investopedia.com/terms/d/dutchauction.asp) 10 | * [What is lazy minting NFTs?](https://www.alchemy.com/overviews/lazy-minting) 11 | * [Top nft marketplaces](https://defillama.com/nfts/marketplaces) 12 | 13 | ## Questions: 14 | 15 | * What is an NFT marketplace? 16 | * What types of marketplaces do you know? 17 | * What are the biggest marketplaces that you know? 18 | * What happens with royalties on marketplaces? 19 | * What is Dutch Auction? How does it work? 20 | * What is lazy minting? 21 | -------------------------------------------------------------------------------- /defi/nft/metaverse/README.md: -------------------------------------------------------------------------------- 1 | # Metaverse 2 | 3 | - [Metaverse basics](./metaverse.md) 4 | - [Sandbox](./sandbox.md) 5 | - [Decentraland](./decentraland.md) 6 | -------------------------------------------------------------------------------- /defi/nft/metaverse/decentraland.md: -------------------------------------------------------------------------------- 1 | # Decentraland 2 | 3 | ## Resources: 4 | 5 | * [What is Decentraland (MANA)?](https://www.youtube.com/watch?v=qGgYEwJrw0w) 6 | * [Decentraland Guide and Review: How to Play the Blockchain Game?](https://cryptopotato.com/decentraland-guide-and-review/) 7 | * [Decentraland Guide; Overview, Components, Things To Do & More!](https://metamandrill.com/decentraland/) 8 | 9 | ## Additional resources: 10 | 11 | * [Opensea Decentraland collection](https://opensea.io/collection/decentraland) 12 | * [Sandbox vs. Decentraland [2023]: Metaverses Come in Different Sizes](https://financebuzz.com/sandbox-vs-decentraland) -------------------------------------------------------------------------------- /defi/nft/metaverse/metaverse.md: -------------------------------------------------------------------------------- 1 | # Metaverse 2 | 3 | ## Resources: 4 | * [Explaining the Metaverse: Everything You Need to Know About Future of the Internet](https://www.youtube.com/watch?v=7DEVfUk2zCk) 5 | * [What Is the Metaverse? Meaning, Features, and Importance](https://www.spiceworks.com/tech/artificial-intelligence/articles/what-is-metaverse/) 6 | * [Metaverse Explained in 6 Minutes | What Is Metaverse and How Does It Work? | Simplilearn](https://www.youtube.com/watch?v=6dYVFSZcXb0) 7 | * [Metaverse Guide; Understanding The Basics Will Open Up a New World](https://metamandrill.com/metaverse/) 8 | 9 | 10 | ## Additional resources: 11 | * [The Metaverse and How We'll Build It Together -- Connect 2021](https://www.youtube.com/watch?v=Uvufun6xer8) 12 | * [Metaverse and NFTs for Ecommerce: Driving Sales With Examples](https://hackernoon.com/metaverse-and-nfts-for-ecommerce-driving-sales-with-examples) 13 | 14 | ## Questions: 15 | * What is metaverse? 16 | * What are the 7 layers of metaverse? 17 | * What are the key features of metaverses? 18 | * What metaverse platforms do you know? 19 | * How are metaverses monetized? 20 | 21 | 22 | -------------------------------------------------------------------------------- /defi/nft/metaverse/sandbox.md: -------------------------------------------------------------------------------- 1 | # Sandbox 2 | 3 | ## Resources: 4 | 5 | * [How to Play The Sandbox - Complete Beginners Guide! (Sandbox Tutorial) | NFT Crypto Game](https://www.youtube.com/watch?v=jKS40dguyuo) 6 | * [The Sandbox (SAND)](https://research.binance.com/en/projects/the-sandbox) 7 | * [Sandbox (SAND): A beginner's guide to the trending metaverse platform](https://cointelegraph.com/learn/sandbox-sand-metaverse-platform) 8 | 9 | ## Additional resources: 10 | * [Opensea sandbox collection](https://opensea.io/collection/sandbox) 11 | * [Why People Are Buying Digital Lands in The Sandbox and Why You Should Too](https://news.bitcoin.com/why-people-are-buying-digital-lands-in-the-sandbox-and-why-you-should-too/) -------------------------------------------------------------------------------- /defi/nft/nft.md: -------------------------------------------------------------------------------- 1 | # Non-fungible tokens 2 | 3 | ## Resources: 4 | 5 | * [The Non-Fungible Token Bible: Everything you need to know about NFTs](https://opensea.io/blog/guides/non-fungible-tokens/) 6 | * [Beginner's Guide to NFTs: What Are Non-Fungible Tokens?](https://decrypt.co/resources/non-fungible-tokens-nfts-explained-guide-learn-blockchain) 7 | * [The Benefits and Risks of NFT Investing](https://www.myartbroker.com/investing/articles/benefits-and-risks-of-nft-investing) 8 | * [The Best NFT Use Cases and Utility (Complete List)](https://strategency.com/best-nft-use-cases-and-utility/) 9 | 10 | ## Additional resources: 11 | * [2023 NFT Market Analysis: An Insider Look](https://coinmarketcap.com/alexandria/ru/article/2023-nft-market-analysis:-an-insider-look) 12 | * [Do You Really* Own Your NFT? Chances Are, You Don’t](https://thedefiant.io/do-you-really-own-your-nft-chances-are-you-dont) 13 | * [NFTs and intellectual property, explained](https://cointelegraph.com/explained/nfts-and-intellectual-property-explained) 14 | * [What are wash trading and money laundering in NFTs?](https://cointelegraph.com/explained/what-are-wash-trading-and-money-laundering-in-nfts) 15 | * [Are NFTs really solving the Royalty problem?](https://medium.com/@neavra/are-nfts-really-solving-the-royalty-problem-75e341310e4d) 16 | * [Is Staking NFTs Worth it, and How Does It Work?](https://stackbrowser.com/blog/staking-nfts) 17 | * [What are dynamic NFTs?: Use cases and examples](https://cointelegraph.com/explained/what-are-dynamic-nfts-use-cases-and-examples) 18 | 19 | ## Questions: 20 | 21 | * Explain the difference between fungible and non-fungible tokens. 22 | * Which are the most popular standards of non-fungible tokens? Tell about their definitions. 23 | * What is the purpose of metadata in the NFT? 24 | * What is NFT minting? 25 | -------------------------------------------------------------------------------- /defi/nft/p2e/P2E.md: -------------------------------------------------------------------------------- 1 | # Play-to-Earn (P2E) basics 2 | 3 | ## Resources: 4 | 5 | * [What Are Play-to-Earn Games? How Players Are Making a Living With NFTs](https://decrypt.co/resources/what-are-play-to-earn-games-how-players-are-making-a-living-with-nfts) 6 | * [What Is Play To Earn? | Explained With Animation](https://www.youtube.com/watch?v=dYK-_mpvgOw) 7 | * [Let the blockchain games begin](https://zipmex.com/learn/the-future-of-blockchain-gaming/) 8 | * [The GameFi Cycle - Why all Play To Earn (P2E) games die](https://www.youtube.com/watch?v=0Bq-jmK1O-k) 9 | 10 | 11 | ## Additional resources: 12 | * [Games on Polkastarter](https://polkastarter.gg/games/) 13 | * [Solving the Problems With Play-to-earn Gaming](https://hackernoon.com/solving-the-problems-with-play-to-earn-gaming) 14 | * [A Complete Guide to Initial Game Offerings (IGOs)](https://hackernoon.com/a-complete-guide-to-initial-game-offerings-igos) 15 | 16 | ## Questions: 17 | * Why do games incorporate P2E mechanics? 18 | * What is the difference between P2E games and standard mechanics? 19 | * How does the game interact with blockchain? 20 | * What are the top notorious P2E projects and their basic earning mechanics? 21 | -------------------------------------------------------------------------------- /defi/nft/p2e/README.md: -------------------------------------------------------------------------------- 1 | # Play to earn 2 | 3 | - [play to earn basics](./P2E.md) 4 | - [Cryptokitties](./cryptokitties.md) 5 | -------------------------------------------------------------------------------- /defi/nft/p2e/cryptokitties.md: -------------------------------------------------------------------------------- 1 | # Cryptokitties 2 | 3 | ## Resources: 4 | 5 | * [CryptoKitties: How to Get Your Own CryptoKitty](https://www.bitdegree.org/crypto/tutorials/cryptokitties) 6 | * [CryptoKitties Guide](https://guide.cryptokitties.co/guide/) 7 | * [How to Play CryptoKitties NFT Game: Ultimate Guide for Beginners 2023](https://blog.switchere.com/how-to-play-cryptokitties-nft-game-ultimate-guide-for-beginners-2022/) -------------------------------------------------------------------------------- /defi/nft/soulbound.md: -------------------------------------------------------------------------------- 1 | # Soulbound tokens 2 | 3 | ## Resources: 4 | 5 | * [What are Soulbound Tokens? SBTs Explained | Future of Ethereum](https://www.youtube.com/watch?v=6EhO8Dd-Z-o) 6 | * [What Are Soulbound Tokens (SBT)?](https://academy.binance.com/en/articles/what-are-soulbound-tokens-sbt) 7 | 8 | ## Questions: 9 | * What is the difference between NFT and SBT? 10 | * How can SBTs be used? 11 | * How do SBTs work in Web3? 12 | -------------------------------------------------------------------------------- /defi/stablecoins/stablecoins.md: -------------------------------------------------------------------------------- 1 | # Stablecoins 2 | 3 | ## Resources: 4 | 5 | * [What is a Stablecoin? (How they work - ANIMATED)](https://www.youtube.com/watch?v=pGzfexGmuVw) 6 | * [Fighting to be STABLE: the Evolution of Stablecoins](https://medium.com/dragonfly-research/fighting-to-be-stable-the-evolution-of-stablecoins-aca81fb432f9) 7 | * [What are stablecoins, and how do they work?](https://www.youtube.com/watch?v=fdPmjHtQ5aM) 8 | 9 | 10 | ## Additional resources: 11 | * [A beginner's guide on algorithmic stablecoins](https://cointelegraph.com/learn/articles/a-beginner-s-guide-on-algorithmic-stablecoins) 12 | * [3 Stablecoin Algorithms Explained (Rebase, Empty Set Dollar, Basis Cash, Iron Finance)](https://www.youtube.com/watch?v=S7-rfvpEpJs) 13 | * [Maker for Dummies: A Plain English Explanation of the Dai Stablecoin](https://medium.com/cryptolinks/maker-for-dummies-a-plain-english-explanation-of-the-dai-stablecoin-e4481d79b90) 14 | * [What’s MakerDAO and what’s going on with it? Explained with pictures.](https://hackernoon.com/whats-makerdao-and-what-s-going-on-with-it-explained-with-pictures-f7ebf774e9c2) 15 | * [Black Thursday for MakerDAO: $8.32 million was liquidated for 0 DAI](https://medium.com/@whiterabbit_hq/black-thursday-for-makerdao-8-32-million-was-liquidated-for-0-dai-36b83cac56b6) 16 | * [What Is a Stablecoin? (But Actually)](https://patrickalphac.medium.com/what-is-a-stablecoin-but-actually-186b81e545cd) 17 | * [Illiquidity and Bank Run Risk in Defi](https://medium.com/alethio/overlooked-risk-illiquidity-and-bank-runs-on-compound-finance-5d6fc3922d0d) 18 | * [Stablecoins: Why This Hot Cryptocurrency Faces Challenges | WSJ](https://www.youtube.com/watch?v=GEvxWQmloLw) 19 | * [Why Did Luna Crash 99.99%? Here’s What Happened to Terra Luna Classic 20 | ](https://coincodex.com/article/22749/what-happened-to-luna/) 21 | 22 | 23 | ## Questions: 24 | 25 | * What is a Stablecoin? Who need them? 26 | * What is Fiat-backed Stablecoins? What are pros and cons of it? how does the issuer earn? 27 | * What are the main risks of using centralized stablecoins like USDT by Tether? 28 | * What happened to Luna Classic? 29 | * What ensures the peg of DAI in the MakerDAO protocol? 30 | 31 | -------------------------------------------------------------------------------- /defi/tokenization/README.md: -------------------------------------------------------------------------------- 1 | # Real-world Assets tokenization 2 | 3 | * [Basics](./basics.md) 4 | -------------------------------------------------------------------------------- /defi/tokenization/basics.md: -------------------------------------------------------------------------------- 1 | # Real-world Assets tokenization 2 | 3 | ## Resources: 4 | 5 | * [Asset Tokenization: What It Is and How It Works](https://chain.link/education/asset-tokenization) 6 | * [The Three Requirements of Tokenized Real-World Assets (RWAs) Solved by Chainlink](https://blog.chain.link/stages-enriching-real-world-assets/) 7 | 8 | 9 | ## Additional resources: 10 | 11 | * [What Is Tokenized Real Estate?](https://chain.link/education-hub/tokenized-real-estate) 12 | * [Tokenizing In-Game Assets](https://chain.link/education-hub/tokenization-of-game-assets) 13 | * [A Chainlink Industry Report How Interoperability and Real-World Data Unlock the True Value of Tokenized Assets](https://pages.chain.link/hubfs/e/definitive-guide-to-tokenized-assets.pdf) 14 | * [Cross-Chain Tokenized Assets](https://chain.link/education-hub/cross-chain-tokenized-assets) 15 | 16 | 17 | ## Questions: 18 | -------------------------------------------------------------------------------- /defi/tokens/README.md: -------------------------------------------------------------------------------- 1 | # Fungible tokens 2 | 3 | - [Tokens basics](fungible-tokens.md) 4 | - [Tokenomics](tokenomics/tokenomics.md) 5 | * [Token mechanics](tokenomics/token_mechanics.md) 6 | * [Tokens distribution](tokenomics/distribution.md) 7 | - [Initial offering](tokenomics/initial-offering.md) 8 | - [Airdrops](tokenomics/airdrops.md) 9 | - [Launchpads](tokenomics/launchpads/README.md) 10 | -------------------------------------------------------------------------------- /defi/tokens/fungible-tokens.md: -------------------------------------------------------------------------------- 1 | # Fungible Tokens 2 | 3 | ## Resources: 4 | 5 | * [ERC20 tokens - Simply Explained](https://www.youtube.com/watch?v=cqZhNzZoMh8&t=62s) 6 | * [An Introduction to ERC-20 Tokens](https://academy.binance.com/en/articles/an-introduction-to-erc-20-tokens) 7 | * [The Different Types of Cryptocurrency Tokens Explained](https://blog.makerdao.com/the-different-types-of-cryptocurrency-tokens-explained/) 8 | * [A Beginner’s Guide to Security Tokens](https://academy.binance.com/en/articles/a-beginners-guide-to-security-tokens) 9 | * [Security vs. Utility Tokens: The Complete Guide](https://cryptopotato.com/security-vs-utility-tokens-the-complete-guide/) 10 | * [Security Tokens Vs. Utility Tokens : A Concise Guide](https://www.blockchain-council.org/blockchain/security-tokens-vs-utility-tokens-a-concise-guide/) 11 | * [Crypto Coin vs Token (Differences + Examples)](https://www.youtube.com/watch?v=422HORNUfkU&t=268s) 12 | * Governance Tokens 13 | - [What Are Governance Tokens?](https://www.youtube.com/watch?v=rIgpEaLLINI) 14 | - [What Are Governance Tokens?](https://crypto.com/university/what-are-governance-tokens) 15 | * Wrapped tokens 16 | - [What Are Wrapped Tokens?](https://academy.binance.com/en/articles/what-are-wrapped-tokens) 17 | - [What are Wrapped Tokens - Explained in Detail (Animation)](https://www.youtube.com/watch?v=SjdJWr8hgRY) 18 | 19 | ## Additional resources: 20 | * [7 Reasons to launch a token](https://designingtokenomics.com/the-complete-tokenomics-course-primer/articles/7-reasons-to-launch-a-token) 21 | * [Howey Test Definition](https://www.embroker.com/blog/what-is-the-howey-test-does-crypto-pass/) 22 | * [3 Ways to Safely Design Utility Tokens](https://www.web3.university/article/3-ways-to-safely-design-utility-tokens) 23 | 24 | ## Questions: 25 | 26 | * What is the difference between coin and token? 27 | * What does "fungible" mean? 28 | * What is the purpose of launching your own token? 29 | * What is ERC-20? What problem does it solve? 30 | * Which methods does ERC-20 include? 31 | * What are BEP-20 and TRC-20? 32 | * What is a security token? 33 | * What is an utility token? 34 | * What is a governance token? 35 | * What is a Wrapped Token? 36 | -------------------------------------------------------------------------------- /defi/tokens/tokenomics/README.md: -------------------------------------------------------------------------------- 1 | # Tokenomics 2 | 3 | - [Tokenomics basics](tokenomics.md) 4 | - [Token mechanics](token_mechanics.md) 5 | - [Tokens distribution](distribution.md) 6 | * [Initial offering](initial-offering.md) 7 | * [Airdrops](airdrops.md) 8 | * [Launchpads](./launchpads/README.md) 9 | -------------------------------------------------------------------------------- /defi/tokens/tokenomics/airdrops.md: -------------------------------------------------------------------------------- 1 | # Airdrops 2 | 3 | ## Resources: 4 | 5 | * [What Is a Crypto Airdrop?](https://academy.binance.com/en/articles/what-is-a-crypto-airdrop) 6 | * [What is an AirDrop? How to find FREE Crypto & Why it's Given](https://www.youtube.com/watch?v=oW3Cp4JDhI4) 7 | * [Exploring the Pros and Cons of Cryptocurrency Airdrops: A Comprehensive Overview](https://www.binance.com/en/feed/post/501821) 8 | 9 | ## Additional resources: 10 | 11 | * [5 Biggest Airdrops in Crypto World](https://www.binance.com/en/feed/post/426166) 12 | 13 | ## Questions: 14 | 15 | * What is an airdrop? 16 | * What is the purpose of an airdrop? 17 | * What are pros and cons of airdrops? 18 | * Describe few examples of the biggest airdrops? 19 | -------------------------------------------------------------------------------- /defi/tokens/tokenomics/distribution.md: -------------------------------------------------------------------------------- 1 | # Tokens distribution 2 | 3 | 4 | ## Resources: 5 | 6 | * [Crypto Education: Token Distribution Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=C4rQVQBss5c&list=PLv2XcKxyTgDIus9mF_sYDrKD96Meuoduc&index=44) 7 | * [Token Vesting and Allocations Industry Benchmarks](https://www.liquifi.finance/post/token-vesting-and-allocation-benchmarks) 8 | * [Optimizing Your Token Distribution](https://lstephanian.mirror.xyz/kB9Jz_5joqbY0ePO8rU1NNDKhiqvzU6OWyYsbSA-Kcc) 9 | 10 | ## Additional resources: 11 | * [Building Community in Crypto: The Evolution of Token Distribution Models](https://blog.coinlist.co/building-community-in-crypto-the-evolution-of-token-distribution-models/) 12 | 13 | 14 | ## Questions: 15 | * What types of distribution do you know? 16 | * What is allocation? 17 | * Describe the best practices in good allocation? 18 | * What is vesting? What is purpose of vesting? 19 | -------------------------------------------------------------------------------- /defi/tokens/tokenomics/initial-offering.md: -------------------------------------------------------------------------------- 1 | # Initial offering 2 | 3 | ## Resources: 4 | 5 | * ICO 6 | - [What Is an ICO (Initial Coin Offering)?](https://academy.binance.com/en/articles/what-is-an-ico) 7 | * IEO 8 | - [How To Launch Your IEO: Guide For Projects + List of Exchanges](https://hackernoon.com/how-to-launch-your-ieo-guide-for-projects-list-of-exchanges-dcebca23bcac) 9 | * IDO 10 | - [What Happened to the Ico?](https://hackernoon.com/what-happened-to-the-ico-wo2l37qu) 11 | - [Crypto Education: IDOs Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=M3I6Hs_AQbU) 12 | - [The Evolution of Crypto Fundraising: IDO as an Alternative?](https://hackernoon.com/the-evolution-of-crypto-fundraising-ido-as-an-alternative) 13 | - [Can IDOs #RightTheWrongs of ICOs and IEOs?](https://hackernoon.com/can-idos-rightthewrongs-of-icos-and-ieos-vx1s35on) 14 | - [All About Initial DEX Offerings and Why They Matter](https://hackernoon.com/all-about-initial-dex-offerings-and-why-they-matter) 15 | 16 | ## Additional resources: 17 | * [A Comprehensive Guide to the Next Generation of ICOs & Crypto Funding | The Rise, Boom, Bust, &…](https://hackernoon.com/a-comprehensive-guide-to-icos-crypto-funding-the-rise-the-boom-the-bust-the-next-b159fdf38010?ref=hackernoon.com) 18 | * [The Science Of A Successful Token Sale: How To Nail Your ICO Tokenomics](https://maxya.mp/the-science-of-a-successful-token-sale-how-to-nail-your-ico-tokenomics) 19 | * [Introduction to Token Sales (ICO) Best Practices](https://www.pwc.com/gx/en/financial-services/pdf/introduction-to-token-sales-ico-best-practices.pdf) 20 | * [Best Practices for Token Sales](https://ftahk.org/system/files/2019-07/FTAHK%20Best%20Practices%20for%20Token%20Sales%20-%20Version%202_0%20-%20October%202018.pdf) 21 | 22 | ## Questions: 23 | 24 | * What is ICO? What is difference with IPO? 25 | * What is reverse ICO? 26 | * How does ICO work? 27 | * What problems are there with ICO for projects? What problems are there with ICO for investors? 28 | * What is IEO? What is the difference with ICO? What are the benefits of IEO? 29 | -------------------------------------------------------------------------------- /defi/tokens/tokenomics/launchpads/README.md: -------------------------------------------------------------------------------- 1 | # Launchpads 2 | 3 | - [Basics](./launchpads.md) -------------------------------------------------------------------------------- /defi/tokens/tokenomics/launchpads/launchpads.md: -------------------------------------------------------------------------------- 1 | # Launchpads 2 | 3 | 4 | ## Resources: 5 | 6 | * [Why do crypto startups need launchpads and how do they work?](https://www.metalamp.io/articles/why-do-crypto-startups-need-launchpads-and-how-do-they-work) 7 | * [What Is a Crypto Launchpad and How Does It Benefit the Crypto Ecosystem?](https://dailycoin.com/what-is-a-crypto-launchpad-and-how-does-it-benefit-the-crypto-ecosystem/) 8 | * [Binance Launchpad vs. Binance Launchpool: Key differences](https://cointelegraph.com/funding-for-beginners/binance-launchpad-vs-binance-launchpool-key-differences) 9 | 10 | ## Additional resources: 11 | * [What Is A Launchpad In Crypto And How To Use Them? (Whiteboard Animated)](https://www.youtube.com/watch?v=G1yQnPKSgzY) 12 | 13 | 14 | 15 | ## Ruestions: 16 | * What is allocation? 17 | * What is a Whitelist? 18 | * What are multi-accounts for? 19 | * What are 'tiers' on the launchpad for? 20 | * What's the difference between Launchpad and Launchpool? 21 | * What is usually called an 'FCFS round'? 22 | * Launchpad's fundraising process? Where does it start and what is the bottom line? 23 | -------------------------------------------------------------------------------- /defi/tokens/tokenomics/token_mechanics.md: -------------------------------------------------------------------------------- 1 | # Base mechanics: minting, burning, staking 2 | 3 | ## Resources: 4 | 5 | * [Crypto Education - Token Minting Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=EhTNVkZ_J74) 6 | * [Crypto Education: Token Burning Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=YkC6yoOOq2I) 7 | * [Crypto Education - Staking Explained | Animation | Cryptomatics](https://www.youtube.com/watch?v=ALEMhA82UoU) 8 | * [Buyback-and-burn: What does it mean in crypto?](https://cointelegraph.com/explained/buyback-and-burn-what-does-it-mean-in-crypto) 9 | 10 | 11 | ## Questions: 12 | 13 | * What is Minting? 14 | * What is Burning? What is main purpose of burning? 15 | * How does burning work? Is this feature logic in token smart contract? 16 | * What is Staking? What is the main purpose of staking? 17 | * How does staking work? Is this feature logic in token smart contract? 18 | -------------------------------------------------------------------------------- /defi/tokens/tokenomics/tokenomics.md: -------------------------------------------------------------------------------- 1 | # Tokenomics 2 | 3 | ## Resources: 4 | * [Tokenomics / The Core of Every Crypto Project](https://www.youtube.com/watch?v=uA40CSoxoDY) 5 | * [What is Tokenomics? Understanding Crypto Fundamentals](https://www.youtube.com/watch?v=NOjST7ny4oY) 6 | * [Guide to tokenomics and how is it important in cryptocurrency?](https://guidefinancehub.com/guide-to-tokenomics-in-cryptocurrency/) 7 | * [What Is Tokenomics and Why Is It Important?](https://www.coindesk.com/learn/what-is-tokenomics-and-why-is-it-important/) 8 | * [A complete tokenomics guide for web3 founders](https://victorugochukwu.com/a-complete-tokenomics-guide-for-web3-founders) 9 | 10 | ## Additional resources: 11 | * [How To DYOR: 12 Ways To Research Crypto Like A PRO](https://www.youtube.com/watch?v=JCoqsabz62I) 12 | * [Tokenomics Design: Essential Principles For Crypto Investors And Entrepreneurs](https://hacken.io/discover/tokenomics-design-principles/) 13 | * [100 questions you should ask yourself when analyzing tokenomics](https://medium.com/@kinaumov/100-questions-tokenomics-c31382966785) 14 | 15 | 16 | ## Questions: 17 | 18 | * What is a whitepaper? 19 | * Why does tokenomics matter? 20 | * What defines good tokenomics? 21 | * What is token supply? What is circullation supply? What is total supply? What is max. supply? 22 | * What is marketcap? 23 | * What is Deflationary и Inflationary token model types? 24 | 25 | ## Tasks: 26 | 27 | * Take any 3 tokens and do research its tokenomics: supply model, whitepaper, distribution model and utility. 28 | -------------------------------------------------------------------------------- /defi/trading/README.md: -------------------------------------------------------------------------------- 1 | # Trading & Exchanges 2 | 3 | - [Technical analysis](technical.md) 4 | - [Fundamental analysis](fundamental.md) 5 | - [Trading Strategies](strategies.md) 6 | - [CEX](./cex/cex.md) 7 | - [DEX](./dex/README.md) 8 | - [Derivatives](derivatives.md) 9 | -------------------------------------------------------------------------------- /defi/trading/cex/cex.md: -------------------------------------------------------------------------------- 1 | # CEX 2 | 3 | ## Resources: 4 | * [What is a centralized exchange (CEX)?](https://www.okx.com/learn/what-is-centralized-exchange) 5 | 6 | ## Questions: 7 | -------------------------------------------------------------------------------- /defi/trading/derivatives.md: -------------------------------------------------------------------------------- 1 | # Derivatives 2 | 3 | ## Resources: 4 | 5 | * [Investing Basics: Stocks](https://www.youtube.com/watch?v=hE2NsJGpEq4) 6 | * [Investing Basics: Bonds](https://www.youtube.com/watch?v=IuyejHOGCro) 7 | * [What's the Difference Between Bonds and Stocks?](https://www.youtube.com/watch?v=uI2vhCitTBw) 8 | * [Crypto derivatives 101: A beginner’s guide on crypto futures, crypto options and perpetual contracts](https://cointelegraph.com/learn/crypto-derivatives) 9 | * [What Is Margin Trading?](https://academy.binance.com/en/articles/what-is-margin-trading) 10 | 11 | ## Additional resources: 12 | * [Derivatives in DEFI Explained (Synthetix, UMA, Hegic, Opyn, Perpetual, dYdX, BarnBridge)](https://www.youtube.com/watch?v=QxoqPZRw9y4) 13 | 14 | ## Questions: 15 | * What is a stock? What are 2 ways to make money on stocks? 16 | * What is a bond? What is a coupon rate? 17 | * What is the difference between bonds and stocks? 18 | * What is default risk? 19 | * What is a derivative? 20 | * What is an option? What types of options do you know? 21 | * What are the futures? What types of futures do you know? 22 | * What is the difference between options and futures? 23 | * What is margin trading? What is leverage? What is margin-call? 24 | -------------------------------------------------------------------------------- /defi/trading/dex/README.md: -------------------------------------------------------------------------------- 1 | # DEX 2 | 3 | - [basics](./dex.md) 4 | - [Uniswap v2](uni.md) 5 | - [Sushiswap](sushi.md) 6 | - [Uniswap v3](uni3.md) 7 | - [Curve.finance](curve.md) 8 | -------------------------------------------------------------------------------- /defi/trading/dex/curve.md: -------------------------------------------------------------------------------- 1 | # Curve.finance 2 | 3 | ## Resources: 4 | 5 | * [What is Curve Finance? I'm earning 25% AND protecting against a crash](https://www.youtube.com/watch?v=MqRfurKVM1A) 6 | * [What Is Curve Finance and Liquidity Pool in DeFi?](https://learn.bybit.com/defi/what-is-curve-finance/) 7 | 8 | ## Additional resources: 9 | * [Whales vs. Retail: Who’s Using Curve?](https://blog.kaiko.com/whales-vs-retail-whos-using-curve-2ee09a998d94) 10 | -------------------------------------------------------------------------------- /defi/trading/dex/dex.md: -------------------------------------------------------------------------------- 1 | # DEX 2 | 3 | 4 | ## Resources: 5 | 6 | * [What are decentralized exchanges, and how do DEXs work?](https://cointelegraph.com/defi-101/what-are-decentralized-exchanges-and-how-do-dexs-work) 7 | * [What is a DEX? How A Decentralized Exchange Works](https://www.youtube.com/watch?v=2tTVJL4bpTU) 8 | * [What is a Liquidity Pool in Crypto? (Animated)](https://www.youtube.com/watch?v=dVJzcFDo498) 9 | * [What is an Automated Market Maker? (Liquidity Pool Algorithm)](https://www.youtube.com/watch?v=1PbZMudPP5E) 10 | 11 | * [Understanding AMMs - The Basics](https://kermankohli.substack.com/p/understanding-amms-the-basics-f30) 12 | 13 | 14 | ## Additional resources: 15 | * [Automated Market Makers: What You Need to Know](https://hackernoon.com/automated-market-makers-what-you-need-to-know) 16 | * [What explains the rise of AMMs?](https://medium.com/dragonfly-research/what-explains-the-rise-of-amms-7d008af1c399) 17 | * [What is Impermanent Loss in Crypto? (Animated + Examples)](https://www.youtube.com/watch?v=_m6Mowq3Ptk) 18 | * [6 Ways to Avoid Impermanent Loss (Crypto Liquidity Pools)](https://www.youtube.com/watch?v=oyriORaeJOw) 19 | 20 | ## Questions: 21 | 22 | * What is a DEX? 23 | * How is a DEX different from a CEX?‍ 24 | * What are the main benefits of DEXs? 25 | * What are the main risks of DEXs? 26 | * Which cryptocurrencies can be traded on a DEX? 27 | * Why do DEXes need the liquidity pools? 28 | * How do DEXes on AMM work? 29 | * What is impermanent loss and how to avoid it? 30 | -------------------------------------------------------------------------------- /defi/trading/dex/sushi.md: -------------------------------------------------------------------------------- 1 | # Sushiswap 2 | 3 | ## Resources: 4 | 5 | * [What is Sushiswap? (Animated) Sushi Token + Kashi + Miso Explained](https://www.youtube.com/watch?v=NTYbVnENeVo) 6 | * [SUSHI - Most Underrated Protocol in DeFi? (BentoBox, Kashi, Miso Explained)](https://www.youtube.com/watch?v=Cbtvc8Eso_g) 7 | 8 | ## Additional resources: 9 | * [What is a Vampire Attack in Crypto? (SushiSwap Stole Uniswap's Money?)](https://www.youtube.com/watch?app=desktop&v=UpqgenfGYkI) 10 | * [What Is a VAMPIRE ATTACK? SUSHISWAP Saga Explained](https://www.youtube.com/watch?v=UFjXwrCGuog) 11 | * [What Are Vampire Attacks: The Dangers Of Incentivized Liquidity](https://phemex.com/blogs/what-are-vampire-attacks-in-crypto) 12 | -------------------------------------------------------------------------------- /defi/trading/dex/uni.md: -------------------------------------------------------------------------------- 1 | # Uniswap v2 2 | 3 | ## Resources: 4 | * [A Short Story of UNISWAP and UNI Token. DEFI Explained](https://www.youtube.com/watch?v=LpjMgS4OVzs) 5 | * [Uniswap V2 Explained (Beginner Friendly)](https://medium.com/@chiqing/uniswap-v2-explained-beginner-friendly-b5d2cb64fe0f) 6 | * [Uniswap v2 on Defilama](https://defillama.com/protocol/uniswap-v2) 7 | 8 | ## Additional resources: 9 | * [Difference between v1 and v2](https://rossbulat.medium.com/uniswap-v2-everything-new-with-the-decentralised-exchange-52b4bb2093ab) 10 | 11 | ## Questions: 12 | 13 | * What is a pair? 14 | * What are LP tokens? 15 | * What is a Router? 16 | * What are Flash swaps? 17 | * What is a swap fee? How much is it and how do liquidity providers get this fee? 18 | 19 | ## Tasks: 20 | 21 | * Look at Defilama TVL of uniswap v2. 22 | * Look at Defilama how many forks uniswap v2 has. 23 | * Try to swap any tokens on any dex (uniswap fork) on polygon or bsc chain (Pancakeswap). 24 | -------------------------------------------------------------------------------- /defi/trading/dex/uni3.md: -------------------------------------------------------------------------------- 1 | # Uniswap v3 2 | 3 | ## Resources: 4 | * [Introducing Uniswap V3](https://uniswap.org/blog/uniswap-v3) 5 | * [Uniswap V3 Explained - Concentrated Liquidity, NFT LP Tokens, Licensing…](https://www.youtube.com/watch?v=ClWR1570UQw) 6 | * [Uniswap V3 – New Era Of AMMs?](https://finematics.com/uniswap-v3-explained/) 7 | * [Uniswap v3 on Defilama](https://defillama.com/protocol/uniswap-v3) 8 | 9 | ## Questions: 10 | * Which are the main differents between Uniswap V2 and Unsiwap V3? 11 | 12 | ## Tasks: 13 | 14 | * Look at Defilama TVL of uniswap v3. 15 | * Look at Defilama how many forks uniswap v3 has. 16 | * Try to swap any tokens on any dex (uniswap fork) on polygon or bsc chain (Pancakeswap). 17 | -------------------------------------------------------------------------------- /defi/trading/frontrunning.md: -------------------------------------------------------------------------------- 1 | # Front-running 2 | 3 | ## Resources: 4 | 5 | * [What is front-running in crypto and NFT trading?](https://cointelegraph.com/explained/what-is-front-running-in-crypto-and-nft-trading) 6 | -------------------------------------------------------------------------------- /defi/trading/fundamental.md: -------------------------------------------------------------------------------- 1 | # Fundamental analysis 2 | 3 | ## Resources: 4 | 5 | - [What is Fundamental Analysis (FA)?](https://academy.binance.com/en/articles/what-is-fundamental-analysis-fa) 6 | - [A Guide to Cryptocurrency Fundamental Analysis](https://academy.binance.com/en/articles/a-guide-to-cryptocurrency-fundamental-analysis) 7 | 8 | ## Additional resources: 9 | - [What Is Crypto Market Sentiment?](https://academy.binance.com/en/articles/what-is-crypto-market-sentiment) 10 | 11 | ## Questions: 12 | * What is fundamental analysis? What is the purpose of fundamental analysis? 13 | * What is the difference between fundamental analysis and technical analysis? 14 | * What are pros and cons of fundamental analysis? 15 | * Describe 3 categories of metrics in crypto fundamental analysis? 16 | -------------------------------------------------------------------------------- /defi/trading/strategies.md: -------------------------------------------------------------------------------- 1 | # Trading strategies 2 | 3 | ## Resources: 4 | 5 | * [Chapter 3 – Trading and Investment Strategies](https://academy.binance.com/en/articles/a-complete-guide-to-cryptocurrency-trading-for-beginners#what-is-a-trading-strategy) 6 | * [A Beginner's Guide to Cryptocurrency Trading Strategies](https://academy.binance.com/en/articles/a-beginners-guide-to-cryptocurrency-trading-strategies) 7 | * [A Beginner’s Guide to Day Trading Cryptocurrency](https://academy.binance.com/en/articles/a-beginners-guide-to-day-trading-cryptocurrency) 8 | * [What Is Arbitrage Trading?](https://academy.binance.com/en/articles/what-is-arbitrage-trading) 9 | * [Crypto Arbitrage: Overview, Trading Strategies, Opportunities, and More](https://blog.quantinsti.com/crypto-arbitrage/) 10 | 11 | ## Questions: 12 | * What is a trading strategy? 13 | * What is portfolio management? Two ways of portfolio management? 14 | * What are types of risks in portfolio management? 15 | * What is day trading? Why volume and liquidity are crucial for day trading? 16 | * What is High-frequency trading (HFT)? 17 | * What is Arbitrage trading? 18 | * What types of Arbitrage trading do you know? 19 | * What risks of Arbitrage trading do you know? 20 | -------------------------------------------------------------------------------- /defi/trading/technical.md: -------------------------------------------------------------------------------- 1 | # Technical analysis 2 | 3 | 4 | ## Resources : 5 | * [What is Technical Analysis? Candlesticks, Trendlines, Patterns Explained](https://www.youtube.com/watch?v=4c5WKOB3U5c) 6 | * [What Is Technical Analysis?](https://academy.binance.com/en/articles/what-is-technical-analysis) 7 | * [Chapter 4 - Technical Analysis Basics](https://academy.binance.com/en/articles/a-complete-guide-to-cryptocurrency-trading-for-beginners#what-is-a-long-position) 8 | * [Order Book](https://academy.binance.com/en/glossary/order-book) 9 | * [Bid-Ask Spread and Slippage Explained](https://academy.binance.com/en/articles/bid-ask-spread-and-slippage-explained) 10 | 11 | ## Additional resources: 12 | * [What Are Stop-Loss and Take-Profit Levels and How to Calculate Them?](https://academy.binance.com/en/articles/what-are-stop-loss-and-take-profit-levels-and-how-to-calculate-them) 13 | * [A Beginner's Guide to Candlestick Charts](https://academy.binance.com/en/articles/a-beginners-guide-to-candlestick-charts) 14 | * [A Beginner’s Guide to Classical Chart Patterns](https://academy.binance.com/en/articles/a-beginners-guide-to-classical-chart-patterns) 15 | * [The Basics of Support and Resistance Explained](https://academy.binance.com/en/articles/the-basics-of-support-and-resistance-explained) 16 | 17 | ## Questions: 18 | 19 | * What is the technical analysis? 20 | * What is a long position? What is a short position? 21 | * What is an orderbook? 22 | * What does the Market glass show and why is it needed? 23 | * What are Japanese candlesticks? How to read them? 24 | * What are the Support and Resistance Levels set for? 25 | * Trend Lines - what does it show a trader? 26 | * What does the moving average reflect? What data is it based on? 27 | * What is the difference between a bear market and a bull market? 28 | -------------------------------------------------------------------------------- /defi/vaults/README.md: -------------------------------------------------------------------------------- 1 | # Vaults 2 | 3 | * [Basics](vaults.md) -------------------------------------------------------------------------------- /defi/vaults/vaults.md: -------------------------------------------------------------------------------- 1 | # Vaults 2 | 3 | ## Resources: 4 | 5 | * [What are YEARN VAULTS? ETH Vault Explained | DEFI, YIELD FARMING](https://www.youtube.com/watch?v=9vTaNl2_B8A) 6 | * [YEARN FINANCE And YFI Token Explained | DeFi, Ethereum](https://www.youtube.com/watch?v=qG1goOptZ5w&t=4s) 7 | -------------------------------------------------------------------------------- /defi/vaults/yield.md: -------------------------------------------------------------------------------- 1 | # Yield farming 2 | 3 | ## Resources: 4 | 5 | * [What Is YIELD FARMING? DEFI Explained (Compound, Balancer, Curve, Synthetix, Ren)](https://www.youtube.com/watch?v=ClnnLI1SClA) 6 | * [What is Yield Farming in Crypto? (Animated + 4 Examples)](https://www.youtube.com/watch?v=LaeI5D6NDvw&t=84s) 7 | * [Is Yield Farming DEAD? Are There ANY Good Opportunities Left? DEFI Explained](https://www.youtube.com/watch?v=s0Of2ZnyhIE) 8 | * [What is Yield Farming? [ APY Explained With Animations ]](https://www.youtube.com/watch?v=XgXL_X3bH70) 9 | * [What are Degen Yield Farms? (Animated) - Crypto Pyramid Schemes](https://www.youtube.com/watch?v=i0GI6GwEWDQ) 10 | * [What Is Yield Farming in Decentralized Finance (DeFi)?](https://academy.binance.com/en/articles/what-is-yield-farming-in-decentralized-finance-defi) 11 | * [Where does yield come from, anyway?](https://juliankoh.medium.com/where-does-yield-come-from-anyway-fc818c114bd5) 12 | * [What is yield farming in decentralized finance (DeFi)?](https://cointelegraph.com/explained/defi-yield-farming-explained) 13 | 14 | ## Questions: 15 | -------------------------------------------------------------------------------- /regulation/README.md: -------------------------------------------------------------------------------- 1 | # Regulation 2 | 3 | * [KYC & AML](./kyc.md) 4 | -------------------------------------------------------------------------------- /regulation/kyc.md: -------------------------------------------------------------------------------- 1 | # KYC & AML 2 | 3 | ## Resources: 4 | 5 | * [Know Your Customer (KYC)](https://academy.binance.com/en/glossary/know-your-customer) 6 | * [KYC Guide 2022—What’s KYC and Why is It Important?](https://sumsub.com/blog/kyc-guide/) 7 | * [Crypto KYC Guide: How Virtual Assets Are Regulated](https://sumsub.com/blog/crypto-kyc-guide/) 8 | * [Managing KYC Dilemmas: In-house vs. Outsourced Solutions](https://sumsub.com/blog/in-house-vs-outsourcing-kyc/) 9 | * [Identification, Verification, and Authentication—What’s the Difference?](https://sumsub.com/blog/identification-verification-and-authentication/) 10 | 11 | ## Questions: 12 | * What is KYC? Why is it needed and who uses it? 13 | * What is AML? 14 | * What is the difference between in-house KYC infrastructure and outsourced KYC? Who benefits from outsourcing, and who benefits from getting out inside? 15 | * What is the conflict between KYC and web3 philosophy? 16 | * How to integrate ready kyc solution to your service? How does it work? 17 | -------------------------------------------------------------------------------- /web3/README.md: -------------------------------------------------------------------------------- 1 | # Web3 2 | 3 | ## Resources: 4 | * [Introduction to Web 3.0](https://ethereum.org/en/web3/) 5 | * [Making Sense of Web 3.0](https://medium.com/l4-media/making-sense-of-web-3-c1a9e74dcae) 6 | * [7 reasons to embrace Web3 — and 7 reasons not to](https://www.infoworld.com/article/3651494/7-reasons-to-embrace-web3-and-7-reasons-not-to.html) 7 | * [Blockchain implementation challenges](https://dataconomy.com/2022/05/blockchain-implementation-challenges/) 8 | 9 | ## Additional resources: 10 | * [The Meaning of Decentralization](https://medium.com/@VitalikButerin/the-meaning-of-decentralization-a0c92b76a274) 11 | 12 | 13 | ## Questions: 14 | * What is the difference between Web 1.0, Web 2.0, Web 3.0? 15 | * What are the main challenges of Web 3.0? 16 | * What is the difference between distributed and decentralized? 17 | * Describe three types of Decentralization? 18 | --------------------------------------------------------------------------------