insight-explorer
Version:
Easily retreive information about transactions and addresses from any insight api explorer
66 lines (46 loc) • 681 B
JavaScript
module.exports =
class InsightGroup {
constructor(url){
this.url = url;
}
getBlock(hash){
}
getBlockIndex(height){
}
getRawBlock(hash){
}
getBlockSummary(limit, blockDate){
}
getTransaction(txid){
}
getRawTransaction(txid){
}
getAddress(address){
}
getAddressProperties(address, property){
}
getAddressUtxo(address){
}
getAddressesUtxo(addresses){
}
getTransactionsForBlock(hash){
}
getTransactionsForAddress(address){
}
getTransactionsForAddresses(addresses, options){
}
broadcastRawTransaction(rawtx){
}
getSync(){
}
getPeer(){
}
getStatus(query){
}
on(event, callback){
}
simpleGET(){
}
simplePOST(){
}
}