mirror of
https://github.com/bigchaindb/site.git
synced 2025-02-14 21:10:28 +01:00
remove IPDB references
This commit is contained in:
parent
040feae22d
commit
af557a1d30
@ -6,14 +6,14 @@ Start by installing the official [BigchainDB JavaScript driver](https://github.c
|
|||||||
npm i bigchaindb-driver
|
npm i bigchaindb-driver
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, include that as a module and connect to IPDB or any BigchainDB node. In the case of IPDB, create your own `app_id` and `app_key` on [IPDB](https://ipdb.io/#getstarted).
|
Then, include that as a module and connect to any BigchainDB node. You can create your own `app_id` and `app_key` on [BigchainDB Testnet](https://testnet.bigchaindb.com).
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const BigchainDB = require('bigchaindb-driver')
|
const BigchainDB = require('bigchaindb-driver')
|
||||||
|
|
||||||
const API_PATH = 'https://test.ipdb.io/api/v1/'
|
const API_PATH = 'https://test.bigchaindb.com/api/v1/'
|
||||||
const conn = new BigchainDB.Connection(API_PATH, {
|
const conn = new BigchainDB.Connection(API_PATH, {
|
||||||
app_id: 'Get one from developers.ipdb.io',
|
app_id: 'Get one from testnet.bigchaindb.com',
|
||||||
app_key: 'Get one from developers.ipdb.io'
|
app_key: 'Get one from testnet.bigchaindb.com'
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
@ -14,7 +14,7 @@ learn: >
|
|||||||
- How asset metadata is updated by using `TRANSFER` transactions to change the state of an asset (the mileage of a car in our example)
|
- How asset metadata is updated by using `TRANSFER` transactions to change the state of an asset (the mileage of a car in our example)
|
||||||
---
|
---
|
||||||
|
|
||||||
Hi there! Welcome to our next 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 with [Key concepts of BigchainDB](../key-concepts-of-bigchaindb/). We also assume that you have completed our [first tutorial](../tutorial-car-telemetry-app/).
|
Hi there! Welcome to our next 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 with [Key concepts of BigchainDB](../key-concepts-of-bigchaindb/).
|
||||||
|
|
||||||
# About digital twins
|
# About digital twins
|
||||||
|
|
||||||
@ -49,8 +49,8 @@ class DID extends Orm {
|
|||||||
constructor(entity) {
|
constructor(entity) {
|
||||||
super(
|
super(
|
||||||
API_PATH, {
|
API_PATH, {
|
||||||
app_id: 'Get one from developers.ipdb.io',
|
app_id: 'Get one from testnet.bigchaindb.com',
|
||||||
app_key: 'Get one from developers.ipdb.io'
|
app_key: 'Get one from testnet.bigchaindb.com'
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
this.entity = entity
|
this.entity = entity
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
layout: page
|
layout: page
|
||||||
|
|
||||||
title: The Hitchhiker Guides to BigchainDB
|
title: The Hitchhiker Guides to BigchainDB
|
||||||
tagline: "These guides explain you how to get started and build apps with BigchainDB/IPDB"
|
tagline: "These guides explain you how to get started and build apps with BigchainDB"
|
||||||
image: share-image-guides.png
|
image: share-image-guides.png
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user