Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Blockchain By Example

You're reading from   Blockchain By Example A developer's guide to creating decentralized applications using Bitcoin, Ethereum, and Hyperledger

Arrow left icon
Product type Paperback
Published in Nov 2018
Publisher Packt
ISBN-13 9781788475686
Length 528 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Authors (3):
Arrow left icon
Xun (Brian) Wu Xun (Brian) Wu
Author Profile Icon Xun (Brian) Wu
Xun (Brian) Wu
Bellaj Badr Bellaj Badr
Author Profile Icon Bellaj Badr
Bellaj Badr
Richard Horrocks Richard Horrocks
Author Profile Icon Richard Horrocks
Richard Horrocks
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. Say Hello to Blockchain FREE CHAPTER 2. Building a Bitcoin Payment System 3. Building Your Own Cryptocurrency 4. Peer-to-Peer Auctions in Ethereum 5. Tontine Game with Truffle and Drizzle 6. Blockchain-Based Futures System 7. Blockchains in Business 8. Creating an ICO 9. Distributed Storage IPFS and Swarm 10. Supply Chain on Hyperledger 11. Letter of Credit (LC) Hyperledger 12. Other Books You May Enjoy

Futures smart contract

As usual, we kick off the chapter by writing the smart contract code. First, create a directory called FuturesWeb3j (in your home folder) and initiate an empty Truffle project using truffle init.

Afterward, in the contracts/ folder, create a Futures.sol file with the following code:

contract CFutures {   
address user;
address hedger;
address speculator;
struct asset{
uint id;
uint Quantity;
uint price;
address seller;
address buyer;
uint date;
}
asset TradedAsset;

event DepositEv(uint amount, address sender);

function CFutures(
uint assetID,
uint Quantity,
uint price,
address buyer,
address seller,
uint date) public {
TradedAsset.id = assetID;
TradedAsset.Quantity = Quantity;
TradedAsset.price = price;
TradedAsset...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime