You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

732 lines
30 KiB

8 years ago
/******************************************************************************
* Copyright © 2014-2017 The SuperNET Developers. *
* *
* See the AUTHORS, DEVELOPER-AGREEMENT and LICENSE files at *
* the top-level directory of this distribution for the individual copyright *
* holder information and the developer policies on copyright and licensing. *
* *
* Unless otherwise agreed in a custom licensing agreement, no part of the *
* SuperNET software, including this file may be copied, modified, propagated *
* or distributed except according to the terms contained in the LICENSE file *
* *
* Removal or modification of this copyright notice is prohibited. *
* *
******************************************************************************/
#ifndef INCLUDE_KMDLOOKUP_H
#define INCLUDE_KMDLOOKUP_H
8 years ago
#define KMD_EXPLORER_LAG 3
8 years ago
struct kmd_voutinfo
{
bits256 spendtxid;
uint64_t amount;
uint16_t spendvini;
uint8_t type_rmd160[21], pad;
} PACKED;
struct kmd_transaction
{
8 years ago
bits256 txid; int32_t height,numvouts,numvins; uint32_t timestamp;
8 years ago
struct kmd_voutinfo vouts[];
8 years ago
} PACKED;
8 years ago
struct kmd_transactionhh
{
UT_hash_handle hh;
struct kmd_transaction *tx;
8 years ago
long fpos;
8 years ago
int32_t numvouts,numvins;
8 years ago
struct kmd_transactionhh *ptrs[];
};
struct kmd_addresshh
{
UT_hash_handle hh;
struct kmd_transactionhh *prev,*lastprev;
8 years ago
uint8_t type_rmd160[21], pad;
8 years ago
};
struct kmd_addresshh *_kmd_address(struct iguana_info *coin,uint8_t type_rmd160[21])
{
struct kmd_addresshh *addr;
portable_mutex_lock(&coin->kmdmutex);
HASH_FIND(hh,coin->kmd_addresses,type_rmd160,21,addr);
portable_mutex_unlock(&coin->kmdmutex);
8 years ago
if ( addr != 0 && 0 )
8 years ago
{
char coinaddr[64];
bitcoin_address(coinaddr,type_rmd160[0],&type_rmd160[1],20);
8 years ago
printf("%s found (%s) %02x\n",coin->symbol,coinaddr,type_rmd160[0]);
8 years ago
}
8 years ago
return(addr);
}
struct kmd_addresshh *_kmd_addressadd(struct iguana_info *coin,uint8_t type_rmd160[21])
{
struct kmd_addresshh *addr;
addr = calloc(1,sizeof(*addr));
memcpy(addr->type_rmd160,type_rmd160,21);
8 years ago
if ( 0 )
8 years ago
{
char coinaddr[64];
bitcoin_address(coinaddr,type_rmd160[0],&type_rmd160[1],20);
8 years ago
printf("%s NEW ADDRESS.(%s) %02x\n",coin->symbol,coinaddr,type_rmd160[0]);
8 years ago
}
8 years ago
portable_mutex_lock(&coin->kmdmutex);
8 years ago
HASH_ADD_KEYPTR(hh,coin->kmd_addresses,addr->type_rmd160,21,addr);
portable_mutex_unlock(&coin->kmdmutex);
return(addr);
}
struct kmd_addresshh *kmd_address(struct iguana_info *coin,char *coinaddr)
{
uint8_t type_rmd160[21];
bitcoin_addr2rmd160(&type_rmd160[0],&type_rmd160[1],coinaddr);
return(_kmd_address(coin,type_rmd160));
}
struct kmd_transactionhh *kmd_transaction(struct iguana_info *coin,bits256 txid)
{
struct kmd_transactionhh *tx;
portable_mutex_lock(&coin->kmdmutex);
HASH_FIND(hh,coin->kmd_transactions,txid.bytes,sizeof(txid),tx);
portable_mutex_unlock(&coin->kmdmutex);
return(tx);
}
int32_t kmd_transactionvin(struct iguana_info *coin,bits256 spendtxid,int32_t vini,bits256 txid,int32_t vout)
{
8 years ago
struct kmd_transactionhh *ptr,*spendptr=0;
8 years ago
if ( bits256_nonz(txid) == 0 || vout < 0 )
return(0); // coinbase must be
8 years ago
if ( (ptr= kmd_transaction(coin,txid)) != 0 && vout < ptr->numvouts && (spendptr= kmd_transaction(coin,spendtxid)) != 0 )
{
ptr->ptrs[(vout<<1) + 1] = spendptr;
8 years ago
if ( bits256_cmp(ptr->tx->vouts[vout].spendtxid,spendtxid) != 0 || ptr->tx->vouts[vout].spendvini != vini )
{
8 years ago
if ( bits256_nonz(ptr->tx->vouts[vout].spendtxid) != 0 )
printf("ht.%d vout.%d overwriting nonz spend\n",ptr->tx->height,vout);
8 years ago
//uint8_t type_rmd160[21]; char str[65];
//bitcoin_addr2rmd160(&type_rmd160[0],&type_rmd160[1],"RR5yAkzaxJeCVTwvpgCGsNcSPAZjeq3av4");
//if ( memcmp(type_rmd160,ptr->tx->vouts[vout].type_rmd160,21) == 0 )
// printf("RR5yAkzaxJeCVTwvpgCGsNcSPAZjeq3av4 %p vout.%d spend %.8f by %s/%d %p\n",ptr,vout,dstr(ptr->tx->vouts[vout].amount),bits256_str(str,spendtxid),vini,spendptr);
8 years ago
ptr->tx->vouts[vout].spendtxid = spendtxid;
ptr->tx->vouts[vout].spendvini = vini;
}
8 years ago
return(0);
}
8 years ago
char str[65]; printf("vin error %s vout.%d of %d vs ptr %p [%d] spent.%p\n",bits256_str(str,txid),vout,ptr->numvouts,ptr,ptr!=0?ptr->numvouts:-1,spendptr);
8 years ago
return(-1);
}
void kmd_transactionvout(struct iguana_info *coin,struct kmd_transactionhh *ptr,int32_t vout,uint64_t amount,uint8_t type_rmd160[21],bits256 spendtxid,int32_t spendvini)
{
struct kmd_addresshh *addr; struct kmd_transaction *tx = 0;
8 years ago
{
char coinaddr[64],str[65];
bitcoin_address(coinaddr,type_rmd160[0],&type_rmd160[1],20);
8 years ago
if ( strcmp(coinaddr,"RCsKEQ3r5Xxw4ZtK4CH9VzvfGpTFMdPpsh") == 0 )
8 years ago
printf("%s ht.%d %s VOUT %d %.8f\n",coinaddr,ptr->tx->height,bits256_str(str,ptr->tx->txid),vout,dstr(amount));
}
8 years ago
if ( vout < ptr->numvouts && (tx= ptr->tx) != 0 )
{
tx->vouts[vout].spendtxid = spendtxid;
tx->vouts[vout].spendvini = spendvini;
tx->vouts[vout].amount = amount;
memcpy(tx->vouts[vout].type_rmd160,type_rmd160,21);
if ( (addr= _kmd_address(coin,type_rmd160)) == 0 )
addr = _kmd_addressadd(coin,type_rmd160);
if ( addr != 0 )
{
if ( addr->prev != ptr )
{
ptr->ptrs[vout << 1] = addr->prev;
addr->lastprev = addr->prev;
addr->prev = ptr;
}
else
{
8 years ago
//printf("tricky case same address in different vouts, make sure backlink is right\n");
8 years ago
ptr->ptrs[vout<<1] = addr->lastprev;
}
} else printf("kmd_transactionvout unexpected null addr\n");
} else printf("vout.%d wont fit into numvouts.[%d] or null tx.%p\n",vout,ptr->numvouts,tx);
}
8 years ago
struct kmd_transactionhh *kmd_transactionadd(struct iguana_info *coin,struct kmd_transaction *tx,int32_t numvouts,int32_t numvins)
8 years ago
{
8 years ago
struct kmd_transactionhh *ptr; //char str[65];
8 years ago
if ( (ptr= kmd_transaction(coin,tx->txid)) == 0 )
{
ptr = calloc(1,sizeof(*ptr) + (sizeof(*ptr->ptrs)*numvouts*2));
ptr->numvouts = numvouts;
8 years ago
ptr->numvins = numvins;
8 years ago
ptr->tx = tx;
portable_mutex_lock(&coin->kmdmutex);
8 years ago
//char str[65]; printf("%s ht.%d u.%u NEW TXID.(%s) vouts.[%d]\n",coin->symbol,tx->height,tx->timestamp,bits256_str(str,tx->txid),numvouts);
8 years ago
HASH_ADD_KEYPTR(hh,coin->kmd_transactions,tx->txid.bytes,sizeof(tx->txid),ptr);
portable_mutex_unlock(&coin->kmdmutex);
8 years ago
} // else printf("warning adding already existing txid %s\n",bits256_str(str,tx->txid));
8 years ago
return(ptr);
}
8 years ago
struct kmd_transaction *kmd_transactionalloc(bits256 txid,int32_t height,uint32_t timestamp,int32_t numvouts,int32_t numvins)
8 years ago
{
struct kmd_transaction *tx;
tx = calloc(1,sizeof(*tx) + sizeof(struct kmd_voutinfo)*numvouts);
tx->numvouts = numvouts;
8 years ago
tx->numvins = numvins;
8 years ago
tx->txid = txid;
tx->height = height;
tx->timestamp = timestamp;
return(tx);
}
void kmd_flushfiles(struct iguana_info *coin)
{
if ( coin->kmd_txidfp != 0 )
fflush(coin->kmd_txidfp);
8 years ago
if ( coin->kmd_spendfp != 0 )
fflush(coin->kmd_spendfp);
8 years ago
}
FILE *kmd_txidinit(struct iguana_info *coin)
{
8 years ago
int32_t i; FILE *fp; char fname[1024]; struct kmd_transactionhh *ptr; struct kmd_transaction T,*tx; struct kmd_voutinfo V; long lastpos=0;
8 years ago
sprintf(fname,"%s/TRANSACTIONS/%s",GLOBAL_DBDIR,coin->symbol);
8 years ago
if ( (fp= fopen(fname,"rb+")) != 0 )
{
while ( fread(&T,1,sizeof(T),fp) == sizeof(T) )
{
8 years ago
if ( (tx= kmd_transactionalloc(T.txid,T.height,T.timestamp,T.numvouts,T.numvins)) != 0 )
8 years ago
{
8 years ago
//printf("INIT %s.[%d] vins.[%d] ht.%d %u\n",bits256_str(str,T.txid),T.numvouts,T.numvins,T.height,T.timestamp);
8 years ago
if ( (ptr= kmd_transactionadd(coin,tx,T.numvouts,T.numvins)) != 0 )
8 years ago
{
8 years ago
if ( ptr != kmd_transaction(coin,tx->txid) )
printf("ERROR: %p != %p for ht.%d\n",ptr,kmd_transaction(coin,tx->txid),tx->height);
8 years ago
ptr->fpos = lastpos;
8 years ago
ptr->numvins = T.numvins;
ptr->numvouts = T.numvouts;
8 years ago
for (i=0; i<T.numvouts; i++)
{
if ( fread(&V,1,sizeof(V),fp) == sizeof(V) )
{
kmd_transactionvout(coin,ptr,i,V.amount,V.type_rmd160,V.spendtxid,V.spendvini);
8 years ago
}
else
{
printf("error loading vout.%d ht.%d\n",i,T.height);
break;
}
8 years ago
}
if ( i == T.numvouts )
{
lastpos = ftell(fp);
if ( T.height > coin->kmd_height )
coin->kmd_height = T.height;
8 years ago
} else break;
8 years ago
}
} else break;
}
8 years ago
printf("finished txidinit fpos %ld vs lastpos %ld\n",ftell(fp),lastpos);
8 years ago
fseek(fp,lastpos,SEEK_SET);
8 years ago
} else fp = fopen(fname,"wb+");
return(fp);
}
FILE *kmd_spendinit(struct iguana_info *coin)
{
int32_t i,numvins,spentvout; FILE *fp; char fname[1024],str[65]; bits256 txid,spenttxid; struct kmd_transactionhh *ptr,*tmp; struct kmd_voutinfo *vptr; long lastpos=0;
sprintf(fname,"%s/TRANSACTIONS/%s.spends",GLOBAL_DBDIR,coin->symbol);
if ( (fp= fopen(fname,"rb+")) != 0 )
{
while ( fread(&txid,1,sizeof(txid),fp) == sizeof(txid) )
{
if ( fread(&numvins,1,sizeof(numvins),fp) == sizeof(numvins) )
{
for (i=0; i<numvins; i++)
{
if ( fread(&spenttxid,1,sizeof(spenttxid),fp) == sizeof(spenttxid) &&
fread(&spentvout,1,sizeof(spentvout),fp) == sizeof(spentvout) )
{
if ( kmd_transactionvin(coin,txid,i,spenttxid,spentvout) < 0 )
8 years ago
{
8 years ago
printf("error adding spend %s %d of %d\n",bits256_str(str,txid),i,numvins);
8 years ago
//break;
8 years ago
}
} else break;
8 years ago
}
8 years ago
if ( i == numvins )
lastpos = ftell(fp);
else break;
} else break;
8 years ago
}
8 years ago
printf("finished spendinit fpos %ld vs lastpos %ld\n",ftell(fp),lastpos);
8 years ago
fseek(fp,lastpos,SEEK_SET);
8 years ago
HASH_ITER(hh,coin->kmd_transactions,ptr,tmp)
{
8 years ago
//printf("scan for spends ht.%d\n",ptr->tx->height);
8 years ago
for (i=0; i<ptr->numvouts; i++)
{
vptr = &ptr->tx->vouts[i];
if ( vptr->spendvini >= 0 && bits256_nonz(vptr->spendtxid) != 0 )
{
8 years ago
if ( ptr->ptrs[(i<<1) + 1] != kmd_transaction(coin,vptr->spendtxid) )
8 years ago
{
8 years ago
printf("mismatch %s spend.%d %p %p\n",bits256_str(str,vptr->spendtxid),i,ptr->ptrs[(i<<1) + 1],kmd_transaction(coin,vptr->spendtxid));
8 years ago
}
8 years ago
}
}
}
8 years ago
} else fp = fopen(fname,"wb+");
8 years ago
return(fp);
}
cJSON *kmd_transactionjson(struct kmd_transactionhh *ptr,char *typestr)
{
int32_t i; char coinaddr[64]; cJSON *item,*array,*obj = cJSON_CreateObject();
array = cJSON_CreateArray();
jaddstr(obj,"type",typestr);
jaddbits256(obj,"txid",ptr->tx->txid);
jaddnum(obj,"height",ptr->tx->height);
jaddnum(obj,"timestamp",ptr->tx->timestamp);
for (i=0; i<ptr->numvouts; i++)
{
item = cJSON_CreateObject();
bitcoin_address(coinaddr,ptr->tx->vouts[i].type_rmd160[0],&ptr->tx->vouts[i].type_rmd160[1],20);
jaddnum(item,coinaddr,dstr(ptr->tx->vouts[i].amount));
jaddi(array,item);
}
jadd(obj,"vouts",array);
return(obj);
}
cJSON *kmd_unspentjson(struct kmd_transaction *tx,int32_t vout)
{
cJSON *item = cJSON_CreateObject();
jaddbits256(item,"txid",tx->txid);
jaddnum(item,"vout",vout);
jaddnum(item,"amount",dstr(tx->vouts[vout].amount));
return(item);
}
8 years ago
cJSON *kmd_spentjson(struct kmd_transaction *tx,int32_t vout,struct kmd_transactionhh *spent)
8 years ago
{
cJSON *item = cJSON_CreateObject();
jaddstr(item,"type","sent");
jaddbits256(item,"txid",tx->txid);
jaddnum(item,"vout",vout);
jaddnum(item,"amount",dstr(tx->vouts[vout].amount));
jaddbits256(item,"spentdtxid",tx->vouts[vout].spendtxid);
jaddnum(item,"vin",tx->vouts[vout].spendvini);
8 years ago
if ( spent != 0 )
{
jadd(item,"paid",kmd_transactionjson(spent,"paid"));
}
8 years ago
return(item);
}
8 years ago
int32_t kmd_height(struct iguana_info *coin)
{
char params[64],*curlstr; cJSON *curljson; int32_t height = 0;
strcpy(params,"[]");
if ( (curlstr= bitcoind_passthru(coin->symbol,coin->chain->serverport,coin->chain->userpass,"getinfo",params)) != 0 )
{
if ( (curljson= cJSON_Parse(curlstr)) != 0 )
{
height = juint(curljson,"blocks");
8 years ago
//printf("kmd_height.%d (%s)\n",height,jprint(curljson,0));
8 years ago
free_json(curljson);
}
free(curlstr);
}
return(height);
}
8 years ago
cJSON *kmd_gettxin(struct iguana_info *coin,bits256 txid,int32_t vout)
{
struct kmd_transactionhh *ptr,*spendptr; struct kmd_transaction *tx; cJSON *retjson;
if ( (ptr= kmd_transaction(coin,txid)) != 0 && (tx= ptr->tx) != 0 )
{
if ( vout >= ptr->numvouts )
return(cJSON_Parse("{\"error\":\"vout too big\"}"));
if ( (spendptr= ptr->ptrs[(vout << 1) + 1]) != 0 )
{
retjson = cJSON_CreateObject();
jaddstr(retjson,"result","success");
jaddstr(retjson,"status","spent");
8 years ago
jaddnum(retjson,"height",tx->height);
jaddnum(retjson,"timestamp",tx->timestamp);
8 years ago
jaddbits256(retjson,"txid",txid);
8 years ago
jaddnum(retjson,"vout",vout);
jaddnum(retjson,"value",dstr(tx->vouts[vout].amount));
8 years ago
jaddbits256(retjson,"spendtxid",tx->vouts[vout].spendtxid);
jaddnum(retjson,"vin",tx->vouts[vout].spendvini);
} else return(cJSON_Parse("{\"result\":\"success\",\"status\":\"unspent\"}"));
}
return(cJSON_Parse("{\"error\":\"txid not found\"}"));
}
8 years ago
cJSON *kmd_listaddress(struct iguana_info *coin,char *coinaddr,int32_t mode,cJSON *array,int32_t fulltx)
8 years ago
{
8 years ago
struct kmd_addresshh *addr; struct kmd_transactionhh *ptr,*spent,*prev=0; uint8_t type_rmd160[21]; int32_t i,flag = 0;
8 years ago
if ( array == 0 )
array = cJSON_CreateArray();
8 years ago
/*if ( time(NULL) > coin->kmd_lasttime+30 )
8 years ago
{
8 years ago
coin->kmd_lasttime = (uint32_t)time(NULL);
8 years ago
if ( (height= kmd_height(coin)) > coin->kmd_height+KMD_EXPLORER_LAG*2 )
8 years ago
{
printf("height.%d > kmd_height.%d\n",height,coin->kmd_height);
return(cJSON_Parse("[]"));
}
8 years ago
}*/
8 years ago
if ( strcmp("1111111111111111111114oLvT2",coinaddr) == 0 ) // null rmd160 from coinbase
return(cJSON_Parse("[]"));
8 years ago
bitcoin_addr2rmd160(&type_rmd160[0],&type_rmd160[1],coinaddr);
if ( (addr= _kmd_address(coin,type_rmd160)) != 0 && (ptr= addr->prev) != 0 && ptr->tx != 0 )
{
8 years ago
while ( ptr != 0 )
8 years ago
{
8 years ago
prev = 0;
for (i=0; i<ptr->numvouts; i++)
{
if ( memcmp(ptr->tx->vouts[i].type_rmd160,type_rmd160,21) == 0 )
{
spent = ptr->ptrs[(i<<1) + 1];
8 years ago
//if ( strcmp("RFpYbieWuKm2ZsTaKeWkrrEdeSkVzhqX8x",coinaddr) == 0 )
8 years ago
// printf("mode.%d [%d] %s ht.%d amount %.8f spent.%p\n",mode,coin->kmd_height,coinaddr,ptr->tx->height,dstr(ptr->tx->vouts[i].amount),spent);
8 years ago
if ( (mode == 0 && spent == 0) || (mode == 1 && spent != 0) || mode == 2 )
8 years ago
{
8 years ago
if ( fulltx == 0 )
8 years ago
{
8 years ago
if ( mode == 0 )
jaddi(array,kmd_unspentjson(ptr->tx,i));
else if ( mode == 1 )
8 years ago
jaddi(array,kmd_spentjson(ptr->tx,i,spent));
8 years ago
else if ( mode == 2 )
{
if ( spent != 0 )
8 years ago
jaddi(array,kmd_spentjson(ptr->tx,i,spent));
8 years ago
else jaddi(array,kmd_unspentjson(ptr->tx,i));
8 years ago
}
}
else if ( flag == 0 )
{
if ( mode == 0 )
jaddi(array,kmd_transactionjson(ptr,"received"));
else if ( mode == 1 )
{
jaddi(array,kmd_transactionjson(ptr,"received"));
8 years ago
jaddi(array,kmd_transactionjson(spent,"sent"));
}
else if ( mode == 2 )
{
8 years ago
if ( spent != 0 )
8 years ago
jaddi(array,kmd_transactionjson(ptr,"spent"));
else jaddi(array,kmd_transactionjson(ptr,"received"));
8 years ago
}
flag = 1;
8 years ago
}
}
8 years ago
if ( ptr->ptrs[i<<1] != 0 )
8 years ago
{
if ( prev == 0 )
prev = ptr->ptrs[i<<1];
else if ( prev != ptr->ptrs[i<<1] )
printf("%s ht.%d prev.%p != %p\n",coinaddr,ptr->tx->height,prev,ptr->ptrs[i<<1]);
}
8 years ago
}
}
ptr = prev;
8 years ago
}
8 years ago
} else printf("no valid entry for (%s)\n",coinaddr);
8 years ago
return(array);
}
8 years ago
cJSON *kmd_listunspent(struct iguana_info *coin,char *coinaddr)
{
8 years ago
return(kmd_listaddress(coin,coinaddr,0,0,0));
8 years ago
}
cJSON *kmd_listspent(struct iguana_info *coin,char *coinaddr)
{
8 years ago
return(kmd_listaddress(coin,coinaddr,1,0,0));
8 years ago
}
cJSON *kmd_listtransactions(struct iguana_info *coin,char *coinaddr,int32_t count,int32_t skip)
{
cJSON *array = cJSON_CreateArray();
//if ( (height= kmd_height(coin)) > coin->kmd_height+KMD_EXPLORER_LAG )
// return(cJSON_Parse("[]"));
if ( count == 0 )
count = 100;
8 years ago
array = kmd_listaddress(coin,coinaddr,0,0,0);
array = kmd_listaddress(coin,coinaddr,1,array,0);
8 years ago
return(array);
8 years ago
}
8 years ago
int64_t _kmd_getbalance(struct iguana_info *coin,char *coinaddr,uint64_t *receivedp,uint64_t *sentp)
8 years ago
{
8 years ago
int32_t iter,i,n; cJSON *array,*item; uint64_t value;
8 years ago
for (iter=1; iter<=2; iter++)
8 years ago
{
8 years ago
if ( (array= kmd_listaddress(coin,coinaddr,iter,0,0)) != 0 )
8 years ago
{
if ( (n= cJSON_GetArraySize(array)) > 0 )
{
for (i=0; i<n; i++)
{
8 years ago
item = jitem(array,i);
8 years ago
if ( (value= jdouble(item,"amount")*SATOSHIDEN) != 0 || (value= jdouble(item,"value")*SATOSHIDEN) != 0 )
{
8 years ago
if ( iter == 2 )
8 years ago
*receivedp += value;
else *sentp += value;
8 years ago
}
}
}
8 years ago
free_json(array);
8 years ago
}
}
8 years ago
return(*receivedp - *sentp);
8 years ago
}
cJSON *kmd_getbalance(struct iguana_info *coin,char *coinaddr)
{
8 years ago
cJSON *retjson; double netbalance=0.,fbalance; uint64_t s,r,sent=0,received=0; int64_t balance=0; struct kmd_addresshh *addr,*tmp; char address[64]; int32_t height = coin->kmd_height+1;
8 years ago
retjson = cJSON_CreateObject();
8 years ago
fbalance = 0.;
8 years ago
if ( strcmp(coinaddr,"*") == 0 )
{
HASH_ITER(hh,coin->kmd_addresses,addr,tmp)
{
bitcoin_address(address,addr->type_rmd160[0],&addr->type_rmd160[1],20);
8 years ago
s = r = 0;
8 years ago
balance += _kmd_getbalance(coin,address,&r,&s);
netbalance += dstr(r);
netbalance -= dstr(s);
8 years ago
if ( (r - s) > 100000*SATOSHIDEN )
8 years ago
printf("{\"address\":\"%s\",\"received\":%.8f,\"sent\":%.8f,\"balance\":%.8f,\"supply\":%.8f,\"supplyf\":%.8f}\n",address,dstr(r),dstr(s),dstr(r)-dstr(s),dstr(balance),netbalance);
8 years ago
received += r;
sent += s;
8 years ago
}
8 years ago
if ( strcmp("KMD",coin->symbol) == 0 )
8 years ago
jaddnum(retjson,"interestpaid",dstr(balance) - 100000000 - (height*3));
8 years ago
}
else
{
balance = _kmd_getbalance(coin,coinaddr,&received,&sent);
netbalance = dstr(balance);
}
8 years ago
jaddstr(retjson,"result","success");
8 years ago
jaddnum(retjson,"received",dstr(received));
jaddnum(retjson,"sent",dstr(sent));
8 years ago
//if ( fabs(netbalance*SATOSHIDEN - balance) > 1 )
8 years ago
jaddnum(retjson,"balancef",netbalance+1./(SATOSHIDEN*2)-SMALLVAL);
8 years ago
//else
jaddnum(retjson,"balance",dstr(balance));
8 years ago
jaddnum(retjson,"height",height);
8 years ago
if ( strcmp("KMD",coin->symbol) == 0 )
8 years ago
jaddnum(retjson,"mined",height*3);
8 years ago
return(retjson);
}
8 years ago
char *kmd_bitcoinblockhashstr(char *coinstr,char *serverport,char *userpass,int32_t height)
{
char numstr[128],*blockhashstr=0; bits256 hash2; struct iguana_info *coin;
sprintf(numstr,"%d",height);
if ( (blockhashstr= bitcoind_passthru(coinstr,serverport,userpass,"getblockhash",numstr)) == 0 )
return(0);
hash2 = bits256_conv(blockhashstr);
if ( blockhashstr == 0 || blockhashstr[0] == 0 || bits256_nonz(hash2) == 0 )
{
printf("couldnt get blockhash for %u, probably curl is disabled\n",height);
if ( blockhashstr != 0 )
free(blockhashstr);
if ( height == 0 )
{
if ( (coin= iguana_coinfind(coinstr)) != 0 )
{
bits256_str(numstr,*(bits256 *)coin->chain->genesis_hashdata);
return(clonestr(numstr));
}
}
return(0);
}
return(blockhashstr);
}
cJSON *kmd_blockjson(int32_t *heightp,char *coinstr,char *serverport,char *userpass,char *blockhashstr,int32_t height)
{
cJSON *json = 0; int32_t flag = 0; char buf[1024],*blocktxt = 0;
if ( blockhashstr == 0 )
blockhashstr = kmd_bitcoinblockhashstr(coinstr,serverport,userpass,height), flag = 1;
if ( blockhashstr != 0 )
{
sprintf(buf,"\"%s\"",blockhashstr);
blocktxt = bitcoind_passthru(coinstr,serverport,userpass,"getblock",buf);
//printf("get_blockjson.(%d %s) %s\n",height,blockhashstr,blocktxt);
if ( blocktxt != 0 && blocktxt[0] != 0 && (json= cJSON_Parse(blocktxt)) != 0 && heightp != 0 )
if ( (*heightp= juint(json,"height")) != height )
*heightp = -1;
if ( flag != 0 && blockhashstr != 0 )
free(blockhashstr);
if ( blocktxt != 0 )
free(blocktxt);
}
return(json);
}
int32_t _kmd_bitcoinscan(struct iguana_info *coin)
{
8 years ago
int32_t h,num=0,loadheight,i,n,j,iter,numtxids,numvins,numvouts,flag=0,height=-1; cJSON *txjson,*vouts,*vins,*blockjson,*txids,*vout,*vin,*sobj,*addresses; bits256 zero,txid; char *curlstr,params[128],str[65]; struct kmd_transactionhh *ptr; struct kmd_transaction *tx; uint8_t type_rmd160[21];
8 years ago
if ( coin->kmd_didinit == 0 )
{
if ( (coin->kmd_txidfp= kmd_txidinit(coin)) == 0 )
8 years ago
printf("error initializing %s.kmd txid\n",coin->symbol);
else if ( (coin->kmd_spendfp= kmd_spendinit(coin)) == 0 )
printf("error initializing %s.kmd spend\n",coin->symbol);
8 years ago
coin->kmd_didinit = 1;
}
height = kmd_height(coin);
8 years ago
loadheight = coin->kmd_height+1;
8 years ago
while ( loadheight < height-KMD_EXPLORER_LAG )
8 years ago
{
flag = 0;
8 years ago
if ( (loadheight % 10000) == 0 )
8 years ago
printf("loading ht.%d\n",loadheight);//,jprint(kmd_getbalance(coin,"*"),1));
8 years ago
if ( (blockjson= kmd_blockjson(&h,coin->symbol,coin->chain->serverport,coin->chain->userpass,0,loadheight)) != 0 )
8 years ago
{
if ( (txids= jarray(&numtxids,blockjson,"tx")) != 0 )
{
8 years ago
for (iter=0; iter<2; iter++)
8 years ago
for (i=0; i<numtxids; i++)
{
memset(&zero,0,sizeof(zero));
8 years ago
txid = jbits256(jitem(txids,i),0);
8 years ago
if ( iter == 0 && kmd_transaction(coin,txid) != 0 )
8 years ago
{
8 years ago
//printf("already have txid.%s\n",bits256_str(str,txid));
8 years ago
continue;
}
sprintf(params,"[\"%s\", 1]",bits256_str(str,txid));
8 years ago
if ( (curlstr= bitcoind_passthru(coin->symbol,coin->chain->serverport,coin->chain->userpass,"getrawtransaction",params)) != 0 )
{
if ( (txjson= cJSON_Parse(curlstr)) != 0 )
{
8 years ago
if ( bits256_cmp(txid,jbits256(txjson,"txid")) != 0 )
8 years ago
{
8 years ago
printf("txid mismatch error ht.%d i.%d\n",loadheight,i);
8 years ago
continue;
}
8 years ago
vouts = jarray(&numvouts,txjson,"vout");
8 years ago
vins = jarray(&numvins,txjson,"vin");
8 years ago
tx = 0;
ptr = 0;
if ( iter == 0 )
8 years ago
{
8 years ago
if ( (tx= kmd_transactionalloc(txid,loadheight,jint(txjson,"blocktime"),numvouts,numvins)) != 0 )
8 years ago
ptr = kmd_transactionadd(coin,tx,numvouts,numvins);
8 years ago
else printf("error init tx ptr.%p tx.%p\n",ptr,tx);
8 years ago
}
else
{
if ( (ptr= kmd_transaction(coin,txid)) != 0 )
tx = ptr->tx;
}
if ( ptr != 0 && tx != 0 )
{
if ( iter == 0 )
8 years ago
{
8 years ago
sobj = addresses = 0;
8 years ago
for (j=0; j<numvouts; j++)
8 years ago
{
8 years ago
vout = jitem(vouts,j);
8 years ago
if ( (sobj= jobj(vout,"scriptPubKey")) != 0 && (addresses= jarray(&n,sobj,"addresses")) != 0 )
{
8 years ago
bitcoin_addr2rmd160(&type_rmd160[0],&type_rmd160[1],jstri(addresses,0));
8 years ago
kmd_transactionvout(coin,ptr,j,jdouble(vout,"value")*SATOSHIDEN,type_rmd160,zero,-1);
8 years ago
} // else printf("missing sobj.%p or addresses.%p (%s)\n",sobj,addresses,jprint(vout,0)); //likely OP_RETURN
8 years ago
sobj = addresses = 0;
8 years ago
}
8 years ago
if ( coin->kmd_txidfp != 0 )
{
ptr->fpos = ftell(coin->kmd_txidfp);
fwrite(tx,1,sizeof(*tx) + tx->numvouts*sizeof(*tx->vouts),coin->kmd_txidfp);
}
8 years ago
}
else
{
8 years ago
if ( coin->kmd_spendfp != 0 )
{
8 years ago
fwrite(&txid,1,sizeof(txid),coin->kmd_spendfp);
8 years ago
fwrite(&numvins,1,sizeof(numvins),coin->kmd_spendfp);
}
8 years ago
for (j=0; j<numvins; j++)
8 years ago
{
8 years ago
bits256 spenttxid; int32_t spentvout;
8 years ago
vin = jitem(vins,j);
8 years ago
spenttxid = jbits256(vin,"txid");
spentvout = jint(vin,"vout");
8 years ago
//if ( bits256_nonz(spenttxid) == 0 || spentvout < 0 )
// printf("null spenttxid ht.%d j.%d spentvout.%d\n",loadheight,j,spentvout);
8 years ago
if ( kmd_transactionvin(coin,txid,j,spenttxid,spentvout) < 0 )
8 years ago
{
8 years ago
printf("error i.%d of numvins.%d (%s)\n",j,numvins,jprint(vin,0));
8 years ago
flag++;
8 years ago
}
8 years ago
if ( coin->kmd_spendfp != 0 )
{
fwrite(&spenttxid,1,sizeof(spenttxid),coin->kmd_spendfp);
fwrite(&spentvout,1,sizeof(spentvout),coin->kmd_spendfp);
}
8 years ago
}
}
8 years ago
} else printf("incomplete at ht.%d i.%d %p %p\n",loadheight,i,ptr,tx);
8 years ago
free_json(txjson);
8 years ago
} else printf("parseerror.(%s)\n",curlstr);
8 years ago
free(curlstr);
}
}
num++;
kmd_flushfiles(coin);
}
free_json(blockjson);
}
8 years ago
if ( flag != 0 || num > 5000 )
8 years ago
break;
8 years ago
coin->kmd_height = loadheight++;
8 years ago
}
return(num);
}
void kmd_bitcoinscan()
{
8 years ago
char *retstr; cJSON *array; int32_t i,n; struct iguana_info *coin; // scan allcoins also
8 years ago
if ( (retstr= dpow_notarychains(0,0,0,0)) != 0 )
{
if ( (array= cJSON_Parse(retstr)) != 0 )
{
if ( (n= cJSON_GetArraySize(array)) > 0 )
{
for (i=0; i<n; i++)
{
if ( (coin= iguana_coinfind(jstri(array,i))) != 0 && strcmp(coin->symbol,"BTC") != 0 )
8 years ago
{
if ( strcmp("KMD",coin->symbol) == 0 )
_kmd_bitcoinscan(coin);
}
8 years ago
}
}
free_json(array);
}
free(retstr);
}
}
#endif