没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
Building Games with Ethereum Smart Contracts Intermediate Projects for Solidity Developers 英文无水印原版pdf pdf所有页面使用FoxitReader、PDF-XChangeViewer、SumatraPDF和Firefox测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细信息请在美国亚马逊官网搜索此书
资源推荐
资源详情
资源评论
Building Games
with Ethereum
Smart Contracts
Intermediate Projects for Solidity
Developers
—
Kedar Iyer
Chris Dannen
Building Games with
Ethereum Smart
Contracts
Intermediate Projects for
Solidity Developers
Kedar Iyer
Chris Dannen
Building Games with Ethereum Smart Contracts
ISBN-13 (pbk): 978-1-4842-3491-4 ISBN-13 (electronic): 978-1-4842-3492-1
https://doi.org/10.1007/978-1-4842-3492-1
Library of Congress Control Number: 2018943122
Copyright © 2018 by Kedar Iyer and Chris Dannen
is work is subject to copyright. All rights are reserved by the Publisher, whether the whole or
part of the material is concerned, specically the rights of translation, reprinting, reuse of
illustrations, recitation, broadcasting, reproduction on microlms or in any other physical way,
and transmission or information storage and retrieval, electronic adaptation, computer software,
or by similar or dissimilar methodology now known or hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark
symbol with every occurrence of a trademarked name, logo, or image, we use the names, logos,
and images only in an editorial fashion and to the benet of the trademark owner, with no
intention of infringement of the trademark.
e use in this publication of trade names, trademarks, service marks, and similar terms, even if
they are not identied as such, is not to be taken as an expression of opinion as to whether or not
they are subject to proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of
publication, neither the authors nor the editors nor the publisher can accept any legal
responsibility for any errors or omissions that may be made. e publisher makes no warranty,
express or implied, with respect to the material contained herein.
Managing Director, Apress LLC: Welmoed Spahr
Acquisitions Editor: Louise Corrigan
Development Editor: James Markham
Coordinating Editor: Nancy Chen
Cover designed by eStudioCalamar
Cover image designed by Freepik (www.freepik.com)
Distributed to the book trade worldwide by Springer Science+Business Media NewYork,
233 Spring Street, 6th Floor, NewYork, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505,
e-mail orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a
California LLC, and the sole member (owner) is Springer Science + Business Media Finance Inc
(SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation.
For information on translations, please e-mail rights@apress.com, or visit www.apress.com/
rights-permissions.
Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook
versions and licenses are also available for most titles. For more information, reference our Print
and eBook Bulk Sales web page at www.apress.com/bulk-sales.
Any source code or other supplementary material referenced by the author in this book is available
to readers on GitHub via the book’s product page, located at www.apress.com/9781484234914.
For more detailed information, please visit www.apress.com/source-code.
Printed on acid-free paper
KedarIyer
Brooklyn, New York, USA
ChrisDannen
Brooklyn, New York, USA
iii
About the Authors �������������������������������������������������������������������������������� ix
About the Technical Reviewer �������������������������������������������������������������xi
Acknowledgments �����������������������������������������������������������������������������xiii
What Is Ethereum? �����������������������������������������������������������������������������xv
Table of Contents
Chapter 1: Conceptual Introduction ������������������������������������������������������1
Blocks �������������������������������������������������������������������������������������������������������������������1
Mining �������������������������������������������������������������������������������������������������������������������2
Transactions ����������������������������������������������������������������������������������������������������������3
Ethereum Virtual Machine (EVM) ���������������������������������������������������������������������������3
State Tree ��������������������������������������������������������������������������������������������������������������5
Web3 Explained ����������������������������������������������������������������������������������������������������6
What’s New withEthereum �����������������������������������������������������������������������������������7
Bitcoin vs� Ethereum ���������������������������������������������������������������������������������������������8
Addresses andKeypairs ����������������������������������������������������������������������������������������9
Contracts andExternal Accounts ������������������������������������������������������������������������10
Programs inEthereum ����������������������������������������������������������������������������������������10
Digging into Solidity �������������������������������������������������������������������������������������������� 11
Staying Hack-Free ����������������������������������������������������������������������������������������������12
Block Explorers ���������������������������������������������������������������������������������������������������13
iv
Useful Smart Contracts ���������������������������������������������������������������������������������������14
Pros andCons ofEthereum Gaming �������������������������������������������������������������������14
People toFollow ��������������������������������������������������������������������������������������������������15
Summary�������������������������������������������������������������������������������������������������������������17
Chapter 2: The Ethereum Development Environment �������������������������19
Getting Set Up �����������������������������������������������������������������������������������������������������19
Hardware Choices �����������������������������������������������������������������������������������������20
Operating System ������������������������������������������������������������������������������������������21
Programmer’s Toolkit �������������������������������������������������������������������������������������23
Ethereum Clients �������������������������������������������������������������������������������������������26
Deployment ���������������������������������������������������������������������������������������������������28
Basic Geth Commands ����������������������������������������������������������������������������������29
Connecting totheBlockchain �����������������������������������������������������������������������������33
Network Synchronization ������������������������������������������������������������������������������34
Faucets ���������������������������������������������������������������������������������������������������������� 36
Summary�������������������������������������������������������������������������������������������������������������36
Chapter 3: First Steps withEthereum �������������������������������������������������37
Project 3-1: Creating Transactions ����������������������������������������������������������������������37
Generating Wallets�����������������������������������������������������������������������������������������37
Obtaining Ether ����������������������������������������������������������������������������������������������38
Sending Fake Ether withtheGeth Command Line ����������������������������������������40
Project 3-2: Deployment 101 ������������������������������������������������������������������������������44
Hello World Contract �������������������������������������������������������������������������������������� 44
Manual Deployment ���������������������������������������������������������������������������������������46
Deploying withTrufe ������������������������������������������������������������������������������������49
Summary�������������������������������������������������������������������������������������������������������������56
Table of ConTenTsTable of ConTenTs
剩余280页未读,继续阅读
资源评论
yinkaisheng-nj
- 粉丝: 763
- 资源: 6231
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 几何物体检测43-YOLO(v5至v9)、COCO、CreateML、Paligemma、TFRecord、VOC数据集合集.rar
- 基于cruise的燃料电池功率跟随仿真,按照丰田氢能源车型搭建,在wltc工况下跟随效果好,最高车速175,最大爬坡30,百公里9s均已实现 1.模型通过cruise simulink联合仿真,策略
- C#源码 上位机 联合Visionpro 通用框架开发源码,已应用于多个项目,整套设备程序,可以根据需求编出来,具体Vpp功能自己编 程序包含功能 1.自动设置界面窗体个数及分布 2.照方式以命令触
- 程序名称:悬架设计计算程序 开发平台:基于matlab平台 计算内容:悬架偏频刚度挠度;螺旋弹簧,多片簧,少片簧,稳定杆,减震器的匹配计算;悬架垂向纵向侧向力学、纵倾、侧倾校核等;独立悬架杠杆比,等效
- 华为OD+真题及解析+智能驾驶
- jQuery信息提示插件
- 基于stm32的通信系统,sim800c与服务器通信,无线通信监测,远程定位,服务器通信系统,gps,sim800c,心率,温度,stm32 由STM32F103ZET6单片机核心板电路、DS18B2
- 充电器检测9-YOLO(v5至v11)、COCO、Create充电器检测9L、Paligemma、TFRecord、VOC数据集合集.rar
- 华为OD+考试真题+实现过程
- 保险箱检测51-YOLO(v5至v11)、COCO、CreateML、Paligemma、TFRecord、VOC数据集合集.rar
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功