January 2020
Intermediate to advanced
530 pages
11h 11m
English
Let's go through the sections of our App.js file one by one:
import React, { Component } from 'react';import Web3 from 'web3'import Nav from './Components/Nav';import Description from './Components/Description';import Container from './Components/Container';import OrderbookABI from './Contracts/OrderbookABI';import Gold from './Contracts/Gold';import USD from './Contracts/USD';
constructor(){ super(); this.appName = 'Exchange'; this.watchweb3 = new Web3(new Web3.providers.WebsocketProvider('ws://localhost:8545')) this.OrderbookABI = OrderbookABI; this.Gold = ...Read now
Unlock full access