diff --git a/_config.yml b/_config.yml index d58a8bf..3557c17 100644 --- a/_config.yml +++ b/_config.yml @@ -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 diff --git a/_src/_data/getstarted.yml b/_src/_data/getstarted.yml index 5a14636..a0c451e 100644 --- a/_src/_data/getstarted.yml +++ b/_src/_data/getstarted.yml @@ -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" diff --git a/_src/getstarted.html b/_src/getstarted.html index a70601b..e9057d8 100644 --- a/_src/getstarted.html +++ b/_src/getstarted.html @@ -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!' },