mirror of
https://github.com/bigchaindb/site.git
synced 2025-02-14 21:10:28 +01:00
ipdb url as config value
This commit is contained in:
parent
204ed29442
commit
c1bf73622a
@ -5,6 +5,7 @@
|
|||||||
name: BigchainDB
|
name: BigchainDB
|
||||||
description: 'The scalable blockchain database.'
|
description: 'The scalable blockchain database.'
|
||||||
url: https://www.bigchaindb.com
|
url: https://www.bigchaindb.com
|
||||||
|
ipdb_api_url: https://test.ipdb.io
|
||||||
|
|
||||||
email:
|
email:
|
||||||
contact: contact@bigchaindb.com
|
contact: contact@bigchaindb.com
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
//=include bigchain/smoothscroll.js
|
//=include bigchain/smoothscroll.js
|
||||||
//=include bigchain/newsletter.js
|
//=include bigchain/newsletter.js
|
||||||
|
|
||||||
|
const ipdbUrl = 'https://test.ipdb.io'
|
||||||
|
|
||||||
jQuery(function($) {
|
jQuery(function($) {
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -123,7 +125,7 @@ window.addEventListener('DOMContentLoaded', function domload(event) {
|
|||||||
const outputContent = JSON.stringify(response, null, 2) // indented with 2 spaces
|
const outputContent = JSON.stringify(response, null, 2) // indented with 2 spaces
|
||||||
output.textContent = outputContent
|
output.textContent = outputContent
|
||||||
|
|
||||||
transactionLink.href = 'https://test.ipdb.io/api/v1/transactions/' + response.id
|
transactionLink.href = ipdbUrl + '/api/v1/transactions/' + response.id
|
||||||
|
|
||||||
postButton.classList.add('disabled')
|
postButton.classList.add('disabled')
|
||||||
postButton.style.opacity = 0
|
postButton.style.opacity = 0
|
||||||
|
@ -60,7 +60,7 @@ redirect_from:
|
|||||||
|
|
||||||
<div class="message message--success alert alert--success hide">
|
<div class="message message--success alert alert--success hide">
|
||||||
<p>{{ content.firsttransaction.message.response }}</p>
|
<p>{{ content.firsttransaction.message.response }}</p>
|
||||||
<p><a class="transaction-link" href="https://test.ipdb.io/api/v1/transactions/">Check out your transaction on IPDB</a></p>
|
<p><a class="transaction-link" href="{{ site.ipdb_api_url }}/api/v1/transactions/">Check out your transaction on IPDB</a></p>
|
||||||
</div>
|
</div>
|
||||||
<p class="message message--fail alert alert--warning hide">Shenanigans! Something's off. Would you mind trying again?</p>
|
<p class="message message--fail alert alert--warning hide">Shenanigans! Something's off. Would you mind trying again?</p>
|
||||||
</div>
|
</div>
|
||||||
@ -88,7 +88,7 @@ from bigchaindb_driver.crypto import generate_keypair
|
|||||||
|
|
||||||
|
|
||||||
bdb = BigchainDB(
|
bdb = BigchainDB(
|
||||||
'https://test.ipdb.io/api/v1/',
|
'{{ site.ipdb_api_url }}/api/v1/',
|
||||||
headers={'app_id': 'Get one from developers.ipdb.io',
|
headers={'app_id': 'Get one from developers.ipdb.io',
|
||||||
'app_key': 'Same as app_id'})
|
'app_key': 'Same as app_id'})
|
||||||
alice = generate_keypair()
|
alice = generate_keypair()
|
||||||
@ -112,7 +112,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(
|
||||||
'https://test.ipdb.io/api/v1/',
|
'{{ site.ipdb_api_url }}/api/v1/',
|
||||||
{ app_id: 'Get one from developers.ipdb.io',
|
{ app_id: 'Get one from developers.ipdb.io',
|
||||||
app_key: 'Same as app_id' })
|
app_key: 'Same as app_id' })
|
||||||
const tx = driver.Transaction.makeCreateTransaction(
|
const tx = driver.Transaction.makeCreateTransaction(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user