bigchaindb / js-bigchaindb-driver

Official BigchainDB JavaScript driver for Node.js and the browser
https://docs.bigchaindb.com/projects/js-driver/en/latest/usage.html
Apache License 2.0
216 stars 92 forks source link

How do i retrieve the information about my asset? #313

Open jay0x5 opened 2 years ago

jay0x5 commented 2 years ago

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!!!')