mirror of
https://github.com/bigchaindb/site.git
synced 2025-02-14 21:10:28 +01:00
copy and API url change
This commit is contained in:
parent
69e386c72a
commit
99dec98b62
@ -3,9 +3,9 @@
|
|||||||
# The Basics
|
# The Basics
|
||||||
# --------------------
|
# --------------------
|
||||||
name: BigchainDB
|
name: BigchainDB
|
||||||
description: 'The scalable blockchain database powering IPDB.'
|
description: 'The scalable blockchain database.'
|
||||||
url: https://www.bigchaindb.com
|
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
|
# set to `true` to make hiring link appear in main menu
|
||||||
hiring: false
|
hiring: false
|
||||||
|
@ -22,7 +22,7 @@ server:
|
|||||||
description: "Roll out your own BigchainDB network, or let us take care of this for you."
|
description: "Roll out your own BigchainDB network, or let us take care of this for you."
|
||||||
ipdb:
|
ipdb:
|
||||||
pretitle: "Managed"
|
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."
|
description: "No installation needed. Sign up and connect instantly, we will handle running a BigchainDB network for you."
|
||||||
button: "Sign up"
|
button: "Sign up"
|
||||||
link: "https://testnet.bigchaindb.com"
|
link: "https://testnet.bigchaindb.com"
|
||||||
|
@ -90,7 +90,7 @@ from bigchaindb_driver.crypto import generate_keypair
|
|||||||
|
|
||||||
bdb = BigchainDB(
|
bdb = BigchainDB(
|
||||||
'{{ site.ipdb_api_url }}',
|
'{{ 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'})
|
'app_key': 'by signing up and going to your Applications screen'})
|
||||||
alice = generate_keypair()
|
alice = generate_keypair()
|
||||||
tx = bdb.transactions.prepare(
|
tx = bdb.transactions.prepare(
|
||||||
@ -114,7 +114,7 @@ const driver = require('bigchaindb-driver')
|
|||||||
const alice = new driver.Ed25519Keypair()
|
const alice = new driver.Ed25519Keypair()
|
||||||
const conn = new driver.Connection(
|
const conn = new driver.Connection(
|
||||||
'{{ site.ipdb_api_url }}/api/v1/',
|
'{{ 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' })
|
app_key: 'by signing up and going to your Applications screen' })
|
||||||
const tx = driver.Transaction.makeCreateTransaction(
|
const tx = driver.Transaction.makeCreateTransaction(
|
||||||
{ message: 'Blockchain all the things!' },
|
{ message: 'Blockchain all the things!' },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user