cicojs-lib
v0.0.8
Published
An extend lib for bitcoinjs-lib, it supports two new network of cico and cico-testnet, and it can generate contract creating and sending transactions
Downloads
5
Maintainers
Readme
cicojs-lib
This is an extend lib for bitcoinjs-lib. It extends the network type of bitcoinjs-lib. It also provides an useful lib to help you building CICO transactions.
Installation
npm install cicojs-lib
Setup
Node.js
var cicojs = require('cicojs-lib')
New features
Network
{
cico: {
messagePrefix: '\x18Cico Signed Message:\n',
bech32: 'cc',
bip32: {
public: 0x0488b21e,
private: 0x0488ade4
},
pubKeyHash: 0x1c,
scriptHash: 0x05,
wif: 0x80
},
cico_testnet: {
messagePrefix: '\x18Cico Signed Message:\n',
bech32: 'tc',
bip32: {
public: 0x043587cf,
private: 0x04358394
},
pubKeyHash: 0x78,
scriptHash: 0x6e,
wif: 0xef
}
}
Utils
Utils.selectTxs
/**
* This is a function for selecting CICO utxos to build transactions
* the transaction object takes at least 3 fields, value(unit is 1e-8 CICO) , confirmations and isStake
*
* @param [transaction] unspentTransactions
* @param Number amount(unit: CICO)
* @param Number fee(unit: CICO)
* @returns [transaction]
*/
function selectTxs(unspentTransactions, amount, fee)
Utils.buildPubKeyHashTransaction
/**
* This is a helper function to build a pubkeyhash transaction
* the transaction object takes at least 5 fields, value(unit is 1e-8 CICO), confirmations, isStake, hash and pos
*
* @param bitcoinjs-lib.KeyPair keyPair
* @param String to
* @param Number amount(unit: CICO)
* @param Number fee(unit: CICO)
* @param [transaction] utxoList
* @returns String the built tx
*/
function buildPubKeyHashTransaction(keyPair, to, amount, fee, utxoList)
Utils.buildCreateContractTransaction
/**
* This is a helper function to build a create-contract transaction
* the transaction object takes at least 5 fields, value(unit is 1e-8 CICO), confirmations, isStake, hash and pos
*
* @param bitcoinjs-lib.KeyPair keyPair
* @param String code The contract byte code
* @param Number gasLimit
* @param Number gasPrice(unit: 1e-8 CICO/gas)
* @param Number fee(unit: CICO)
* @param [transaction] utxoList
* @returns String the built tx
*/
function buildCreateContractTransaction(keyPair, code, gasLimit, gasPrice, fee, utxoList)
Utils.buildSendToContractTransaction
/**
* This is a helper function to build a send-to-contract transaction
* the transaction object takes at least 5 fields, value(unit is 1e-8 CICO), confirmations, isStake, hash and pos
*
* @param bitcoinjs-lib.KeyPair keyPair
* @param String contractAddress The contract address
* @param String encodedData The encoded abi data
* @param Number gasLimit
* @param Number gasPrice(unit: 1e-8 CICO/gas)
* @param Number fee(unit: CICO)
* @param [transaction] utxoList
* @returns String the built tx
*/
function buildSendToContractTransaction(keyPair, contractAddress, encodedData, gasLimit, gasPrice, fee, utxoList)