The HyperBlaze SDK provides the easiest way to connect to the HyperBlazeVM to read the state and to write transactions.
Install the Hyperchain SDK via npm/yarn
npm install hyperblaze-sdk
# or
yarn add hyperblaze-sdk
To build the SDK from source:
yarn
yarn build
The examples directory contains various example code to interact with the Hyperchain SDK.
Import and initialize the SDK in your project:
import { HyperBlazeSDK } from 'hyperblaze-sdk'
const sdk = new HyperBlazeSDK({
baseApiUrl: 'http://127.0.0.1:9650', // Node API URL
blockchainId: 'abcdef' // Blockchain ID
})
const healthStatus = await sdk.rpcService.ping()
console.log('Node Ping:', JSON.stringify(healthStatus, null, 2))
const networkInfo = await sdk.rpcService.getNetworkInfo()
console.log('Network Info:', JSON.stringify(networkInfo, null, 2))
import { HyperBlazeSDK } from 'hyperblaze-sdk'
import { auth } from '@nuklai/hyperchain-sdk'
const { privateKey, publicKey } = auth.BLSFactory.generateKeyPair()
console.log(
'Generated BLS Private Key:',
auth.BLSFactory.privateKeyToHex(privateKey)
)
console.log('Generated BLS Public Key:', auth.BLS.publicKeyToHex(publicKey))
// Set the private key for the sender address
const authFactory = auth.getAuthFactory(
'ed25519',
'323b1d8f4eed5f0da9da93071b034f2dce9d2d22692c172f3cb252a64ddfafd01b057de320297c29ad0c1f589ea216869cf1938d88c9fbd70d6748323dbf2fa7' // private key (as hex string) for tokenqrzvk4zlwj9zsacqgtufx7zvapd3quufqpxk5rsdd4633m4wz2fdjss0gwx
)
const transfer = new actions.Transfer(
'token1qqp3l7uggl7kdtv28hls4rt6xlrc8t4ty4clw3wd3uc0392erxlkgla7lsz', // receiver address
'HYPE', // asset ID
utils.parseBalance(0.0001, 9), // amount
'Test Memo' // memo
)
const genesisInfo = {
baseUnits: 1,
storageKeyReadUnits: 5,
storageValueReadUnits: 2,
storageKeyAllocateUnits: 20,
storageValueAllocateUnits: 5,
storageKeyWriteUnits: 10,
storageValueWriteUnits: 3,
validityWindow: 60000
}
const actionRegistry = new codec.TypeParser()
actionRegistry.register(
consts.TRANSFER_ID,
actions.Transfer.fromBytesCodec,
false
)
const authRegistry = new codec.TypeParser()
authRegistry.register(consts.BLS_ID, auth.BLS.fromBytesCodec, false)
authRegistry.register(consts.ED25519_ID, auth.ED25519.fromBytesCodec, false)
const { submit, txSigned, err } = await sdk.rpcService.generateTransaction(
genesisInfo,
actionRegistry,
authRegistry,
[transfer],
authFactory
)
if (err) {
throw err
}
await submit()
console.log('Transaction ID:', txSigned.id().toString())
// Set the private key for the sender address
const authFactory = auth.getAuthFactory(
'ed25519',
'323b1d8f4eed5f0da9da93071b034f2dce9d2d22692c172f3cb252a64ddfafd01b057de320297c29ad0c1f589ea216869cf1938d88c9fbd70d6748323dbf2fa7' // private key (as hex string) for token1qrzvk4zlwj9zsacqgtufx7zvapd3quufqpxk5rsdd4633m4wz2fdjss0gwx
)
const transfer = new actions.Transfer(
'token1qqp3l7uggl7kdtv28hls4rt6xlrc8t4ty4clw3wd3uc0392erxlkgla7lsz', // receiver address
'HYPE', // asset ID
utils.parseBalance(0.0001, 9), // amount
'Test Memo' // memo
)
const genesisInfo = {
baseUnits: 1,
storageKeyReadUnits: 5,
storageValueReadUnits: 2,
storageKeyAllocateUnits: 20,
storageValueAllocateUnits: 5,
storageKeyWriteUnits: 10,
storageValueWriteUnits: 3,
validityWindow: 60000
}
const actionRegistry = new codec.TypeParser()
actionRegistry.register(
consts.TRANSFER_ID,
actions.Transfer.fromBytesCodec,
false
)
const authRegistry = new codec.TypeParser()
authRegistry.register(consts.BLS_ID, auth.BLS.fromBytesCodec, false)
authRegistry.register(consts.ED25519_ID, auth.ED25519.fromBytesCodec, false)
await sdk.wsServiceHyperBlaze.connect()
const { txSigned, err } = await sdk.rpcService.generateTransaction(
genesisInfo,
actionRegistry,
authRegistry,
[transfer],
authFactory
)
if (err) {
throw err
}
err = await this.registerTx(txSigned)
if (err) {
throw err
}
let resultTxID: Id | null = null
while (!resultTxID) {
const { txId, dErr, err } = await this.listenTx()
if (dErr) {
throw dErr
}
if (err) {
throw err
}
if (txId.toString() === txSigned.id().toString()) {
resultTxID = txId
break
}
}
console.log('Transaction ID:', txSigned.id().toString())
await sdk.wsService.connect()
const connectAndListen = async () => {
try {
const err = await sdk.wsService.registerBlocks()
if (err) {
throw err
}
const listenBlocks = async () => {
const { block, results, err } = await sdk.wsService.listenBlock(
sdk.actionRegistry,
sdk.authRegistry
)
if (err) {
throw err
}
console.log('block: ', block.toJSON())
results.map((result, i) =>
console.log(`result at ${i}: ${result.toJSON()}`)
)
}
// Initial block fetch
listenBlocks()
// Fetch blocks periodically
const interval = setInterval(listenBlocks, 3000)
return () => clearInterval(interval)
} catch (err) {
console.error(err)
}
}
connectAndListen()
await sdk.wsService.close()
npm publish --access public
Contributions to the HyperBlaze SDK are welcome! Please ensure that your code adheres to the existing style, and include tests for new features.
This SDK is released under the MIT License.
This README file should provide a clear and professional introduction to your SDK, making it easier for developers to understand how to use it and contribute to it.