Skip to content

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

@jay0x5

Description

@jay0x5

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions