copy and API url change

This commit is contained in:
Matthias Kretschmann 2017-12-18 20:12:21 +01:00
parent 69e386c72a
commit 99dec98b62
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 5 additions and 5 deletions

View File

@ -3,9 +3,9 @@
# The Basics
# --------------------
name: BigchainDB
description: 'The scalable blockchain database powering IPDB.'
description: 'The scalable blockchain database.'
url: https://www.bigchaindb.com
ipdb_api_url: https://test.ipdb.io
ipdb_api_url: https://test.bigchaindb.com
# set to `true` to make hiring link appear in main menu
hiring: false

View File

@ -22,7 +22,7 @@ server:
description: "Roll out your own BigchainDB network, or let us take care of this for you."
ipdb:
pretitle: "Managed"
title: "The BigchainDB Network"
title: "The BigchainDB Test Network"
description: "No installation needed. Sign up and connect instantly, we will handle running a BigchainDB network for you."
button: "Sign up"
link: "https://testnet.bigchaindb.com"

View File

@ -90,7 +90,7 @@ from bigchaindb_driver.crypto import generate_keypair
bdb = BigchainDB(
'{{ site.ipdb_api_url }}',
headers={'app_id': 'Get credentials from developers.ipdb.io',
headers={'app_id': 'Get credentials from testnet.bigchaindb.com',
'app_key': 'by signing up and going to your Applications screen'})
alice = generate_keypair()
tx = bdb.transactions.prepare(
@ -114,7 +114,7 @@ const driver = require('bigchaindb-driver')
const alice = new driver.Ed25519Keypair()
const conn = new driver.Connection(
'{{ site.ipdb_api_url }}/api/v1/',
{ app_id: 'Get credentials from developers.ipdb.io',
{ app_id: 'Get credentials from testnet.bigchaindb.com',
app_key: 'by signing up and going to your Applications screen' })
const tx = driver.Transaction.makeCreateTransaction(
{ message: 'Blockchain all the things!' },