Bitcoin Forum
June 27, 2024, 08:49:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: BigChain DB - How to use it?  (Read 169 times)
tryingluck77 (OP)
Newbie
*
Offline Offline

Activity: 94
Merit: 0


View Profile
March 01, 2018, 03:03:34 PM
 #1

I found this project https://www.bigchaindb.com/

If any expert can give me insights on if we can use it as replacement to cloud storage and hosting?

and also how it works technically? is it a p2p storage
Melanie84
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
March 01, 2018, 05:13:11 PM
 #2

Keep me posted on this please
tryingluck77 (OP)
Newbie
*
Offline Offline

Activity: 94
Merit: 0


View Profile
March 02, 2018, 09:21:14 AM
 #3

Keep me posted on this please


There is not much response
Patatas
Legendary
*
Offline Offline

Activity: 1750
Merit: 1115

Providing AI/ChatGpt Services - PM!


View Profile
March 02, 2018, 10:52:31 AM
 #4

I found this project https://www.bigchaindb.com/

If any expert can give me insights on if we can use it as replacement to cloud storage and hosting?

and also how it works technically? is it a p2p storage
Damn! I feel I just a technically golden treasure right there !! Where did you come across this ? For now,they seem to have Api for only Python and Node.js backend languages.

Code:
const driver = require('bigchaindb-driver')

const alice = new driver.Ed25519Keypair()
const conn = new driver.Connection(
    'https://test.bigchaindb.com/api/v1/',
    { 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: '' },
    null,
    [ driver.Transaction.makeOutput(
        driver.Transaction.makeEd25519Condition(alice.publicKey))],
    alice.publicKey)
const txSigned = driver.Transaction.signTransaction(tx, alice.privateKey)
conn.postTransaction(txSigned)

That is everything you need to know.Is there anything specific you need the information for ? This tutorial shows how you can host their server locally : https://docs.bigchaindb.com/projects/server/en/latest/quickstart.html .They also provide their network to take care of your server if you sign up and stuff.I'm still trying to implement this on a live platform.
tryingluck77 (OP)
Newbie
*
Offline Offline

Activity: 94
Merit: 0


View Profile
March 02, 2018, 01:46:11 PM
 #5

I found this project https://www.bigchaindb.com/

If any expert can give me insights on if we can use it as replacement to cloud storage and hosting?

and also how it works technically? is it a p2p storage
Damn! I feel I just a technically golden treasure right there !! Where did you come across this ? For now,they seem to have Api for only Python and Node.js backend languages.

Code:
const driver = require('bigchaindb-driver')

const alice = new driver.Ed25519Keypair()
const conn = new driver.Connection(
    'https://test.bigchaindb.com/api/v1/',
    { 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: '' },
    null,
    [ driver.Transaction.makeOutput(
        driver.Transaction.makeEd25519Condition(alice.publicKey))],
    alice.publicKey)
const txSigned = driver.Transaction.signTransaction(tx, alice.privateKey)
conn.postTransaction(txSigned)

That is everything you need to know.Is there anything specific you need the information for ? This tutorial shows how you can host their server locally : https://docs.bigchaindb.com/projects/server/en/latest/quickstart.html .They also provide their network to take care of your server if you sign up and stuff.I'm still trying to implement this on a live platform.

I have been researching on it to get a blockchain to host files and web servers and pages. I came across to them

From my understanding, bigchaindb is a private blockchain, is it possible for us to create a public group of nodes using their technology?
Patatas
Legendary
*
Offline Offline

Activity: 1750
Merit: 1115

Providing AI/ChatGpt Services - PM!


View Profile
March 02, 2018, 07:09:30 PM
 #6

I have been researching on it to get a blockchain to host files and web servers and pages. I came across to them
They certainly host the web servers for you.I'm assuming they run a private chain which isn't based on ETH or any other coin that is they have created the project from scratch.This statement clearly explains it
Quote
BigchainDB is for developers and organizations looking for a queryable database with blockchain characteristics such as decentralization, immutability and the ability to treat anything stored in the database as an asset. Whether it’s atoms, bits or bytes of value, any real-world blockchain application needs performance. A perfect fit for BigchainDB.

From my understanding, bigchaindb is a private blockchain, is it possible for us to create a public group of nodes using their technology?
Public group of nodes ? Since everything runs on a chain,isn't everything connected internally ? That is every node is being served the data someway or the other ? Since they can let you query a database,I'm assuming they have the ability to run a private chain and separate for every database made.
tryingluck77 (OP)
Newbie
*
Offline Offline

Activity: 94
Merit: 0


View Profile
March 02, 2018, 08:19:27 PM
 #7

I have been researching on it to get a blockchain to host files and web servers and pages. I came across to them
They certainly host the web servers for you.I'm assuming they run a private chain which isn't based on ETH or any other coin that is they have created the project from scratch.This statement clearly explains it
Quote
BigchainDB is for developers and organizations looking for a queryable database with blockchain characteristics such as decentralization, immutability and the ability to treat anything stored in the database as an asset. Whether it’s atoms, bits or bytes of value, any real-world blockchain application needs performance. A perfect fit for BigchainDB.

From my understanding, bigchaindb is a private blockchain, is it possible for us to create a public group of nodes using their technology?
Public group of nodes ? Since everything runs on a chain,isn't everything connected internally ? That is every node is being served the data someway or the other ? Since they can let you query a database,I'm assuming they have the ability to run a private chain and separate for every database made.

Thanks for clarification

Do you know https://ipfs.io/

is it similar too ? If both these project can be connected together ?
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!