Slide 1

Slide 1 text

JavaScript ! The Blockchain JS ! The Blockchain - @ianaya89 1

Slide 2

Slide 2 text

Nacho Anaya @ianaya89 • Full Stack Developer @BloqInc • Speaker • Embajador @Auth0 • Organizador @Vuenos_Aires JS ! The Blockchain - @ianaya89 2

Slide 3

Slide 3 text

❌ NO! • Experto Blockchain • Experto en Criptografia • Cryptocurrencies & ICO's JS ! The Blockchain - @ianaya89 3

Slide 4

Slide 4 text

!" JS ! The Blockchain - @ianaya89 4

Slide 5

Slide 5 text

JS ! The Blockchain - @ianaya89 5

Slide 6

Slide 6 text

JS ! The Blockchain - @ianaya89 6

Slide 7

Slide 7 text

! Teoría JS ! The Blockchain - @ianaya89 7

Slide 8

Slide 8 text

Blockchain != Cryptocurrency JS ! The Blockchain - @ianaya89 8

Slide 9

Slide 9 text

!⛓ Blockchain => Base de Datos Distribuida JS ! The Blockchain - @ianaya89 9

Slide 10

Slide 10 text

! Hash => Función Criptográfica Irreversible hash(' ! ') // d2d4e9ddd66e9ce4ee288aea24a345de hash(' " ') // 23622db6154ea91d793647c9bd990824 JS ! The Blockchain - @ianaya89 10

Slide 11

Slide 11 text

JS ! The Blockchain - @ianaya89 11

Slide 12

Slide 12 text

! Ventajas • 100% confiable • Publica, accesible y trackeable • Inmutable JS ! The Blockchain - @ianaya89 12

Slide 13

Slide 13 text

! Desventajas • Can%dad Recursos • !Ecofriendly JS ! The Blockchain - @ianaya89 13

Slide 14

Slide 14 text

Ethereum => Descentralizacion de Internet JS ! The Blockchain - @ianaya89 14

Slide 15

Slide 15 text

Ethereum != Ether JS ! The Blockchain - @ianaya89 15

Slide 16

Slide 16 text

! ↔ # ↔ P2P => Red de Pares JS ! The Blockchain - @ianaya89 16

Slide 17

Slide 17 text

! Nodos => Par de la red JS ! The Blockchain - @ianaya89 17

Slide 18

Slide 18 text

! Keys => Privada, Pública, Direcciones JS ! The Blockchain - @ianaya89 18

Slide 19

Slide 19 text

! Wallet => Almacén de Claves JS ! The Blockchain - @ianaya89 19

Slide 20

Slide 20 text

! EVM => Motor de Ethereum JS ! The Blockchain - @ianaya89 20

Slide 21

Slide 21 text

! PoW => Algoritmo de Consenso JS ! The Blockchain - @ianaya89 21

Slide 22

Slide 22 text

⛏ Mineros => Nodos Procesando Bloques JS ! The Blockchain - @ianaya89 22

Slide 23

Slide 23 text

! Ether => Crypto Moneda (ETH) JS ! The Blockchain - @ianaya89 23

Slide 24

Slide 24 text

! Gas => Costo de Procesamiento JS ! The Blockchain - @ianaya89 24

Slide 25

Slide 25 text

! Smart Contracts => So&ware / Aplicaciones pragma solidity ^0.4.21; contract HelloCoin { mapping (address => uint) public balance; function mint (address receiver, uint amount) public returns(uint) { balance[receiver] += amount; return balance[receiver]; } } JS ! The Blockchain - @ianaya89 25

Slide 26

Slide 26 text

! DApp => UI sobre Smart Contracts JS ! The Blockchain - @ianaya89 26

Slide 27

Slide 27 text

! Prác&ca JS ! The Blockchain - @ianaya89 27

Slide 28

Slide 28 text

! Cliente • geth • parity • ganache-cli JS ! The Blockchain - @ianaya89 28

Slide 29

Slide 29 text

! Network • Main • Test (Ropsten, Kovan, Rinkeby) • Privadas • Local JS ! The Blockchain - @ianaya89 29

Slide 30

Slide 30 text

! ganache-cli $ npm i -g ganache-cli $ ganache-cli github.com/trufflesuite/ganache-cli JS ! The Blockchain - @ianaya89 30

Slide 31

Slide 31 text

! Solidity => Lenguaje Smart Contracts remix.ethereum.org JS ! The Blockchain - @ianaya89 31

Slide 32

Slide 32 text

! Truffle => Development Framework $ npm i -g truffle $ truffle init $ truffle compile $ truffle migrate JS ! The Blockchain - @ianaya89 32

Slide 33

Slide 33 text

! Web3 => Libreria JS para Ethereum const Web3 = require('web3') const web3 = new Web3('http://localhost:8545') JS ! The Blockchain - @ianaya89 33

Slide 34

Slide 34 text

! Demo JS ! The Blockchain - @ianaya89 34

Slide 35

Slide 35 text

! Más! JS ! The Blockchain - @ianaya89 35

Slide 36

Slide 36 text

! MetaMask => Chrome App metamask.io JS ! The Blockchain - @ianaya89 36

Slide 37

Slide 37 text

! EthereumJS => Herramientas JS para Ethereum ethereumjs.github.io JS ! The Blockchain - @ianaya89 37

Slide 38

Slide 38 text

! Proyectos • cryptoKi*es.io • fishbank.io • ponzicoin.co • metronome.io • decentraland.org JS ! The Blockchain - @ianaya89 38

Slide 39

Slide 39 text

! Gracias! @ianaya89 bit.ly/js-meets-blockchain bit.ly/js-meets-blockchain-demo JS ! The Blockchain - @ianaya89 39