-
Урок 1. 00:03:45Introduction
-
Урок 2. 00:04:14A Short History Lesson
-
Урок 3. 00:04:17What is Ethereum?
-
Урок 4. 00:02:43Interfacing with Ethereum Networks
-
Урок 5. 00:05:23Ethereum Accounts
-
Урок 6. 00:07:44What's a Transaction?
-
Урок 7. 00:05:01Why'd We Wait?
-
Урок 8. 00:17:50Basic Blockchains
-
Урок 9. 00:10:50Block Time
-
Урок 10. 00:06:56Smart Contracts
-
Урок 11. 00:05:04The Solidity Programming Language
-
Урок 12. 00:05:42Our First Contract
-
Урок 13. 00:05:40Contract Structure
-
Урок 14. 00:09:00Function Declarations
-
Урок 15. 00:10:58Testing with Remix
-
Урок 16. 00:02:35Redeploying Contracts
-
Урок 17. 00:05:44Behind the Scenes of Deployment
-
Урок 18. 00:14:16More on Running Functions Than You Want to Know
-
Урок 19. 00:04:08Wei vs Ether
-
Урок 20. 00:11:25Gas and Transactions
-
Урок 21. 00:11:29Mnemonic Phrases
-
Урок 22. 00:00:50We Need More Test Ether!
-
Урок 23. 00:05:32Contract Deployment
-
Урок 24. 00:05:10Project Requirements
-
Урок 25. 00:04:33Project File Walkthrough
-
Урок 26. 00:06:23Compiling Solidity
-
Урок 27. 00:06:11The Compile Script
-
Урок 28. 00:03:49Testing Architecture
-
Урок 29. 00:04:16Installing Modules
-
Урок 30. 00:04:19Web3 Versioning
-
Урок 31. 00:04:48Web3 Providers
-
Урок 32. 00:18:17Testing with Mocha
-
Урок 33. 00:04:45Mocha Structure
-
Урок 34. 00:06:44Fetching Accounts from Ganache
-
Урок 35. 00:02:40Refactor to Async/Await
-
Урок 36. 00:06:12Deployment with Web3
-
Урок 37. 00:11:19Deployed Inbox Overview
-
Урок 38. 00:05:23Asserting Deployment
-
Урок 39. 00:08:26Verifying the Initial Message
-
Урок 40. 00:06:25Testing Message Updates
-
Урок 41. 00:06:58Deployment with Infura
-
Урок 42. 00:06:41Wallet Provider Setup
-
Урок 43. 00:07:22Deployment to Testnet
-
Урок 44. 00:04:52Observing Deployment on Etherscan
-
Урок 45. 00:07:14Deployed Contracts in Remix
-
Урок 46. 00:09:28Project Review
-
Урок 47. 00:02:37The Lottery Contract
-
Урок 48. 00:02:51Lottery Design
-
Урок 49. 00:09:44Basic Solidity Types
-
Урок 50. 00:04:45Starting the Lottery Contract
-
Урок 51. 00:05:54The Message Global Variable
-
Урок 52. 00:11:07Overview of Arrays
-
Урок 53. 00:03:43Overview of Mappings and Structs
-
Урок 54. 00:06:29Big Solidity Gotcha
-
Урок 55. 00:03:58Entering the Lottery
-
Урок 56. 00:09:49Validation with Require Statements
-
Урок 57. 00:04:04The Remix Debugger
-
Урок 58. 00:10:35Pseudo Random Number Generator
-
Урок 59. 00:04:59Selecting a Winner
-
Урок 60. 00:05:09Sending Ether from Contracts
-
Урок 61. 00:04:08Resetting Contract State
-
Урок 62. 00:05:04Requiring Managers
-
Урок 63. 00:06:19Function Modifiers
-
Урок 64. 00:02:14Returning Players Array
-
Урок 65. 00:02:52Contract Review
-
Урок 66. 00:03:05New Test Setup
-
Урок 67. 00:02:05Test Project Updates
-
Урок 68. 00:04:34Test Helper Review
-
Урок 69. 00:02:55Asserting Deployment
-
Урок 70. 00:06:28Entering the Lottery
-
Урок 71. 00:02:40Asserting Multiple Players
-
Урок 72. 00:05:58Try-Catch Assertions
-
Урок 73. 00:03:30Testing Function Modifiers
-
Урок 74. 00:11:05End to End Test
-
Урок 75. 00:09:21Ethereum App Architecture
-
Урок 76. 00:07:57Application Overview
-
Урок 77. 00:02:37Getting Started with Create-React-App
-
Урок 78. 00:08:43Multiple Web3 Instances
-
Урок 79. 00:06:10Web3 Setup
-
Урок 80. 00:05:33Deploying the Lottery Contract
-
Урок 81. 00:06:27Local Contract Instances
-
Урок 82. 00:07:05Rendering Contract Data
-
Урок 83. 00:01:59Instance Properties
-
Урок 84. 00:05:34Accessing More Properties
-
Урок 85. 00:03:51The 'Enter' Form
-
Урок 86. 00:06:48Form Setup
-
Урок 87. 00:06:36Entering the Lottery
-
Урок 88. 00:08:35Picking a Winner
-
Урок 89. 00:03:08Project Review
-
Урок 90. 00:06:02Solving Real Problems with Contracts
-
Урок 91. 00:07:49Fixing Kickstarter's Issues
-
Урок 92. 00:09:06Campaign Contract Design
-
Урок 93. 00:04:17Campaign Constructor
-
Урок 94. 00:03:08Contributing to the Campaign
-
Урок 95. 00:02:14A Quick Test
-
Урок 96. 00:08:59The Request Struct
-
Урок 97. 00:05:16More on Function Modifiers
-
Урок 98. 00:05:34Creating Struct Instances
-
Урок 99. 00:09:32Instance Creation Syntax
-
Урок 100. 00:06:28Storage and Memory
-
Урок 101. 00:16:24More on Storage vs Memory
-
Урок 102. 00:02:50Voting System Requirements
-
Урок 103. 00:05:13The Wrong Voting System
-
Урок 104. 00:06:15Issues with Arrays
-
Урок 105. 00:04:02Mappings vs Arrays
-
Урок 106. 00:11:09Basics of Mappings
-
Урок 107. 00:06:46Refactoring to Mappings
-
Урок 108. 00:02:16Refactoring Request Stucts
-
Урок 109. 00:02:53More on Struct Initialization
-
Урок 110. 00:07:54Approving a Request
-
Урок 111. 00:05:23Testing Request Approvals
-
Урок 112. 00:07:25Finalizing a Request
-
Урок 113. 00:03:04Last Remix Test
-
Урок 114. 00:09:47Thinking about Deployment
-
Урок 115. 00:06:34Solution to Deployment
-
Урок 116. 00:07:54Adding a Campaign Factory
-
Урок 117. 00:03:28Testing the Factory
-
Урок 118. 00:02:18Project Setup
-
Урок 119. 00:02:57Directory Structure
-
Урок 120. 00:04:42A Better Compile Script
-
Урок 121. 00:08:47Single Run Compilation
-
Урок 122. 00:06:21More on Compile
-
Урок 123. 00:08:22Test File Setup
-
Урок 124. 00:10:20Creating Campaign Instances
-
Урок 125. 00:03:12Testing Warmup
-
Урок 126. 00:09:56Accessing Mappings
-
Урок 127. 00:03:14Requiring Minimum Contributions
-
Урок 128. 00:06:08Array Getters
-
Урок 129. 00:13:01One End to End Test
-
Урок 130. 00:02:17Deployment
-
Урок 131. 00:06:06Refactoring Deployment
-
Урок 132. 00:11:06App Mockups
-
Урок 133. 00:05:00CRA vs Next
-
Урок 134. 00:05:09Next's Pages Architecture
-
Урок 135. 00:04:52Basics of Next Routing
-
Урок 136. 00:05:24Root Routes
-
Урок 137. 00:07:13CampaignFactory Instance
-
Урок 138. 00:05:36Getting a Test Campaign
-
Урок 139. 00:06:28Fetching Deployed Campaigns
-
Урок 140. 00:09:51Why Next.js, Anyways?
-
Урок 141. 00:10:42Server vs Client Web3 Instances
-
Урок 142. 00:10:15GetInitialProps Function
-
Урок 143. 00:05:50Semantic UI React
-
Урок 144. 00:06:42Card Group Setup
-
Урок 145. 00:06:11Rendering Card Groups
-
Урок 146. 00:04:41Adding CSS
-
Урок 147. 00:06:48Adding a Button
-
Урок 148. 00:06:17The Need for a Layout
-
Урок 149. 00:07:14The Layout Component
-
Урок 150. 00:07:36Assembling a Header
-
Урок 151. 00:04:29Constraining Content Width
-
Урок 152. 00:01:59Two Column Layout
-
Урок 153. 00:04:28Nested Routing
-
Урок 154. 00:05:21Final CSS Fix
-
Урок 155. 00:04:32Form Creation
-
Урок 156. 00:06:21Input Change Handlers
-
Урок 157. 00:05:59Form Submittal
-
Урок 158. 00:03:45Testing Submittal
-
Урок 159. 00:12:50Form Error Handling
-
Урок 160. 00:06:57Button Spinners
-
Урок 161. 00:03:14Routing Issues
-
Урок 162. 00:10:55Next Routes Setup
-
Урок 163. 00:04:44Automatic Navigation
-
Урок 164. 00:05:53Header Navigation
-
Урок 165. 00:05:53Routing to Campaigns
-
Урок 166. 00:07:02Route Mappings
-
Урок 167. 00:04:00Planning CampaignShow
-
Урок 168. 00:08:54Redeploying CampaignFactory
-
Урок 169. 00:07:11CampaignShow's GetInitialProps
-
Урок 170. 00:08:04Accessing a Campaign
-
Урок 171. 00:04:16Summary Translation Layer
-
Урок 172. 00:07:45Custom Card Groups
-
Урок 173. 00:04:39One Card Per Property
-
Урок 174. 00:07:23The Contribute Form
-
Урок 175. 00:04:08Grid Layouts
-
Урок 176. 00:02:45Form State
-
Урок 177. 00:04:25Communicating the Campaign Address
-
Урок 178. 00:04:56Making a Contribution
-
Урок 179. 00:06:18Refreshing Contract Data
-
Урок 180. 00:04:57Spinners and Error Handlers
-
Урок 181. 00:06:30Listing Requests
-
Урок 182. 00:03:37Grids vs Columns
-
Урок 183. 00:08:33More Routing!
-
Урок 184. 00:10:36Request Creation Form
-
Урок 185. 00:09:52Creating a Request
-
Урок 186. 00:07:44Form Polish
-
Урок 187. 00:01:13Creating a Request
-
Урок 188. 00:03:33Requests One by One
-
Урок 189. 00:07:36Fancy Javascript
-
Урок 190. 00:03:23Rendering a Table
-
Урок 191. 00:06:18Request Row Component
-
Урок 192. 00:07:24Request Row Content
-
Урок 193. 00:05:52Approvers Count Cell
-
Урок 194. 00:06:59Approving a Request
-
Урок 195. 00:05:20Finalizing Requests
-
Урок 196. 00:02:34Testing Finalization
-
Урок 197. 00:06:46Row Status Styling
-
Урок 198. 00:02:31Finishing Requests Index
-
Урок 199. 00:00:45Wrapup
-
Урок 200. 00:03:42Purpose of Boilerplate Projects
-
Урок 201. 00:01:46Environment Setup
-
Урок 202. 00:02:54Project Setup
-
Урок 203. 00:11:30JSX
-
Урок 204. 00:04:36More on JSX
-
Урок 205. 00:03:59ES6 Import Statements
-
Урок 206. 00:02:27ReactDOM vs React
-
Урок 207. 00:03:39Component Instances
-
Урок 208. 00:05:54Render Targets
-
Урок 209. 00:06:27Component Structure
-
Урок 210. 00:06:40Youtube Search API Signup
-
Урок 211. 00:08:41Export Statements
-
Урок 212. 00:08:12Class Based Components
-
Урок 213. 00:09:31Handling User Events
-
Урок 214. 00:05:14Introduction to State
-
Урок 215. 00:06:05State Continued
-
Урок 216. 00:07:48Controlled Components
-
Урок 217. 00:03:38Breather and Review
-
Урок 218. 00:04:27Youtube Search Response
-
Урок 219. 00:07:44Refactoring Functional Components to Class Components
-
Урок 220. 00:07:43Props
-
Урок 221. 00:07:07Building Lists with Map
-
Урок 222. 00:03:55List Item Keys
-
Урок 223. 00:07:54Video List Items
-
Урок 224. 00:07:06Detail Component and Template Strings
-
Урок 225. 00:04:42Handling Null Props
-
Урок 226. 00:11:40Video Selection
-
Урок 227. 00:03:44Styling with CSS
-
Урок 228. 00:07:52Searching for Videos
-
Урок 229. 00:05:47Throttling Search Term Input
-
Урок 230. 00:05:25React Wrapup
- Категории
- Источники
- Все курсы
- Разделы
- Книги
The Udemy version has 24h 11m content
specially -
1. 6-Figure Blockchain Developer (https://eattheblocks-pro.teachable.com/p/6-figure-blockchain-developer)
2. DeFi Development Mastery (https://eattheblocks-pro.teachable.com/p/defi-development-mastery)
3. Profitable Flashloans (https://eattheblocks-pro.teachable.com/p/profitable-flashloans)
4. Live Training #3 - Smart Contract Security #1 - https://eattheblocks-pro.teachable.com/p/live-training-3-smart-contract-security-1
5. https://eattheblocks-pro.teachable.com/p/live-training-create-your-own-token
Thanks in advance