This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _____/\\\\\\\\\\\\_____/\\\\\\\\\________/\\\\\\\\\\\___ | |
| ___/\\\//////////____/\\\\\\\\\\\\\____/\\\/////////\\\_ | |
| __/\\\______________/\\\/////////\\\__\//\\\______\///__ | |
| _\/\\\____/\\\\\\\_\/\\\_______\/\\\___\////\\\_________ | |
| _\/\\\___\/////\\\_\/\\\\\\\\\\\\\\\______\////\\\______ | |
| _\/\\\_______\/\\\_\/\\\/////////\\\_________\////\\\___ | |
| _\/\\\_______\/\\\_\/\\\_______\/\\\__/\\\______\//\\\__ | |
| _\//\\\\\\\\\\\\/__\/\\\_______\/\\\_\///\\\\\\\\\\\/___ | |
| __\////////////____\///________\///____\///////////_____ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>QuikNode Explorer</title> | |
| <!-- Bootstrap --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | |
| <!-- Styles --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ➜ test-folder n | |
| installed : v10.5.0 (with npm 6.1.0) | |
| ➜ test-folder create-react-app -V | |
| 3.3.1 | |
| ➜ test-folder npm install --global create-react-app@3.3.1 | |
| npm WARN deprecated mkdirp@0.5.3: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.) | |
| /usr/local/bin/create-react-app -> /usr/local/lib/node_modules/create-react-app/index.js | |
| + create-react-app@3.3.1 | |
| updated 7 packages in 3.571s | |
| ➜ test-folder create-react-app blockchain-developer-bootcamp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.6.0; | |
| contract MyContract { | |
| uint[] public numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; | |
| address public owner; | |
| constructor() public { | |
| owner = msg.sender; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.6.0; | |
| contract MyContract { | |
| // Arrays | |
| uint[] public uintArray = [1,2,3]; | |
| string[] public stringArray = ['apple', 'banana', 'carrot']; | |
| string[] public values; | |
| uint[][] public array2D = [ [1,2,3], [4,5,6] ]; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.6.0; | |
| contract MyContract { | |
| // Arrays | |
| uint[] public uintArray = [1,2,3]; | |
| string[] public stringArray = ['apple', 'banana', 'carrot']; | |
| string[] public values; | |
| uint[][] public array2D = [ [1,2,3], [4,5,6] ]; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Order = () => { | |
| return ( | |
| <div className="component exchange__orders"> | |
| <div className='component__header flex-between'> | |
| <h2>New Order</h2> | |
| <div className='tabs'> | |
| <button className='tab tab--active'>Buy</button> | |
| <button className='tab'>Sell</button> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const options = { | |
| chart: { | |
| animations: { enabled: true }, | |
| toolbar: { show: false }, | |
| width: '100px' | |
| }, | |
| tooltip: { | |
| enabled: true, | |
| theme: false, | |
| style: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const OrderBook = () => { | |
| return ( | |
| <div className="component exchange__orderbook"> | |
| <div className='component__header flex-between'> | |
| <h2>Order Book</h2> | |
| </div> | |
| <div className="flex"> |
OlderNewer