Numerous settings are available when initialising the core API via Onz-JS. Please see the examples below.
The provision of settings is optional, therefore initialising without any arguments var ONZ = onz.api();
yields the defaults.
var options = {
ssl: false, // Default false. Set to true to enable the https instead of http protocol.
node: '', // Default randomNode. Insert a node without http or https protocol. Use ssl option in order to set http or https.
randomPeer: true, // Default true. Onz-js automatically connects to a random peer to get onz blockchain information. Set to false to disable this behaviour.
testnet: true, // Default false. Set to true to use the testnet. Set to false to use the mainnet.
port: '10998', // Default 11000. Enter the port as the protocol http(s)://node:port - can be any string.
bannedPeers: [], // Default empty. Array of peers that should not be connected to. Without http(s) or port.
};
var ONZ = onz.api(options);
var options = {
ssl: false, // default false
node: 'localhost', // write node without http:// or port
randomPeer: false, // default true
testnet: false, // default false
port: '11000', // default 11000
bannedPeers: [], // default empty
};
var ONZ = onz.api(options);
onz.api().getAccount(accountAddress, callback);
onz.api().listActiveDelegates(5, callback);
onz.api().listStandbyDelegates(6, callback);
onz.api().searchDelegateByUsername('username', callback);
onz.api().getBlock(blockId, callback);
onz.api().listBlocks(amount, callback);
onz.api().listForgedBlocks(publicKey, callback);
onz.api().getTransaction(transactionId, callback);
onz.api().listTransactions(address, limit, offset, callback);
Address: The Onz address for recipient and sender of the transactions.
Limit: The number of transactions to retrieve. Minimum: 1, Maximum: 1000.
Offset: The number of records to offset the query from, e.g. a given offset of 10 excludes the first 10 records from the yielded results.
onz.api().listVotes(address, callback);
onz.api().listVoters(publicKey, callback);
onz.api().listMultisignatureTransactions(callback);
onz.api().getMultisignatureTransaction('transactionID', callback);
sendRequest
gives full access to the Onz core API. It accepts any valid endpoint and parameters.
var onzBlockheight = onz.api().sendRequest('blocks/getHeight', function (data) {
var str = JSON.stringify(data);
document.getElementById('output').innerHTML = str;
});
var onzNewAccount = onz.api().sendRequest('accounts/open', { secret: 'my secret passphrase' }, function (data) {
var str = JSON.stringify(data);
document.getElementById('output').innerHTML = str;
});
The provided secret is intercepted and never transmitted over the network.
var ONZ = onz.api().getNethash();
{
'Content-Type': 'application/json',
'nethash': '463aeac28885fa5be9efc4d095900f622e3d9efac8c9317b7f1e8fe804d5a039',
'broadhash': '463aeac28885fa5be9efc4d095900f622e3d9efac8c9317b7f1e8fe804d5a039',
'os': 'onz-js-api',
'version': '1.0.0',
'minVersion': '>=0.5.0',
'port': this.port
}
var ONZ = onz.api().setNode('mynode.com');
Use ONZ.setNode();
without any arguments to automatically choose a new random node.
var ONZ = onz.api().listPeers();
Yields an object containing arrays of network categorised peers:
{ official: [...], ssl: [...], testnet: [...], localhost: [...] }
var ONZ = onz.api().setSSL(true); // or false
var ONZ = onz.api().setTestnet(true); // or false
var keys = onz.crypto.getKeys('secret');
{
publicKey: '5d036a858ce89f844491762eb89e2bfbd50a4a0a0da658e4b2628b25b117ae09',
privateKey: '2bb80d537b1da3e38bd30361aa855686bde0eacd7162fef6a2…44491762eb89e2bfbd50a4a0a0da658e4b2628b25b117ae09'
}
var keys = onz.crypto.getAddress('5d036a858ce89f844491762eb89e2bfbd50a4a0a0da658e4b2628b25b117ae09');
18160565574430594874Z
var transactionBytes = onz.crypto.getBytes(transactionObject);
var transactionHash = onz.crypto.getHash(transactionObject);
var transactionId = onz.crypto.getId(transactionObject);
var transactionFee = onz.crypto.getFee(transactionObject);
var transactionSignature = onz.crypto.sign(transactionObject, keypair);
var transactionSignature = onz.crypto.secondSign(transactionObject, keypair);
var transactionSignature = onz.crypto.multiSign(transactionObject, keypair);
var keypair = onz.crypto.getKeys(secret);
var verification = onz.crypto.verify(transactionObject);
var verification = onz.crypto.verifySecondSignature(transactionObject);
var bigAmount = onz.crypto.fixedPoint(amount);
var hexString = onz.crypto.bufferToHex(buffer);
var buffer = onz.crypto.hexToBuffer(hexString);
Used to calculate unique identifiers.
var rawId = onz.crypto.useFirstEightBufferEntriesReversed(buffer);
var messageSignature = onz.crypto.signMessageWithSecret(message, secret);
var printSignedMessage = onz.crypto.printSignedMessage(message, signedMessage, publicKey);
-----BEGIN ONZ SIGNED MESSAGE-----
<message>
-----BEGIN SIGNATURE-----
<publicKey>
<signature>
-----END ONZ SIGNED MESSAGE-----
In order maintain formatting it is advised to wrap the resulting output within a pre
tag.
Combines the signMessageWithSecret and printSignedMessage functions.
var printSignedMessage = onz.crypto.printSignedMessage(message, secret);
Returns null if invalid, or the original message if valid.
var verifySignedMessage = onz.crypto.verifyMessageWithPublicKey(signedMessage, publicKey);
Where message is a UTF-8 message, secret a passphrase and recipientPublicKey the publicKey in hex.
var encrypted = onz.crypto.encryptMessageWithSecret(message, secret, recipientPublicKey);
{
encryptedMessage: encryptedMessage(hex),
nonce: nonce(hex)
}
Returns an object with the encrypted message and a nonce. Both are necessary in order to decrypt the message.
Where encrypted message is the hex format of the encrypted message, nonce also hex. The secret as the passphrase of the recipient and the sender publicKey in hex.
var encrypted = onz.crypto.decryptMessageWithSecret(encryptedMessage, nonce, secret, senderPublicKey);
Original Message
If successfull, returns the plain text of the senders message.
var keypair = onz.crypto.getPrivateAndPublicKeyFromSecret(secret);
{
publicKey: publicKey(hex),
privateKey: privateKey(hex)
}
var keypairBytes = onz.crypto.getRawPrivateAndPublicKeyFromSecret(secret);
{
publicKey: publicKey(bytes),
privateKey: privateKey(bytes)
}
var address = onz.crypto.getAddressFromPublicKey(publicKeyHex);
var sha256Hash = onz.crypto.getSha256Hash(string);
var amount = 1000 * Math.pow(10, 8); // 100000000000
var transaction = onz.transaction.createTransaction('1859190791819301L', amount, 'passphrase', 'secondPassphrase');
{
type: 0, // Transaction type. 0 = Normal transaction.
amount: 100000000000, // The amount to send expressed as an integer value.
asset: {}, // Transaction asset, dependent on tx type.
fee: 100000000, // 0.1 ONZ expressed as an integer value.
id: '500224999259823996', // Transaction ID.
recipientId: '1859190791819301L', // Recipient ID.
senderPublicKey: '56e106a1d4a53dbe22cac52fefd8fc4123cfb4ee482f8f25a4fc72eb459b38a5', // Sender's public key.
signSignature: '03fdd33bed30270b97e77ada44764cc8628f6ad3bbd84718571695262a5a18baa37bd76a62dd25bc21beacd61eaf2c63af0cf34edb0d191d225f4974cd3aa509', // Sender's second passphrase signature.
signature: '9419ca3cf11ed2e3fa4c63bc9a4dc18b5001648e74522bc0f22bda46a188e462da4785e5c71a43cfc0486af08d447b9340ba8b93258c4c7f50798060fff2d709', // Transaction signature.
timestamp: 27953413 // Based on UTC time of genesis since epoch.
}
var transaction = onz.vote.createVote('secret', ['+58199578191950019299181920120128129'], 'secondSecret');
var options = {
category: 0,
name: 'Onz Guestbook',
description: 'The official Onz guestbook',
tags: 'guestbook message sidechain',
type: 0,
link: 'https://github.com/MaxKK/guestbookDapp/archive/master.zip',
icon: 'https://raw.githubusercontent.com/MaxKK/guestbookDapp/master/icon.png'
};
var transaction = onz.dapp.createDapp('secret', 'secondSecret', options);
var transaction = onz.delegate.createDelegate('secret', 'username', 'secondSecret');
var transaction = onz.signature.createTransaction('secret', 'secondSecret');
var secret = 'myprivatesecret';
var secondSecret = '';
var keysgroup = ['+publicKey1', '+publicKey2']; // Add publicKeys for multisignature.
var lifetime = 20; // Time in hours until transactions will be invalid.
var min = 2; // Minimum signatures so that a transaction is valid.
var transaction = onz.multisignature.createMultisignature(secret, secondSecret, keysgroup, lifetime, min);
var signature = onz.multisignature.signTransaction(transaction, secret);