1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-22 17:50:07 +01:00
site/_src/_guides/tutorial-car-telemetry-app.md

198 lines
10 KiB
Markdown
Raw Normal View History

2017-11-17 11:23:28 +01:00
---
layout: guide
title: "Tutorial: How to create a digital twin of your car"
tagline: Learn how to build a telemetry app to track specific dynamic parameters of an asset, such as the mileage of a car.
2017-11-17 16:45:20 +01:00
header: header-car.jpg
2017-11-20 11:04:08 +01:00
learn: >
- How BigchainDB can be used to build telemetry apps to track specific dynamic parameters of an asset
- How assets can be used to represent real objects on BigchainDB
2017-11-17 11:23:28 +01:00
- How to make a `CREATE` transaction to digitally register an object on BigchainDB
- How asset metadata is updated by using `TRANSFER` transactions to change the state of an asset (the mileage of a car in our example)
2017-11-20 11:04:08 +01:00
---
Hi there! Welcome to our first tutorial! For this tutorial, we assume that you are familiar with the BigchainDB primitives (assets, inputs, outputs, transactions etc.). If you are not, familiarize yourself here (insert link of key concepts).
# About digital twins
We are moving towards an era, where the internet of things is becoming real. Cars become more connected, devices equipped with sensors can communicate their data and objects become smarter and smarter. This triggers the need for a digital representation of these devices to store their data in a safe location and to have a complete audit trail of their activity. This is the core idea of the digital twin of an object. BigchainDB is an ideal solution to create digital twins of smart devices. In this tutorial, you will learn how to build a simple and basic version of a digital twin of your car, which allows its owner to store and update the mileage of the car.
Let's get started!
2017-11-17 11:23:28 +01:00
2017-11-20 13:19:16 +01:00
# Setup
Start by installing the official [BigchainDB JavaScript driver](https://github.com/bigchaindb/js-bigchaindb-driver):
```bash
npm i bigchaindb-driver
```
Then, include that as a module and connect to IPDB or any BigchainDB node. Use the credentials below or create your own app_id and app_key (learn here how to do that: https://ipdb.io/#getstarted).
2017-11-17 11:23:28 +01:00
```js
2017-11-20 13:19:16 +01:00
const BigchainDB = require('bigchaindb-driver')
2017-11-17 11:23:28 +01:00
const API_PATH = 'https://test.ipdb.io/api/v1/'
const conn = new BigchainDB.Connection(API_PATH, {
app_id: '2db4355b',
app_key: 'b106b7e24cc2306a00906da90de4a960'
})
```
# Create a key pair
2017-11-17 12:30:23 +01:00
In BigchainDB, users are represented as a private and public key pair. In our case, a key pair for Alice will be created. Alice will be the owner of the car, and she will be the only one able to create this specific asset and update the mileage of the car.
2017-11-17 12:30:23 +01:00
You can generate a key pair from a seed phrase, so you will just need to remember this particular seed phrase. The code below illustrates that.
2017-11-17 11:23:28 +01:00
```js
const alice = new BigchainDB.Ed25519Keypair(bip39.mnemonicToSeed('seedPhrase').slice(0,32))
```
# Digital registration of an asset on BigchainDB
2017-11-17 11:23:28 +01:00
After having generated a key pair, you now need to register your car in BigchainDB. This corresponds to an asset registration. In our case, an asset will represent an object in real life, namely a car. This asset will live inside BigchainDB forever and there is no possibility to delete it.
2017-11-17 11:23:28 +01:00
First, you need to define the asset field that represents the car. It has a JSON format:
2017-11-17 11:23:28 +01:00
```js
const vehicle = {
2017-11-17 11:23:28 +01:00
value: '6sd8f68sd67',
power: {
engine: '2.5',
cv: '220 cv',
}
consumption: '10.8 l',
}
```
As a next step, you need to generate a `CREATE´ transaction to link the defined asset to the user alice. To post this transaction in BigchainDB, first you need to create it, then sign it and then send it. There are different methods for each step:
2017-11-17 11:23:28 +01:00
```js
function createCar() {
// Construct a transaction payload
const txCreate = BigchainDB.Transaction.makeCreateTransaction(
{
vehicle_number: vehicle.value,
power: vehicle.power,
consumption: vehicle.consumption,
datetime: new Date().toString()
},
// Metadata contains information about the transaction itself
// (can be `null` if not needed)
2017-11-17 11:23:28 +01:00
{
mileage: 0
},
// Output
[BigchainDB.Transaction.makeOutput(
BigchainDB.Transaction.makeEd25519Condition(carOwner.publicKey))],
carOwner.publicKey
)
// Sign the transaction with private keys of the owner of the car
const txSigned = BigchainDB.Transaction.signTransaction(txCreate, carOwner.privateKey)
// Send the transaction off to BigchainDB
conn.postTransaction(txSigned)
.then(() => conn.pollStatusAndFetchTransaction(txSigned.id))
.then(res => {
console.log('Created Transaction', txSigned)
})
}
```
Now, you have digitally registered the car on BigchainDB, respectively in our case on IPDB. Note that the metadata field is used to record the mileage, which is currently set to 0.
2017-11-17 11:23:28 +01:00
With the `pollStatusAndFetchTransaction` we check the status of the transaction every 0.5 seconds.
2017-11-17 11:23:28 +01:00
Once a transaction ends up in a decided-valid block, it "edged into stone". There's no changing it, no deleting it. The asset is registered now and cannot be deleted. However, the usage of the metadata field allows you to do updates in the asset. For this, you can use `TRANSFER` transactions (with their arbitrary metadata) to store any type of information, including information that could be interpreted as changing an asset (if that's how you want it to be interpreted).
2017-11-17 11:23:28 +01:00
We will use this feature to update the mileage of the car. Note that by using `carOwner.publicKey` in the output of our create transaction, you have established that Alice will be the only person, who will be able to do an update, respectively a `TRANSFER´ transaction for this asset, since the usage of this output as an input in a separate transaction will require a signature with Alices private key.
2017-11-17 12:30:23 +01:00
# Update of an asset on BigchainDB
Since an update of the mileage of a car does not imply any change in the ownership, your transfer transaction will simply be a transfer transaction with the previous owner (Alice) as beneficiary, but with new metadata in the transaction. So, technically, Alice is transferring the car to herself and just adding additional, new information to that transaction.
Before creating the transfer transaction, you need to search for the last transaction with the asset id, as you will update this specific last transaction:
2017-11-17 11:23:28 +01:00
```js
conn.listTransactions(assetId)
.then((txList) => {
if (txList.length <= 1) {
return txList
}
const inputTransactions = []
txList.forEach((tx) =>
tx.inputs.forEach(input => {
// Create transactions have null fulfills by definition
if (input.fulfills) {
inputTransactions.push(input.fulfills.transaction_id)
}
})
)
// In our case there should be just one input that has not beeen spent with the assetId
return unspents = txList.filter((tx) => inputTransactions.indexOf(tx.id) === -1)
})
2017-11-17 11:23:28 +01:00
```
2017-11-17 12:30:23 +01:00
The `listTransactions` method of BigchainDB retrieves all of the create and transfer transactions with a specific asset id. Then, we check for the inputs that have not been spent yet. This indicates us, which was the last transaction. In this tutorial, we are just working with one input and one ouput for each transaction, so there should be just one input that has not been spent yet, namely the one belonging to the last transaction.
2017-11-17 12:30:23 +01:00
Based on that, we can now create the transfer transaction:
2017-11-17 11:23:28 +01:00
```js
function updateMileage(assetId, mileageValue) {
// Update the car with a new mileageValue of e.g. 55km. First, we query for the asset car that we created
2017-11-17 11:23:28 +01:00
conn.listTransactions(assetId)
.then((txList) => {
if (txList.length <= 1) {
return txList
}
const inputTransactions = []
txList.forEach((tx) =>
tx.inputs.forEach(input => {
if (input.fulfills) {
inputTransactions.push(input.fulfills.transaction_id)
}
})
)
// In our case there should be just one input not spend with the assetId
return unspents = txList.filter((tx) => inputTransactions.indexOf(tx.id) === -1)
})
2017-11-17 11:23:28 +01:00
.then((tx) => {
conn.getTransaction(tx[0].id)
.then((txCreated) => {
console.log('Found', txCreated)
const createTranfer = BigchainDB.Transaction.makeTransferTransaction(
txCreated,
{
mileage: txCreated.metadata.mileage + mileageValue,
units: 'km'
}, [BigchainDB.Transaction.makeOutput(
BigchainDB.Transaction.makeEd25519Condition(carOwner.publicKey))],
0
)
// Sign with the owner of the car as she was the creator of the car
const signedTransfer = BigchainDB.Transaction.signTransaction(createTranfer, carOwner.privateKey)
console.log('signed Transfer trans', signedTransfer)
conn.postTransaction(signedTransfer)
.then(() => conn.pollStatusAndFetchTransaction(signedTransfer.id))
.then(res => {
2017-11-20 10:44:58 +01:00
console.log('Transfer Transaction ', signedTransfer.id, 'accepted','with ', mileageValue, 'km',)
})
})
})
2017-11-17 11:23:28 +01:00
}
```
Once you have the last transaction, you create the transfer transaction with the new metadata value of e.g. 55 km.
Note again that in the output of this transfer transaction we have `carOwner.publicKey´. This shows that Alice is not transferring the ownership of the car to anybody else, because she is still the only person who can use that output as an input in another transaction. Furthermore, the input being spent is 0, as there is just one input.
So, finally you sign the transaction and send it to BigchainDB. You have now updated your asset and it is now recorded that your car has driven a distance of 55 km.
That's it, we have created a car asset, and every time the car travels new kilometers the `updateMileage` will be called with the new value of it, which leads to a continuous update in the car mileage.
Congratulations! You have successfully finished your first BigchainDB tutorial.
2017-11-17 11:23:28 +01:00