js-bigchaindb-driver icon indicating copy to clipboard operation
js-bigchaindb-driver copied to clipboard

How do i retrieve the information about my asset?

Open jay0x5 opened this issue 3 years ago • 0 comments
trafficstars

Hi i am kind of a beginner to Javascript and bigchaindb and i am storing this test asset to testnet, can anyone tell me how can i actually retrieve this asset back with any query? This is my code:

const driver = require('bigchaindb-driver') const API_PATH = 'http://localhost:9984/api/v1/' const conn = new driver.Connection(API_PATH)

const jaybigdbtest = new driver.Ed25519Keypair()

const assetdata = { 'userdetails': { 'USERID': '$Paraverse$2022', 'Username': 'JayForTest', 'password': 'BigChainDB', } } const txCreatejaybigdbtestSimple = driver.Transaction.makeCreateTransaction( assetdata, null, //since no metadata so null // A transaction needs an output [ driver.Transaction.makeOutput( driver.Transaction.makeEd25519Condition(jaybigdbtest.publicKey)) ], jaybigdbtest.publicKey )

const txCreatejaybigdbtestSimpleSigned = driver.Transaction.signTransaction(txCreatejaybigdbtestSimple, jaybigdbtest.privateKey)

conn.postTransactionCommit(txCreatejaybigdbtestSimpleSigned) console.log('asset pushed!!!')

jay0x5 avatar Mar 24 '22 14:03 jay0x5