test
[VerusCoin.git] / src / komodo_gateway.h
CommitLineData
9b0e1808 1/******************************************************************************
2 * Copyright © 2014-2016 The SuperNET Developers. *
3 * *
4 * See the AUTHORS, DEVELOPER-AGREEMENT and LICENSE files at *
5 * the top-level directory of this distribution for the individual copyright *
6 * holder information and the developer policies on copyright and licensing. *
7 * *
8 * Unless otherwise agreed in a custom licensing agreement, no part of the *
9 * SuperNET software, including this file may be copied, modified, propagated *
10 * or distributed except according to the terms contained in the LICENSE file *
11 * *
12 * Removal or modification of this copyright notice is prohibited. *
13 * *
14 ******************************************************************************/
15
f38345e9 16// paxdeposit equivalent in reverse makes opreturn and KMD does the same in reverse
f38345e9 17
3cbfd2b4 18int32_t pax_fiatstatus(uint64_t *deposited,uint64_t *issued,uint64_t *withdrawn,uint64_t *approved,uint64_t *redeemed,char *base)
19{
20 int32_t baseid; struct komodo_state *sp;
21 if ( (baseid= komodo_baseid(base)) >= 0 )
22 {
23 if ( (sp= komodo_stateptrget(base)) != 0 )
24 {
25 *deposited = sp->deposited;
26 *issued = sp->issued;
27 *withdrawn = sp->withdrawn;
28 *approved = sp->approved;
29 *redeemed = sp->redeemed;
1db587b5 30 //printf("%p %s %.8f %.8f %.8f %.8f %.8f\n",sp,base,dstr(*deposited),dstr(*issued),dstr(*withdrawn),dstr(*approved),dstr(*redeemed));
3cbfd2b4 31 return(0);
ee5e5744 32 } else printf("pax_fiatstatus cant get basesp.%s\n",base);
33 } else printf("pax_fiatstatus illegal base.%s\n",base);
3cbfd2b4 34 return(-1);
35}
36
dfe40c43 37struct pax_transaction *komodo_paxfind(uint256 txid,uint16_t vout)
6210f328 38{
39 struct pax_transaction *pax;
40 pthread_mutex_lock(&komodo_mutex);
41 HASH_FIND(hh,PAX,&txid,sizeof(txid),pax);
6210f328 42 pthread_mutex_unlock(&komodo_mutex);
43 return(pax);
44}
45
dfe40c43 46struct pax_transaction *komodo_paxmark(int32_t height,uint256 txid,uint16_t vout,int32_t mark)
6210f328 47{
48 struct pax_transaction *pax;
49 pthread_mutex_lock(&komodo_mutex);
50 HASH_FIND(hh,PAX,&txid,sizeof(txid),pax);
2ab43fd2 51 if ( pax == 0 )
52 {
53 pax = (struct pax_transaction *)calloc(1,sizeof(*pax));
54 pax->txid = txid;
55 pax->vout = vout;
56 HASH_ADD_KEYPTR(hh,PAX,&pax->txid,sizeof(pax->txid),pax);
32d525eb 57 //printf("ht.%d create pax.%p mark.%d\n",height,pax,mark);
2ab43fd2 58 }
6210f328 59 if ( pax != 0 )
60 {
61 pax->marked = mark;
f1e6bb01 62 //int32_t i; for (i=0; i<32; i++)
63 // printf("%02x",((uint8_t *)&txid)[i]);
64 //printf(" paxmark.ht %d vout%d\n",mark,vout);
6210f328 65 }
66 pthread_mutex_unlock(&komodo_mutex);
67 return(pax);
68}
429dabb5 69
d6be719d 70void komodo_gateway_deposit(char *coinaddr,uint64_t value,char *symbol,uint64_t fiatoshis,uint8_t *rmd160,uint256 txid,uint16_t vout,int32_t height,int32_t otherheight,char *source,int32_t approved) // assetchain context
d43c7a93 71{
04652b71 72 struct pax_transaction *pax; int32_t addflag = 0; struct komodo_state *sp,*basesp; char str[16],dest[16],*s;
bffa91b2 73 sp = komodo_stateptr(str,dest);
d43c7a93 74 pthread_mutex_lock(&komodo_mutex);
75 HASH_FIND(hh,PAX,&txid,sizeof(txid),pax);
76 if ( pax == 0 )
b2d64a0f 77 {
d43c7a93 78 pax = (struct pax_transaction *)calloc(1,sizeof(*pax));
8d52488f 79 pax->txid = txid;
80 pax->vout = vout;
81 HASH_ADD_KEYPTR(hh,PAX,&pax->txid,sizeof(pax->txid),pax);
7961668b 82 addflag = 1;
1fc75a27 83 if ( ASSETCHAINS_SYMBOL[0] == 0 )
84 {
85 int32_t i; for (i=0; i<32; i++)
86 printf("%02x",((uint8_t *)&txid)[i]);
5ce8bf22 87 printf(" v.%d [%s] kht.%d ht.%d create pax.%p symbol.%s source.%s\n",vout,ASSETCHAINS_SYMBOL,height,otherheight,pax,symbol,source);
1fc75a27 88 }
b2d64a0f 89 }
8d52488f 90 pthread_mutex_unlock(&komodo_mutex);
d43c7a93 91 if ( coinaddr != 0 )
92 {
93 strcpy(pax->coinaddr,coinaddr);
9ccd3f33 94 if ( value != 0 )
95 pax->komodoshis = value;
96 if ( symbol != 0 )
97 strcpy(pax->symbol,symbol);
cd26c1f3 98 if ( source != 0 )
99 strcpy(pax->source,source);
9ccd3f33 100 if ( fiatoshis != 0 )
101 pax->fiatoshis = fiatoshis;
102 if ( rmd160 != 0 )
103 memcpy(pax->rmd160,rmd160,20);
104 if ( height != 0 )
105 pax->height = height;
106 if ( otherheight != 0 )
107 pax->otherheight = otherheight;
1db587b5 108 if ( pax->didstats == 0 && fiatoshis == 0 )
7961668b 109 {
1db587b5 110 if ( (pax->approved= approved) != 0 )
d6be719d 111 {
1db587b5 112 if ( (basesp= komodo_stateptrget(symbol)) != 0 )
bafc0147 113 {
1db587b5 114 basesp->approved += fiatoshis;
115 printf("########### %p approved %s += %.8f\n",basesp,symbol,dstr(fiatoshis));
116 }
117 }
118 else
119 {
120 if ( ASSETCHAINS_SYMBOL[0] == 0 )
121 {
122 if ( (basesp= komodo_stateptrget(source)) != 0 )
0fa85cc3 123 {
1db587b5 124 basesp->withdrawn += fiatoshis;
125 printf("########### %p withdrawn %s += %.8f\n",basesp,source,dstr(fiatoshis));
0fa85cc3 126 }
bafc0147 127 }
128 else
129 {
1db587b5 130 if ( (basesp= komodo_stateptrget(symbol)) != 0 )
bafc0147 131 {
1db587b5 132 basesp->deposited += fiatoshis;
133 printf("########### %p deposited %s += %.8f\n",basesp,symbol,dstr(fiatoshis));
bafc0147 134 }
135 }
1db587b5 136 }
137 pax->didstats = 1;
138 }
139 if ( pax->marked == 0 )
140 {
141 if ( addflag != 0 )
142 {
143 if ( (pax->approved= approved) != 0 )
144 s = (char *)"APPROVED";
145 else s = (char *)((ASSETCHAINS_SYMBOL[0] == 0) ? "WITHDRAW" : "DEPOSIT");
3cbfd2b4 146 printf("[%s] addflag.%d ADD %s/%s %s %.8f -> %s TO PAX ht.%d otherht.%d total %.8f\n",ASSETCHAINS_SYMBOL,addflag,s,symbol,source,dstr(ASSETCHAINS_SYMBOL[0]==0?pax->komodoshis:pax->fiatoshis),pax->coinaddr,pax->height,pax->otherheight,dstr(komodo_paxtotal()));
d6be719d 147 }
7961668b 148 }
0dca8d4c 149 //else printf("%p MARKED.%d DEPOSIT %s %.8f -> %s TO PAX ht.%d otherht.%d\n",pax,pax->marked,symbol,dstr(fiatoshis),coinaddr,height,otherheight);
d43c7a93 150 }
151 else
152 {
153 pax->marked = height;
1fc75a27 154 printf("pax.%p MARK DEPOSIT ht.%d other.%d\n",pax,height,otherheight);
d43c7a93 155 }
d43c7a93 156}
157
7cc6844b 158int32_t komodo_rwapproval(int32_t rwflag,uint8_t *opretbuf,struct pax_transaction *pax)
159{
160 int32_t i,len = 0;
ddf827b2 161 if ( rwflag == 1 )
162 {
163 for (i=0; i<32; i++)
164 opretbuf[len++] = ((uint8_t *)&pax->txid)[i];
165 opretbuf[len++] = pax->vout & 0xff;
166 opretbuf[len++] = (pax->vout >> 8) & 0xff;
167 }
168 else
169 {
170 for (i=0; i<32; i++)
a6972662 171 ((uint8_t *)&pax->txid)[i] = opretbuf[len++];
fbd1641c 172 for (i=0; i<32; i++)
a6972662 173 printf("%02x",((uint8_t *)&pax->txid)[31-i]);
ddf827b2 174 pax->vout = opretbuf[len++];
175 pax->vout += ((uint32_t)opretbuf[len++] << 8);
ad66994d 176 printf(" txid v.%d\n",pax->vout);
ddf827b2 177 }
ad66994d 178 len += iguana_rwnum(rwflag,&opretbuf[len],sizeof(pax->komodoshis),&pax->komodoshis);
ddf827b2 179 len += iguana_rwnum(rwflag,&opretbuf[len],sizeof(pax->fiatoshis),&pax->fiatoshis);
180 len += iguana_rwnum(rwflag,&opretbuf[len],sizeof(pax->height),&pax->height);
181 len += iguana_rwnum(rwflag,&opretbuf[len],sizeof(pax->otherheight),&pax->otherheight);
182 if ( rwflag != 0 )
183 {
184 memcpy(&opretbuf[len],pax->rmd160,20), len += 20;
185 for (i=0; i<4; i++)
186 opretbuf[len++] = pax->source[i];
187 }
188 else
189 {
190 memcpy(pax->rmd160,&opretbuf[len],20), len += 20;
191 for (i=0; i<4; i++)
192 pax->source[i] = opretbuf[len++];
193 }
7cc6844b 194 return(len);
195}
196
b89ab77c 197int32_t komodo_issued_opreturn(char *base,uint256 *txids,uint16_t *vouts,int64_t *values,int64_t *srcvalues,int32_t *kmdheights,int32_t *otherheights,int8_t *baseids,uint8_t *rmd160s,uint8_t *opretbuf,int32_t opretlen,int32_t iskomodo)
63b289ad 198{
947d956f 199 struct pax_transaction p; int32_t i,n=0,j,len=0,incr,height,otherheight; uint8_t type,rmd160[20]; uint64_t fiatoshis; char symbol[16];
16bed6ac 200 incr = 34 + (iskomodo * (2*sizeof(fiatoshis) + 2*sizeof(height) + 20 + 4));
63b289ad 201 for (i=0; i<4; i++)
202 base[i] = opretbuf[opretlen-4+i];
6d898f42 203 //for (i=0; i<opretlen; i++)
204 // printf("%02x",opretbuf[i]);
205 //printf(" opretlen.%d vs %d incr.%d\n",opretlen,(int32_t)(2*sizeof(fiatoshis) + 2*sizeof(height) + 20 + 4),incr);
986df802 206 if ( ASSETCHAINS_SYMBOL[0] == 0 || strncmp(ASSETCHAINS_SYMBOL,base,strlen(base)) == 0 )
63b289ad 207 {
947d956f 208 type = opretbuf[0];
63b289ad 209 opretbuf++, opretlen--;
e8433f7a 210 for (n=0; n<opretlen/incr; n++)
63b289ad 211 {
05d91eb2 212 if ( iskomodo != 0 )
213 {
e8433f7a 214 memset(&p,0,sizeof(p));
ffec138e 215 len += komodo_rwapproval(0,&opretbuf[len],&p);
b89ab77c 216 if ( values != 0 && srcvalues != 0 && kmdheights != 0 && otherheights != 0 && baseids != 0 && rmd160s != 0 )
1ed46112 217 {
63342b19 218 txids[n] = p.txid;
219 vouts[n] = p.vout;
a3f1fb69 220 values[n] = (ASSETCHAINS_SYMBOL[0] == 0) ? p.komodoshis : p.fiatoshis;
b89ab77c 221 srcvalues[n] = (ASSETCHAINS_SYMBOL[0] == 0) ? p.fiatoshis : p.komodoshis;
a3f1fb69 222 kmdheights[n] = p.height;
223 otherheights[n] = p.otherheight;
7cc6844b 224 memcpy(&rmd160s[n * 20],p.rmd160,20);
1dbea872 225 baseids[n] = komodo_baseid(p.source);
71c9af7c 226 {
227 char coinaddr[64];
228 bitcoin_address(coinaddr,60,&rmd160s[n * 20],20);
947d956f 229 printf(">>>>>>> %s: (%s) fiat %.8f kmdheight.%d other.%d -> %s %.8f\n",type=='A'?"approvedA":"issuedX",baseids[n]>=0?CURRENCIES[baseids[n]]:"???",dstr(p.fiatoshis),kmdheights[n],otherheights[n],coinaddr,dstr(values[n]));
71c9af7c 230 }
52e87248 231 }
05d91eb2 232 }
7cc6844b 233 else
234 {
235 for (j=0; j<32; j++)
236 {
237 ((uint8_t *)&txids[n])[j] = opretbuf[len++];
238 //printf("%02x",((uint8_t *)&txids[n])[j]);
239 }
240 vouts[n] = opretbuf[len++];
241 vouts[n] = (opretbuf[len++] << 8) | vouts[n];
242 }
6d898f42 243 //printf(" komodo_issued_opreturn issuedtxid v%d i.%d opretlen.%d\n",vouts[n],n,opretlen);
63b289ad 244 }
245 }
246 return(n);
247}
248
f1db88ea 249uint64_t komodo_paxtotal()
250{
992c3be5 251 struct pax_transaction *pax,*tmp; char symbol[16],dest[16]; int32_t ht; int64_t checktoshis; uint64_t seed,total = 0;
48a3cd18 252 if ( komodo_isrealtime(&ht) == 0 )
f1db88ea 253 return(0);
ede04b12 254 komodo_stateptr(symbol,dest);
f1db88ea 255 HASH_ITER(hh,PAX,pax,tmp)
256 {
10694486 257 //printf("pax.%s marked.%d %.8f -> %.8f\n",pax->symbol,pax->marked,dstr(pax->komodoshis),dstr(pax->fiatoshis));
ede04b12 258 if ( strcmp(symbol,pax->symbol) == 0 )
f1db88ea 259 {
ede04b12 260 if ( pax->marked == 0 )
261 {
262 if ( komodo_is_issuer() != 0 )
263 total += pax->fiatoshis;
f2db1a97 264 else if ( pax->approved != 0 )
992c3be5 265 {
266 if ( pax->validated != 0 )
267 total += pax->komodoshis;
268 else
269 {
270 seed = 0;
f186b8a1 271 checktoshis = komodo_paxprice(&seed,pax->height,pax->source,(char *)"KMD",(uint64_t)pax->fiatoshis);
0fa85cc3 272 //printf("PAX_fiatdest ht.%d price %s %.8f -> KMD %.8f vs %.8f\n",pax->height,pax->symbol,(double)pax->fiatoshis/COIN,(double)pax->komodoshis/COIN,(double)checktoshis/COIN);
273 //printf(" v%d %.8f k.%d ht.%d\n",pax->vout,dstr(pax->komodoshis),pax->height,pax->otherheight);
992c3be5 274 if ( seed != 0 )
275 {
e8cbe5fb 276 if ( checktoshis >= pax->komodoshis )
992c3be5 277 {
278 total += pax->komodoshis;
279 pax->validated = pax->komodoshis;
280 } else pax->marked = pax->height;
281 }
282 }
283 }
ede04b12 284 }
f1db88ea 285 }
286 }
986df802 287 //printf("paxtotal %.8f\n",dstr(total));
f1db88ea 288 return(total);
289}
290
7cc6844b 291int32_t komodo_pending_withdraws(char *opretstr)
f360ea0a 292{
ef1a9636 293 struct pax_transaction *pax,*tmp; uint8_t opretbuf[16384]; int32_t ht,len=0; uint64_t total = 0;
f360ea0a 294 if ( komodo_isrealtime(&ht) == 0 || ASSETCHAINS_SYMBOL[0] != 0 )
295 return(0);
296 HASH_ITER(hh,PAX,pax,tmp)
297 {
f97d3439 298 //printf("pax %s marked.%u approved.%u\n",pax->symbol,pax->marked,pax->approved);
f360ea0a 299 if ( pax->marked == 0 && strcmp((char *)"KMD",pax->symbol) == 0 && pax->approved == 0 )
300 {
301 // add 'A' opreturn entry
7cc6844b 302 if ( len == 0 )
303 opretbuf[len++] = 'A';
304 len += komodo_rwapproval(1,&opretbuf[len],pax);
75e47988 305 printf("%s.(marked.%u approved.%d) %p\n",pax->source,pax->marked,pax->approved,pax);
f360ea0a 306 }
307 }
7cc6844b 308 if ( len > 0 )
309 init_hexbytes_noT(opretstr,opretbuf,len);
310 else opretstr[0] = 0;
2afc2dfd 311 printf("komodo_pending_withdraws len.%d PAXTOTAL %.8f\n",len,dstr(komodo_paxtotal()));
f360ea0a 312 return(len);
313}
a4c67285 314
635dd34d 315int32_t komodo_gateway_deposits(CMutableTransaction *txNew,char *base,int32_t tokomodo)
429dabb5 316{
ef1a9636 317 struct pax_transaction *pax,*tmp; char symbol[16],dest[16]; uint8_t *script,opcode,opret[16384],data[16384]; int32_t i,baseid,ht,len=0,opretlen=0,numvouts=1; struct komodo_state *sp; uint64_t mask;
635dd34d 318 sp = komodo_stateptr(symbol,dest);
27bf3c5e 319 strcpy(symbol,base);
429dabb5 320 PENDING_KOMODO_TX = 0;
a3f23ee2 321 if ( tokomodo == 0 )
48e96ba1 322 {
77be6cd9 323 opcode = 'I';
48a3cd18 324 if ( komodo_isrealtime(&ht) == 0 )
48e96ba1 325 return(0);
48e96ba1 326 }
77be6cd9 327 else opcode = 'X';
c169f64b 328 HASH_ITER(hh,PAX,pax,tmp)
429dabb5 329 {
986df802 330 //printf("pax.%s marked.%d %.8f -> %.8f\n",pax->symbol,pax->marked,dstr(pax->komodoshis),dstr(pax->fiatoshis));
f186b8a1 331 if ( strcmp(symbol,"KMD") == 0 && (pax->approved == 0 || pax->validated == 0) )
992c3be5 332 continue;
333 if ( pax->marked != 0 || strcmp(pax->symbol,symbol) != 0 )
e5430f52 334 continue;
3cbfd2b4 335 if ( ASSETCHAINS_SYMBOL[0] != 0 )
635dd34d 336 printf("pax.%s marked.%d %.8f -> %.8f\n",ASSETCHAINS_SYMBOL,pax->marked,dstr(pax->komodoshis),dstr(pax->fiatoshis));
e5430f52 337 txNew->vout.resize(numvouts+1);
1fc75a27 338 txNew->vout[numvouts].nValue = (opcode == 'I') ? pax->fiatoshis : pax->komodoshis;
e5430f52 339 txNew->vout[numvouts].scriptPubKey.resize(25);
340 script = (uint8_t *)&txNew->vout[numvouts].scriptPubKey[0];
341 *script++ = 0x76;
342 *script++ = 0xa9;
343 *script++ = 20;
344 memcpy(script,pax->rmd160,20), script += 20;
345 *script++ = 0x88;
346 *script++ = 0xac;
a3f23ee2 347 if ( tokomodo == 0 )
16bed6ac 348 {
349 for (i=0; i<32; i++)
16bed6ac 350 data[len++] = ((uint8_t *)&pax->txid)[i];
16bed6ac 351 data[len++] = pax->vout & 0xff;
352 data[len++] = (pax->vout >> 8) & 0xff;
e5430f52 353 PENDING_KOMODO_TX += pax->fiatoshis;
16bed6ac 354 }
fbc4209b 355 else
356 {
e0357628 357 len += komodo_rwapproval(1,&data[len],pax);
fbc4209b 358 PENDING_KOMODO_TX += pax->komodoshis;
05d91eb2 359 printf(" vout.%u DEPOSIT %.8f <- pax.%s pending %.8f | ",pax->vout,(double)txNew->vout[numvouts].nValue/COIN,symbol,dstr(PENDING_KOMODO_TX));
fbc4209b 360 }
e5430f52 361 if ( numvouts++ >= 64 )
362 break;
429dabb5 363 }
364 if ( numvouts > 1 )
365 {
0e3472c1 366 if ( tokomodo != 0 )
27bf3c5e 367 strcpy(symbol,(char *)"KMD");
9ef47e29 368 for (i=0; symbol[i]!=0; i++)
369 data[len++] = symbol[i];
a5ad8f02 370 data[len++] = 0;
77be6cd9 371 opretlen = komodo_opreturnscript(opret,opcode,data,len);
50824530 372 txNew->vout.resize(numvouts+1);
373 txNew->vout[numvouts].nValue = 0;
374 txNew->vout[numvouts].scriptPubKey.resize(opretlen);
375 script = (uint8_t *)&txNew->vout[numvouts].scriptPubKey[0];
429dabb5 376 memcpy(script,opret,opretlen);
23d955d4 377 printf("MINER deposits.%d (%s) vouts.%d %.8f opretlen.%d\n",tokomodo,ASSETCHAINS_SYMBOL,numvouts,dstr(PENDING_KOMODO_TX),opretlen);
d9a9d562 378 return(1);
9ef47e29 379 }
d9a9d562 380 return(0);
429dabb5 381}
382
8f64a3a9 383int32_t komodo_check_deposit(int32_t height,const CBlock& block) // verify above block is valid pax pricing
557d9a23 384{
b89ab77c 385 int32_t i,j,n,num,opretlen,offset=1,errs=0,matched=0,kmdheights[64],otherheights[64]; uint256 hash,txids[64]; char symbol[16],base[16]; uint16_t vouts[64]; int8_t baseids[64]; uint8_t *script,opcode,rmd160s[64*20]; int64_t values[64],srcvalues[64]; struct pax_transaction *pax;
1ed46112 386 memset(baseids,0xff,sizeof(baseids));
387 memset(values,0,sizeof(values));
b89ab77c 388 memset(srcvalues,0,sizeof(srcvalues));
f360ea0a 389 memset(rmd160s,0,sizeof(rmd160s));
1ed46112 390 memset(kmdheights,0,sizeof(kmdheights));
391 memset(otherheights,0,sizeof(otherheights));
557d9a23 392 n = block.vtx[0].vout.size();
393 script = (uint8_t *)block.vtx[0].vout[n-1].scriptPubKey.data();
12d47153 394 if ( n <= 2 || script[0] != 0x6a )
395 return(0);
396 offset += komodo_scriptitemlen(&opretlen,&script[offset]);
77be6cd9 397 if ( ASSETCHAINS_SYMBOL[0] == 0 )
398 {
85de2861 399 //for (i=0; i<opretlen; i++)
400 // printf("%02x",script[i]);
401 //printf(" height.%d checkdeposit n.%d [%02x] [%c] %d vs %d\n",height,n,script[0],script[offset],script[offset],'X');
77be6cd9 402 opcode = 'X';
09a235e1 403 strcpy(symbol,(char *)"KMD");
77be6cd9 404 }
405 else
406 {
407 strcpy(symbol,ASSETCHAINS_SYMBOL);
408 opcode = 'I';
409 }
410 if ( script[offset] == opcode && opretlen < block.vtx[0].vout[n-1].scriptPubKey.size() )
557d9a23 411 {
b89ab77c 412 if ( (num= komodo_issued_opreturn(base,txids,vouts,values,srcvalues,kmdheights,otherheights,baseids,rmd160s,&script[offset],opretlen,opcode == 'X')) > 0 )
557d9a23 413 {
414 for (i=1; i<n-1; i++)
415 {
dfe40c43 416 if ( (pax= komodo_paxfind(txids[i-1],vouts[i-1])) != 0 )
5a2c5b6f 417 {
f10b8e2e 418 if ( ((opcode == 'I' && pax->fiatoshis == block.vtx[0].vout[i].nValue) || (opcode == 'X' && pax->komodoshis == block.vtx[0].vout[i].nValue)) )
419 {
c35c0838 420 if ( pax->marked != 0 && height >= 80820 )
f10b8e2e 421 errs++;
422 else matched++;
8c6619bc 423 if ( opcode == 'X' )
1d996b5f 424 printf("errs.%d i.%d match %.8f == %.8f pax.%p\n",errs,i,dstr(pax != 0 ? pax->komodoshis:-1),dstr(block.vtx[0].vout[i].nValue),pax);
f10b8e2e 425 }
426 else
427 {
05d91eb2 428 if ( opcode == 'X' )
429 {
430 for (j=0; j<32; j++)
947d956f 431 printf("%02x",((uint8_t *)&txids[i-1])[j]);
432 printf(" cant paxfind X txid\n");
05d91eb2 433 }
f10b8e2e 434 }
5a2c5b6f 435 }
cb040aa1 436 else
437 {
05d91eb2 438 if ( opcode == 'X' )
439 {
1d996b5f 440 hash = block.GetHash();
05d91eb2 441 for (j=0; j<32; j++)
947d956f 442 printf("%02x",((uint8_t *)&hash)[j]);
443 printf(" ht.%d blockhash X couldnt find vout.[%d]\n",height,i);
ce94767e 444 } else if ( opcode == 'I' )
445 matched++;
cb040aa1 446 }
557d9a23 447 }
81041ab2 448 if ( matched != num )
449 {
0dca8d4c 450 // can easily happen depending on order of loading
7eb21300 451 if ( height > 100000 && opcode == 'X' )
52b2e68d 452 {
453 printf("REJECT: ht.%d (%c) matched.%d vs num.%d\n",height,opcode,matched,num);
454 return(-1);
455 }
81041ab2 456 }
557d9a23 457 }
b98053e2 458 //printf("opretlen.%d num.%d\n",opretlen,num);
557d9a23 459 }
460 return(0);
461}
462
e97061cb 463int32_t komodo_paxcmp(uint64_t value,uint64_t checkvalue,uint64_t seed)
464{
e5e64f55 465 int32_t ratio;
e97061cb 466 if ( seed == 0 )
467 {
e5e64f55 468 value <<= 10;
85586b43 469 ratio = (value / checkvalue);
e5e64f55 470 if ( ratio >= 1023 && ratio <= 1025 )
471 return(0);
472 else return(-1);
e97061cb 473 }
474 return(value != checkvalue);
475}
476
cd26c1f3 477const char *komodo_opreturn(int32_t height,uint64_t value,uint8_t *opretbuf,int32_t opretlen,uint256 txid,uint16_t vout,char *source)
429dabb5 478{
e97061cb 479 uint8_t rmd160[20],rmd160s[64*20],addrtype,shortflag,pubkey33[33]; int32_t didstats,i,j,n,len,tokomodo,kmdheight,otherheights[64],kmdheights[64]; int8_t baseids[64]; char base[4],coinaddr[64],destaddr[64]; uint256 txids[64]; uint16_t vouts[64]; uint64_t convtoshis,seed; int64_t fiatoshis,komodoshis,checktoshis,values[64],srcvalues[64]; struct pax_transaction *pax; struct komodo_state *basesp; double diff;
1ed46112 480 const char *typestr = "unknown";
481 memset(baseids,0xff,sizeof(baseids));
482 memset(values,0,sizeof(values));
06cfcf31 483 memset(srcvalues,0,sizeof(srcvalues));
f360ea0a 484 memset(rmd160s,0,sizeof(rmd160s));
1ed46112 485 memset(kmdheights,0,sizeof(kmdheights));
486 memset(otherheights,0,sizeof(otherheights));
95db8239 487 tokomodo = (komodo_is_issuer() == 0);
0a611c1e 488 if ( opretbuf[0] == 'D' )
64bb0834 489 {
05a37d87 490 if ( opretlen == 38 ) // any KMD tx
64bb0834 491 {
05a37d87 492 iguana_rwnum(0,&opretbuf[34],sizeof(kmdheight),&kmdheight);
abdd8672 493 memset(base,0,sizeof(base));
494 PAX_pubkey(0,&opretbuf[1],&addrtype,rmd160,base,&shortflag,&fiatoshis);
abdd8672 495 bitcoin_address(coinaddr,addrtype,rmd160,20);
496 checktoshis = PAX_fiatdest(&seed,tokomodo,destaddr,pubkey33,coinaddr,kmdheight,base,fiatoshis);
497 typestr = "deposit";
1c6e217d 498 printf("(%s) (%s) kmdheight.%d vs height.%d check %.8f vs %.8f tokomodo.%d %d seed.%llx\n",ASSETCHAINS_SYMBOL,base,kmdheight,height,dstr(checktoshis),dstr(value),komodo_is_issuer(),strncmp(ASSETCHAINS_SYMBOL,base,strlen(base)) == 0,(long long)seed);
05a37d87 499 if ( kmdheight <= height )
6e576848 500 {
c98b3a08 501 for (i=0; i<32; i++)
502 printf("%02x",((uint8_t *)&txid)[i]);
503 printf(" <- txid.v%u ",vout);
504 for (i=0; i<33; i++)
505 printf("%02x",pubkey33[i]);
506 printf(" checkpubkey check %.8f v %.8f dest.(%s) kmdheight.%d height.%d\n",dstr(checktoshis),dstr(value),destaddr,kmdheight,height);
f5e3cdfa 507 didstats = 0;
e97061cb 508 if ( komodo_paxcmp(value,checktoshis,seed) == 0 )//value >= checktoshis-(checktoshis >> 8) )
05a37d87 509 {
3f9cad6d 510 if ( (pax= komodo_paxfind(txid,vout)) == 0 )
05a37d87 511 {
c98b3a08 512 if ( (basesp= komodo_stateptrget(base)) != 0 )
05a37d87 513 {
c98b3a08 514 basesp->deposited += fiatoshis;
f5e3cdfa 515 didstats = 1;
c98b3a08 516 printf("########### %p deposited %s += %.8f\n",basesp,base,dstr(fiatoshis));
517 }
518 if ( tokomodo == 0 && strncmp(ASSETCHAINS_SYMBOL,base,strlen(base)) == 0 )
f5e3cdfa 519 {
d6be719d 520 komodo_gateway_deposit(coinaddr,value,base,fiatoshis,rmd160,txid,vout,kmdheight,height,(char *)"KMD",0);
f5e3cdfa 521 }
3f9cad6d 522 }
523 else if ( pax->didstats == 0 )
524 {
525 if ( (basesp= komodo_stateptrget(base)) != 0 )
526 {
527 basesp->deposited += fiatoshis;
528 didstats = 1;
529 printf("########### %p deposited %s += %.8f\n",basesp,base,dstr(fiatoshis));
530 }
531 }
532 if ( didstats != 0 && (pax= komodo_paxfind(txid,vout)) != 0 )
533 pax->didstats = 1;
8e3430ee 534 }
8bc1bcad 535 }
64bb0834 536 }
537 }
01d9ed2f 538 else if ( opretbuf[0] == 'W' && opretlen >= 38 )
539 {
540 iguana_rwnum(0,&opretbuf[34],sizeof(kmdheight),&kmdheight);
541 memset(base,0,sizeof(base));
c3d94aec 542 PAX_pubkey(0,&opretbuf[1],&addrtype,rmd160,base,&shortflag,&komodoshis);
01d9ed2f 543 bitcoin_address(coinaddr,addrtype,rmd160,20);
c3d94aec 544 checktoshis = PAX_fiatdest(&seed,tokomodo,destaddr,pubkey33,coinaddr,kmdheight,base,value);
01d9ed2f 545 typestr = "withdraw";
c3d94aec 546 printf("%s.height.%d vs height.%d check %.8f/%.8f vs %.8f tokomodo.%d %d seed.%llx -> (%s)\n",ASSETCHAINS_SYMBOL,kmdheight,height,dstr(checktoshis),dstr(komodoshis),dstr(value),komodo_is_issuer(),strncmp(ASSETCHAINS_SYMBOL,base,strlen(base)) == 0,(long long)seed,coinaddr);
f5e3cdfa 547 didstats = 0;
e97061cb 548 if ( komodo_paxcmp(komodoshis,checktoshis,seed) == 0 ) //checktoshis <= komodoshis+(komodoshis >> 10) )
01d9ed2f 549 {
3f9cad6d 550 if ( (pax= komodo_paxfind(txid,vout)) == 0 || pax->didstats == 0 )
0b556992 551 {
3cbfd2b4 552 if ( (basesp= komodo_stateptrget(base)) != 0 )
0fa85cc3 553 {
5ce8bf22 554 basesp->withdrawn += value;
f5e3cdfa 555 didstats = 1;
ad16127c 556 printf("########### %p withdrawn %s += %.8f\n",basesp,base,dstr(value));
0fa85cc3 557 }
0b556992 558 printf("notarize %s %.8f -> %.8f kmd.%d other.%d\n",ASSETCHAINS_SYMBOL,dstr(value),dstr(komodoshis),kmdheight,height);
ea365a71 559 }
d6be719d 560 komodo_gateway_deposit(coinaddr,komodoshis,(char *)"KMD",value,rmd160,txid,vout,kmdheight,height,source,0);
f5e3cdfa 561 if ( didstats != 0 && (pax= komodo_paxfind(txid,vout)) != 0 )
562 pax->didstats = 1;
a4c67285 563 }
564 }
565 else if ( tokomodo != 0 && opretbuf[0] == 'A' )
566 {
52b2e68d 567 if ( ASSETCHAINS_SYMBOL[0] != 0 )
826bfe51 568 {
569 for (i=0; i<opretlen; i++)
570 printf("%02x",opretbuf[i]);
74a9722e 571 printf(" opret[%c] else path tokomodo.%d ht.%d before %.8f\n",opretbuf[0],tokomodo,height,dstr(komodo_paxtotal()));
826bfe51 572 }
b89ab77c 573 if ( (n= komodo_issued_opreturn(base,txids,vouts,values,srcvalues,kmdheights,otherheights,baseids,rmd160s,opretbuf,opretlen,1)) > 0 )
a4c67285 574 {
575 for (i=0; i<n; i++)
576 {
b89ab77c 577 if ( baseids[i] < 0 )
578 continue;
f5e3cdfa 579 didstats = 0;
0cc6ad81 580 seed = 0;
992c3be5 581 checktoshis = komodo_paxprice(&seed,kmdheights[i],CURRENCIES[baseids[i]],(char *)"KMD",(uint64_t)srcvalues[i]);
582 printf("PAX_fiatdest ht.%d price %s %.8f -> KMD %.8f vs %.8f\n",kmdheights[i],CURRENCIES[baseids[i]],(double)srcvalues[i]/COIN,(double)values[i]/COIN,(double)checktoshis/COIN);
26ffac88 583 for (j=0; j<32; j++)
584 printf("%02x",((uint8_t *)&txids[i])[j]);
71c9af7c 585 printf(" v%d %.8f k.%d ht.%d base.%d\n",vouts[i],dstr(values[i]),kmdheights[i],otherheights[i],baseids[i]);
b89ab77c 586 if ( (pax= komodo_paxfind(txids[i],vouts[i])) == 0 )
a4c67285 587 {
f360ea0a 588 bitcoin_address(coinaddr,60,&rmd160s[i*20],20);
0cc6ad81 589 komodo_gateway_deposit(coinaddr,values[i],CURRENCIES[baseids[i]],srcvalues[i],&rmd160s[i*20],txids[i],vouts[i],kmdheights[i],otherheights[i],CURRENCIES[baseids[i]],kmdheights[i]);
3cbfd2b4 590 if ( (basesp= komodo_stateptrget(CURRENCIES[baseids[i]])) != 0 )
0fa85cc3 591 {
3cbfd2b4 592 basesp->approved += srcvalues[i];
f5e3cdfa 593 didstats = 1;
ad16127c 594 printf("########### %p approved %s += %.8f\n",basesp,CURRENCIES[baseids[i]],dstr(srcvalues[i]));
0fa85cc3 595 }
3cbfd2b4 596 printf(" i.%d (%s) <- %.8f ADDFLAG APPROVED\n",i,coinaddr,dstr(values[i]));
3f9cad6d 597 }
598 else if ( pax->didstats == 0 )
599 {
600 if ( (basesp= komodo_stateptrget(CURRENCIES[baseids[i]])) != 0 )
601 {
602 basesp->approved += srcvalues[i];
603 didstats = 1;
604 printf("########### %p approved %s += %.8f\n",basesp,CURRENCIES[baseids[i]],dstr(srcvalues[i]));
605 }
606 }
607 else printf(" i.%d of n.%d pax.%p baseids[] %d\n",i,n,pax,baseids[i]);
dfe40c43 608 if ( (pax= komodo_paxfind(txids[i],vouts[i])) != 0 )
06d1a655 609 {
f97d3439 610 pax->approved = kmdheights[i];
f5e3cdfa 611 if ( didstats != 0 )
612 pax->didstats = 1;
dfe40c43 613 printf(" i.%d approved.%d <<<<<<<<<<<<< APPROVED %p\n",i,kmdheights[i],pax);
06d1a655 614 }
ea365a71 615 }
0b556992 616 }
ecfc4f44 617 printf("extra.[%d] after %.8f\n",n,dstr(komodo_paxtotal()));
01d9ed2f 618 }
a4c67285 619 else if ( tokomodo == 0 && opretbuf[0] == 'I' )
429dabb5 620 {
f5e3cdfa 621 if ( strncmp((char *)"KMD",(char *)&opretbuf[opretlen-4],3) != 0 )
429dabb5 622 {
b89ab77c 623 if ( (n= komodo_issued_opreturn(base,txids,vouts,values,srcvalues,kmdheights,otherheights,baseids,rmd160s,opretbuf,opretlen,0)) > 0 )
429dabb5 624 {
63b289ad 625 for (i=0; i<n; i++)
ec35af90 626 {
f5e3cdfa 627 if ( baseids[i] < 0 )
628 continue;
629 didstats = 0;
9ccd3f33 630 bitcoin_address(coinaddr,60,&rmd160s[i*20],20);
3f9cad6d 631 if ( (pax= komodo_paxfind(txids[i],vouts[i])) == 0 || pax->didstats == 0 )
3cbfd2b4 632 {
d61cc479 633 if ( (basesp= komodo_stateptrget(CURRENCIES[baseids[i]])) != 0 )
0fa85cc3 634 {
3cbfd2b4 635 basesp->issued += srcvalues[i];
ad16127c 636 printf("########### %p issued %s += %.8f\n",basesp,base,dstr(srcvalues[i]));
0fa85cc3 637 }
f5e3cdfa 638 didstats = 1;
639 }
640 if ( komodo_paxmark(height,txids[i],vouts[i],height) == 0 )
641 {
d6be719d 642 komodo_gateway_deposit(coinaddr,0,0,0,0,txids[i],vouts[i],height,0,CURRENCIES[baseids[i]],0);
3cbfd2b4 643 }
f5e3cdfa 644 if ( didstats != 0 && (pax= komodo_paxfind(txids[i],vouts[i])) != 0 )
645 pax->didstats = 1;
ec35af90 646 }
429dabb5 647 }
429dabb5 648 }
649 }
ca3c6549 650 else if ( opretbuf[0] == 'X' )
651 {
4c58b338 652 printf("got X opreturn height.%d\n",height);
653 if ( (n= komodo_issued_opreturn(base,txids,vouts,values,srcvalues,kmdheights,otherheights,baseids,rmd160s,opretbuf,opretlen,1)) > 0 )
654 {
655 for (i=0; i<n; i++)
656 {
3f9cad6d 657 if ( baseids[i] < 0 )
658 continue;
f5e3cdfa 659 didstats = 0;
4c58b338 660 bitcoin_address(coinaddr,60,&rmd160s[i*20],20);
cddf571e 661 printf("i.%d of %d: %.8f -> %s\n",i,n,dstr(values[i]),coinaddr);
3f9cad6d 662 if ( (pax= komodo_paxfind(txids[i],vouts[i])) == 0 || pax->didstats == 0 )
3cbfd2b4 663 {
3f9cad6d 664 if ( (basesp= komodo_stateptrget(CURRENCIES[baseids[i]])) != 0 )
0fa85cc3 665 {
3cbfd2b4 666 basesp->redeemed += srcvalues[i];
f5e3cdfa 667 didstats = 1;
3f9cad6d 668 printf("########### %p redeemed %s += %.8f\n",basesp,CURRENCIES[baseids[i]],dstr(srcvalues[i]));
0fa85cc3 669 }
f5e3cdfa 670 didstats = 1;
671 }
672 if ( komodo_paxmark(height,txids[i],vouts[i],height) == 0 )
4c58b338 673 komodo_gateway_deposit(coinaddr,0,0,0,0,txids[i],vouts[i],height,0,(char *)"KMD",0);
f5e3cdfa 674 if ( didstats != 0 && (pax= komodo_paxfind(txids[i],vouts[i])) != 0 )
675 pax->didstats = 1;
4c58b338 676 }
e988a431 677 } else printf("komodo_issued_opreturn returned %d\n",n);
ca3c6549 678 }
64bb0834 679 return(typestr);
680}
681
30d79208 682void komodo_passport_iteration()
ab918767 683{
635dd34d 684 static long lastpos[34]; static char userpass[33][1024];
685 FILE *fp; int32_t baseid,isrealtime,refid,blocks,longest; struct komodo_state *sp,*refsp; char *retstr,fname[512],*base,symbol[16],dest[16]; uint32_t buf[3]; cJSON *infoobj,*result; uint64_t RTmask = 0;
17899df4 686 while ( KOMODO_INITDONE == 0 )
687 {
688 fprintf(stderr,"PASSPORT iteration waiting for KOMODO_INITDONE\n");
689 sleep(3);
690 }
635dd34d 691 refsp = komodo_stateptr(symbol,dest);
ab918767 692 if ( ASSETCHAINS_SYMBOL[0] == 0 )
67cd296f 693 refid = 33;
635dd34d 694 else refid = komodo_baseid(ASSETCHAINS_SYMBOL)+1; // illegal base -> baseid.-1 -> 0
3085016b 695 //printf("PASSPORT %s refid.%d\n",ASSETCHAINS_SYMBOL,refid);
52f1d788 696 for (baseid=0; baseid<=32; baseid++)
508b0d3c 697 {
ecf6256c 698 sp = 0;
699 isrealtime = 0;
f789edde 700 base = (char *)CURRENCIES[baseid];
95a6016d 701 if ( baseid+1 != refid )
ab918767 702 {
055db9b6 703 komodo_statefname(fname,baseid<32?base:(char *)"",(char *)"komodostate");
52f1d788 704 komodo_nameset(symbol,dest,base);
30376a70 705 //port = komodo_port(base,10,&magic) + 1;
52f1d788 706 if ( (fp= fopen(fname,"rb")) != 0 && (sp= komodo_stateptrget(symbol)) != 0 )
ab918767 707 {
52f1d788 708 fseek(fp,0,SEEK_END);
709 if ( ftell(fp) > lastpos[baseid] )
ab918767 710 {
c7caa0da 711 //printf("passport refid.%d %s fname.(%s) base.%s\n",refid,symbol,fname,base);
52f1d788 712 fseek(fp,lastpos[baseid],SEEK_SET);
9534c87a 713 while ( komodo_parsestatefile(sp,fp,symbol,dest) >= 0 )
52f1d788 714 ;
715 lastpos[baseid] = ftell(fp);
a9bb99d2 716 //printf("from.(%s) lastpos[%s] %ld\n",ASSETCHAINS_SYMBOL,CURRENCIES[baseid],lastpos[baseid]);
52f1d788 717 } //else fprintf(stderr,"%s.%ld ",CURRENCIES[baseid],ftell(fp));
718 fclose(fp);
ecf6256c 719 }
a7ef556c 720 komodo_statefname(fname,baseid<32?base:(char *)"",(char *)"realtime");
721 if ( (fp= fopen(fname,"rb")) != 0 )
722 {
723 if ( fread(buf,1,sizeof(buf),fp) == sizeof(buf) )
724 {
f1db88ea 725 sp->CURRENT_HEIGHT = buf[0];
fe0210c0 726 if ( buf[0] != 0 && buf[0] == buf[1] && buf[2] > time(NULL)-60 )
6eb41a2f 727 {
a7ef556c 728 isrealtime = 1;
6eb41a2f 729 RTmask |= (1LL << baseid);
635dd34d 730 memcpy(refsp->RTbufs[baseid+1],buf,sizeof(refsp->RTbufs[baseid+1]));
140fccf8 731 } //else fprintf(stderr,"%s not RT\n",base);
bffa91b2 732 } //else fprintf(stderr,"%s size error RT\n",base);
a7ef556c 733 fclose(fp);
209dc96c 734 } else fprintf(stderr,"%s open error RT\n",base);
a7ef556c 735 }
635dd34d 736 else
a7ef556c 737 {
738 komodo_statefname(fname,baseid<32?base:(char *)"",(char *)"realtime");
739 if ( (fp= fopen(fname,"wb")) != 0 )
740 {
30376a70 741 buf[0] = (uint32_t)chainActive.Tip()->nHeight;
a7ef556c 742 buf[1] = (uint32_t)komodo_longestchain();
743 if ( buf[0] != 0 && buf[0] == buf[1] )
6eb41a2f 744 {
a7ef556c 745 buf[2] = (uint32_t)time(NULL);
48a3cd18 746 RTmask |= (1LL << baseid) | 1;
635dd34d 747 memcpy(refsp->RTbufs[baseid+1],buf,sizeof(refsp->RTbufs[baseid+1]));
748 if ( refid != 0 )
749 memcpy(refsp->RTbufs[0],buf,sizeof(refsp->RTbufs[0]));
6eb41a2f 750 }
a7ef556c 751 if ( fwrite(buf,1,sizeof(buf),fp) != sizeof(buf) )
752 fprintf(stderr,"[%s] %s error writing realtime\n",ASSETCHAINS_SYMBOL,base);
753 fclose(fp);
f789edde 754 } else fprintf(stderr,"%s create error RT\n",base);
ecf6256c 755 }
f1db88ea 756 if ( sp != 0 && isrealtime == 0 )
757 refsp->RTbufs[0][2] = 0;
52f1d788 758 }
635dd34d 759 refsp->RTmask = RTmask;
4767f1fc 760 KOMODO_PASSPORT_INITDONE = 1;
ab918767 761}
ab918767 762
This page took 0.282103 seconds and 4 git commands to generate.