mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 09:46:57 +01:00
parent
733b36a45f
commit
b88dcf7c80
@ -7,10 +7,13 @@
|
||||
.section--firsttransaction {
|
||||
.section-title {
|
||||
font-size: $font-size-h3;
|
||||
margin-top: -($spacer * 2);
|
||||
margin-bottom: $spacer * 3;
|
||||
text-align: left;
|
||||
|
||||
@media ($screen-sm) {
|
||||
margin-top: -($spacer * 2);
|
||||
}
|
||||
|
||||
&:after {
|
||||
display: none;
|
||||
}
|
||||
@ -25,7 +28,10 @@
|
||||
// mnml frm
|
||||
background: none;
|
||||
padding: 0;
|
||||
min-height: 340px;
|
||||
|
||||
@media ($screen-sm) {
|
||||
min-height: 340px;
|
||||
}
|
||||
|
||||
.form-group:first-child {
|
||||
margin-top: 0;
|
||||
@ -42,7 +48,7 @@
|
||||
width: 100%;
|
||||
|
||||
pre {
|
||||
min-height: 340px;
|
||||
min-height: 200px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@ -51,14 +57,21 @@
|
||||
border: 1px solid $gray-dark;
|
||||
background: none;
|
||||
overflow-x: hidden;
|
||||
|
||||
@media ($screen-sm) {
|
||||
min-height: 340px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.response {
|
||||
pre {
|
||||
min-height: 340px;
|
||||
border: 1px solid $gray-dark;
|
||||
line-height: 1.3;
|
||||
|
||||
@media ($screen-sm) {
|
||||
min-height: 340px;
|
||||
}
|
||||
}
|
||||
|
||||
code {
|
||||
@ -72,6 +85,12 @@
|
||||
|
||||
.code-example {
|
||||
@include transition;
|
||||
margin-top: $spacer * 2;
|
||||
|
||||
@media ($screen-sm) {
|
||||
max-width: 50%;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.nav-link,
|
||||
pre {
|
||||
@ -205,7 +224,11 @@
|
||||
// Drivers starbase
|
||||
// All magic numbers, gonna wing it visually
|
||||
.starbase--drivers {
|
||||
min-height: 12rem;
|
||||
min-height: 7rem;
|
||||
|
||||
@media ($screen-md) {
|
||||
min-height: 12rem;
|
||||
}
|
||||
|
||||
.starbase__image {
|
||||
// surface layer
|
||||
|
@ -3,8 +3,13 @@
|
||||
}
|
||||
|
||||
.header__content {
|
||||
padding: ($spacer * 4) 0;
|
||||
padding: ($spacer * 3) 0;
|
||||
text-align: center;
|
||||
|
||||
@media ($screen-sm) {
|
||||
padding-top: ($spacer * 4);
|
||||
padding-bottom: ($spacer * 4);
|
||||
}
|
||||
}
|
||||
|
||||
// intro animation
|
||||
|
@ -37,75 +37,6 @@ redirect_from:
|
||||
|
||||
</form>
|
||||
|
||||
<aside class="code-example">
|
||||
<ul class="nav nav-tabs">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" href="#curl" data-toggle="tab" role="tab">cURL</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#python" data-toggle="tab" role="tab">Python</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#nodejs" data-toggle="tab" role="tab">Node.js</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div class="tab-content">
|
||||
|
||||
<div class="tab-pane active" id="curl" role="tabpanel">
|
||||
{% capture curl %}
|
||||
```bash
|
||||
curl -X "POST" "https://test.ipdb.io/api/v1/transactions/" \
|
||||
-d $'{ message: "Blockchain all the things!" }'
|
||||
```
|
||||
{% endcapture %}{{ curl | markdownify }}
|
||||
</div>
|
||||
|
||||
<div class="tab-pane highlight" id="python" role="tabpanel">
|
||||
{% capture python %}
|
||||
```python
|
||||
from bigchaindb_driver import BigchainDB
|
||||
from bigchaindb_driver.crypto import generate_keypair
|
||||
|
||||
bdb = BigchainDB('https://test.ipdb.io/api/v1/')
|
||||
|
||||
alice = generate_keypair()
|
||||
|
||||
tx = bdb.transactions.prepare(
|
||||
metadata={ "message": "Blockchain all the things!" }
|
||||
)
|
||||
|
||||
txSigned = bdb.transactions.fulfill(
|
||||
tx,
|
||||
private_keys=alice.private_key
|
||||
)
|
||||
|
||||
bdb.transactions.send(txSigned)
|
||||
```
|
||||
{% endcapture %}{{ python | markdownify }}
|
||||
</div>
|
||||
|
||||
<div class="tab-pane highlight" id="nodejs" role="tabpanel">
|
||||
{% capture nodejs %}
|
||||
```js
|
||||
const driver = require('bigchaindb-driver')
|
||||
const conn = new driver.Connection('https://test.ipdb.io/api/v1/')
|
||||
const alice = new driver.Ed25519Keypair()
|
||||
|
||||
const tx = driver.Transaction.makeCreateTransaction(
|
||||
{ message: "Blockchain all the things!" }
|
||||
)
|
||||
|
||||
const txSigned = driver.Transaction.signTransaction(tx, alice.privateKey)
|
||||
|
||||
conn.postTransaction(txSigned)
|
||||
```
|
||||
{% endcapture %}{{ nodejs | markdownify }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
<div class="grid__col">
|
||||
<div class="waiting">
|
||||
@ -135,6 +66,77 @@ conn.postTransaction(txSigned)
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row--wide">
|
||||
<aside class="code-example">
|
||||
<ul class="nav nav-tabs">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" href="#curl" data-toggle="tab" role="tab">cURL</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#python" data-toggle="tab" role="tab">Python</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#nodejs" data-toggle="tab" role="tab">Node.js</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div class="tab-content">
|
||||
|
||||
<div class="tab-pane active" id="curl" role="tabpanel">
|
||||
{% capture curl %}
|
||||
```bash
|
||||
curl -X "POST" "https://test.ipdb.io/api/v1/transactions/" \
|
||||
-d $'{ message: "Blockchain all the things!" }'
|
||||
```
|
||||
{% endcapture %}{{ curl | markdownify }}
|
||||
</div>
|
||||
|
||||
<div class="tab-pane highlight" id="python" role="tabpanel">
|
||||
{% capture python %}
|
||||
```python
|
||||
from bigchaindb_driver import BigchainDB
|
||||
from bigchaindb_driver.crypto import generate_keypair
|
||||
|
||||
bdb = BigchainDB('https://test.ipdb.io/api/v1/')
|
||||
|
||||
alice = generate_keypair()
|
||||
|
||||
tx = bdb.transactions.prepare(
|
||||
metadata={ "message": "Blockchain all the things!" }
|
||||
)
|
||||
|
||||
txSigned = bdb.transactions.fulfill(
|
||||
tx,
|
||||
private_keys=alice.private_key
|
||||
)
|
||||
|
||||
bdb.transactions.send(txSigned)
|
||||
```
|
||||
{% endcapture %}{{ python | markdownify }}
|
||||
</div>
|
||||
|
||||
<div class="tab-pane highlight" id="nodejs" role="tabpanel">
|
||||
{% capture nodejs %}
|
||||
```js
|
||||
const driver = require('bigchaindb-driver')
|
||||
const conn = new driver.Connection('https://test.ipdb.io/api/v1/')
|
||||
const alice = new driver.Ed25519Keypair()
|
||||
|
||||
const tx = driver.Transaction.makeCreateTransaction(
|
||||
{ message: "Blockchain all the things!" }
|
||||
)
|
||||
|
||||
const txSigned = driver.Transaction.signTransaction(tx, alice.privateKey)
|
||||
|
||||
conn.postTransaction(txSigned)
|
||||
```
|
||||
{% endcapture %}{{ nodejs | markdownify }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<nav class="menu--sub" data-gumshoe-header>
|
||||
|
Loading…
Reference in New Issue
Block a user