وب سایت تخصصی شرکت فرین
دسته بندی دوره ها
1

Build Marketplace Smart Contract and React.js Dapp for NEAR

سرفصل های دوره

Working with AssemblyScript for NEAR blockchain. Includes JavaScript and React dapp development.


1 - Project Previews
  • 1 - Build a marketplace smart contract for NEAR blockchain
  • 2 - Build a marketplace dapp on NEAR blockchain

  • 2 - 06b Prerequisite Command Line Fundamentals
  • 3 - 01 Why All Developers Need To Know The Command Line
  • 4 - 02 Install Linux Command Line On Windows
  • 5 - 03 What Are Linux And Unix Terminals
  • 6 - 01 Build Your First Command In The Command Line
  • 7 - 02 Navigate Directories In The Command Line
  • 8 - 03 Build And Edit A New File In The Command Line
  • 9 - 04 Move Files In The Command Line

  • 3 - 06c Prerequisite Install Node and npm
  • 10 - 00 What Is Node JS
  • 11 - 01 Install Node And NPM On Mac Or Windows
  • 12 - 02 How to Install Node and NPM on Windows

  • 4 - 06d Prerequisite Install yarn
  • 13 - 01 What is yarn
  • 14 - 02 Install yarn on Mac
  • 15 - 03 Install yarn on Windows

  • 5 - 06e Install project tools
  • 16 - 01 Install NEAR CLI and AssemblyScript build tools

  • 6 - 07 Set up NEAR dapp project
  • 17 - 01 Set up NEAR project
  • 18 - 02 Initialize yarn to install Near SDK

  • 7 - 08 Build a smart contract in AssemblyScript for dapp
  • 19 - 01 Build a smart contract in AssemblyScript for dapp
  • 20 - 02 Add new entry to map in AssemblyScript
  • 21 - 03 Get entry from map in AssemblyScript

  • 8 - 09 Compile and deploy contract to NEAR
  • 22 - 01 Build accounts on NEAR testnet
  • 23 - 02 Compile AssemblyScript smart contract
  • 24 - 03 Deploy AssemblyScript smart contract to NEAR
  • 25 - 04 Call functions from AssemblyScript contract on NEAR

  • 9 - 09a2 Prerequisite Introduction to HTML
  • 26 - 01 Course Requirements
  • 27 - 02 What Is Jsbin
  • 28 - 03 Setting Up The Html Document
  • 29 - 04 Header Tags And Paragraphs Tags
  • 30 - 05 Styles
  • 31 - 06 Bold Underline And Italic Tags
  • 32 - 07 Adding In A Link
  • 33 - 08 Adding In A Image
  • 34 - 09 Adding A Link To An Image
  • 35 - 10 Lists
  • 36 - 11 Tables
  • 37 - 12 Different Kinds Of Input
  • 38 - 13 Adding In A Submit Button

  • 10 - 09a3 Prerequisite Introduction to JavaScript
  • 39 - 01 Variables
  • 40 - 02 Javascript
  • 41 - 03 Numbers
  • 42 - 04 Booleans
  • 43 - 05 If Statements
  • 44 - 06 Arrays
  • 45 - 07 For Loops
  • 46 - 08 While Loops
  • 47 - 09 Objects
  • 48 - 10 Functions
  • 49 - 11 Foreach
  • 50 - 12 Map Functions
  • 51 - 13 Using Objects As Dictionary
  • 52 - 14 Switch Statements
  • 53 - 15 Destructuring
  • 54 - 16 Spread Operator
  • 55 - 17 String Templates
  • 56 - 18 Error Handling
  • 57 - 19 Let And Const Keywords
  • 58 - 20 DoWhile
  • 59 - 21 Sets
  • 60 - 22 Maps
  • 61 - 23 Stacks
  • 62 - 24 Queues
  • 63 - 25 For Loop
  • 64 - 26 Recursive Functions
  • 65 - 27 Loop Labeling
  • 66 - 28 2D Arrays
  • 67 - 29 Settimeout
  • 68 - 30 Sentimental
  • 69 - 31 Functions With Optional Parameters
  • 70 - 32 Basic Regular Expression
  • 71 - 33 Handle Keypress Events
  • 72 - 34 Priority Queue
  • 73 - 35 Adddelete Object Property
  • 74 - 36 Example With Sets Part 1
  • 75 - 36 Example With Sets Part 2
  • 76 - 37 Concat
  • 77 - 38 Flat And Flatmap

  • 11 - 09a4 Prerequisite Introduction to React
  • 78 - 00 Why You Should Learn React
  • 79 - 01 React Introduction
  • 80 - 02 Set up a Container
  • 81 - 03 Generate a List
  • 82 - 04 Add Items to the List
  • 83 - 05 Clear Input Field
  • 84 - 06 Remove a Task

  • 12 - 10 Connect a React Dapp with NEAR contract
  • 85 - 00 What is web3JS
  • 86 - 01 Set up React dapp for NEAR
  • 87 - 02 Define configuration for NEAR in React1
  • 88 - 03 Connect to NEAR keys and configuration in React
  • 89 - 04 Connect to NEAR wallet and contract in React
  • 90 - 05 Test connection to wallet and contract

  • 13 - 11 Interact with NEAR contract in dapp
  • 91 - 01 Handle sign in and sign out of wallet
  • 92 - 02 Call NEAR functions in dapp

  • 14 - 12 Show AssemblyScript contract contents in React
  • 93 - 01 Build user interface to establish the wallet connection
  • 94 - 02 Show state values from AssemblyScript contract in React

  • 15 - 13 Build a React frontend for AssemblyScript smart contract
  • 95 - 01 Connect to contract before rendering dapp
  • 96 - 02 Build a Course component

  • 16 - 14 Render all data from AssemblyScript contract in dapp
  • 97 - 01 Get all entries in AssemblyScript smart contract map
  • 98 - 02 Get all entries from AssemblyScript in React
  • 99 - 03 Render an AssemblyScript map in React DOM
  • 100 - 04 Build a Courses component to render all entries

  • 17 - 15 Connect to AssemblyScript add function in React component
  • 101 - 01 Build React component to add entry to AssemblyScript map
  • 102 - 02 Connect to add entry function in React component

  • 18 - 16 Expand smart contract for complex data
  • 103 - 01 Build model to represent course
  • 104 - 02 Update smart contract to use complex data model
  • 105 - 03 Update AssemblyScript smart contract on NEAR

  • 19 - 17 Update React dapp with AssemblyScript data model
  • 106 - 01 Update Courses component with complex data model
  • 107 - 02 Update adding course with complex data model

  • 20 - 18 Enable purchase from AssemblyScript contract in React
  • 108 - 01 Build AssemblyScript method for purchase
  • 109 - 02 Build NEAR customer account to test purchase
  • 110 - 03 Get more test NEAR token from faucet
  • 111 - 04 Fund testnet wallet with NEAR CLI

  • 21 - 19 Test purchase with NEAR smart contract
  • 112 - 01 Test purchase with NEAR smart contract
  • 113 - 02 Use a React component for each object
  • 114 - 03 Enable NEAR purchase in React dapp
  • 115 - 04 Send NEAR with purchase in React dapp

  • 22 - 20 Expand model with more properties
  • 116 - 01 Format each course in a Bootstrap card
  • 117 - 02 Add image to model in AssemblyScript smart contract
  • 118 - 03 Display image from AssemblyScript smart contract in React dapp
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    شناسه: 1267
    حجم: 5806 مگابایت
    مدت زمان: 839 دقیقه
    تاریخ انتشار: 26 دی 1401
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید