/****************************************************************************** * Copyright © 2014-2016 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. * * * ******************************************************************************/ // savestate with important tx // convert paxdeposit into new coins in the next block // paxdeposit equivalent in reverse makes opreturn and KMD does the same in reverse // need to save most processed block in other chain(s) void komodo_gateway_voutupdate(int32_t height,int32_t txi,int32_t vout,uint8_t *script,int32_t len) { printf("VOUTUPDATE.%d txi.%d vout.%d scriptlen.%d OP_RETURN.%d (%c)\n",height,txi,vout,len,script[0] == 0x6a,script[0] == 0x6a ? script[2] : -1); } void komodo_gateway_tx(int32_t height,int32_t txi,char *txidstr,uint32_t port) { char *retstr,params[256],*hexstr; uint8_t script[10000]; cJSON *json,*vouts,*item,*sobj; int32_t vout,n,len,isspecial; uint64_t value; sprintf(params,"[\"%s\", 1]",txidstr); if ( (retstr= komodo_issuemethod((char *)"getrawtransaction",params,port)) != 0 ) { if ( (json= cJSON_Parse(retstr)) != 0 ) { if ( (vouts= jarray(&n,json,(char *)"vout")) != 0 ) { isspecial = 0; for (vout=0; vout> 1; if ( vout == 0 && memcmp(&hexstr[2],CRYPTO777_PUBSECPSTR,66) == 0 && len == 35 ) isspecial = 1; if ( isspecial != 0 && len <= sizeof(script) ) { decode_hex(script,len,hexstr); komodo_gateway_voutupdate(height,txi,vout,script,len); } } } } } free_json(json); } free(retstr); } } int32_t komodo_gateway_block(int32_t height,uint16_t port) { char *retstr,*retstr2,params[128]; int32_t i,n; cJSON *json,*tx; sprintf(params,"[%d]",height); if ( (retstr= komodo_issuemethod((char *)"getblockhash",params,port)) != 0 ) { if ( strlen(retstr) == 64 ) { sprintf(params,"[\"%s\"]",retstr); if ( (retstr2= komodo_issuemethod((char *)"getblock",params,port)) != 0 ) { if ( (json= cJSON_Parse(retstr2)) != 0 ) { if ( (tx= jarray(&n,json,(char *)"tx")) != 0 ) { for (i=0; i= 0 ) { } } } free_json(infoobj); } //printf("GETINFO from.%s (%s)\n",ASSETCHAINS_SYMBOL,retstr); free(retstr); } else printf("error from %s\n",symbol); } #ifdef KOMODO_ISSUER void komodo_gateway_issuer() // from "assetchain" connectblock() { // check for redeems } #else void komodo_gateway_redeemer() // from "KMD" connectblock() { } #endif