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.
371 lines
16 KiB
371 lines
16 KiB
7 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. *
|
||
|
* *
|
||
|
******************************************************************************/
|
||
|
|
||
|
//
|
||
7 years ago
|
// LP_instantdex.c
|
||
7 years ago
|
// marketmaker
|
||
|
//
|
||
|
|
||
7 years ago
|
void LP_instantdex_txidaddfname(char *fname)
|
||
|
{
|
||
|
sprintf(fname,"%s/instantdex.json",GLOBAL_DBDIR);
|
||
|
}
|
||
|
|
||
|
cJSON *LP_instantdex_txidaddjson()
|
||
|
{
|
||
|
char *filestr,fname[1024]; long fsize; cJSON *retjson=0;
|
||
|
LP_instantdex_txidaddfname(fname);
|
||
|
if ( (filestr= OS_filestr(&fsize,fname)) != 0 )
|
||
|
{
|
||
|
retjson = cJSON_Parse(filestr);
|
||
|
free(filestr);
|
||
|
}
|
||
|
return(retjson);
|
||
|
}
|
||
|
|
||
|
void LP_instantdex_txidadd(bits256 txid)
|
||
|
{
|
||
|
cJSON *array; int32_t i,n; char fname[1024],*filestr; FILE *fp;
|
||
|
if ( (array= LP_instantdex_txidaddjson()) == 0 )
|
||
|
array = cJSON_CreateArray();
|
||
|
if ( (n= cJSON_GetArraySize(array)) > 0 )
|
||
|
{
|
||
|
for (i=0; i<n; i++)
|
||
|
if ( bits256_cmp(jbits256i(array,i),txid) == 0 )
|
||
|
break;
|
||
|
if ( i == n )
|
||
|
{
|
||
|
LP_instantdex_txidaddfname(fname);
|
||
|
char str[65]; printf("add %s -> %s\n",bits256_str(str,txid),fname);
|
||
|
jaddibits256(array,txid);
|
||
|
if ( (fp= fopen(fname,"wb")) != 0 )
|
||
|
{
|
||
|
filestr = jprint(array,0);
|
||
|
fwrite(filestr,1,strlen(filestr)+1,fp);
|
||
|
fclose(fp);
|
||
|
free(filestr);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
if ( array != 0 )
|
||
|
free_json(array);
|
||
|
}
|
||
|
|
||
7 years ago
|
int32_t LP_deposit_addr(char *p2shaddr,uint8_t *script,uint8_t taddr,uint8_t p2shtype,uint32_t timestamp,uint8_t *pubsecp33)
|
||
7 years ago
|
{
|
||
|
uint8_t elsepub33[33],p2sh_rmd160[20]; int32_t n;
|
||
|
decode_hex(elsepub33,33,BOTS_BONDPUBKEY33);
|
||
|
n = bitcoin_performancebond(p2sh_rmd160,script,0,timestamp,pubsecp33,elsepub33);
|
||
7 years ago
|
bitcoin_address(p2shaddr,taddr,p2shtype,script,n);
|
||
7 years ago
|
return(n);
|
||
|
}
|
||
|
|
||
7 years ago
|
char *LP_instantdex_deposit(struct iguana_info *coin,int32_t weeks,double amount,int32_t broadcast)
|
||
7 years ago
|
{
|
||
7 years ago
|
char p2shaddr[64],*retstr,*hexstr; uint8_t script[512]; int32_t weeki,scriptlen; cJSON *argjson,*retjson,*array,*item,*obj; uint32_t timestamp; bits256 txid,sendtxid; uint64_t amount64;
|
||
7 years ago
|
if ( strcmp(coin->symbol,"KMD") != 0 )
|
||
7 years ago
|
return(clonestr("{\"error\":\"instantdex deposit must be in KMD\"}"));
|
||
7 years ago
|
if ( amount < 10.0 )
|
||
7 years ago
|
return(clonestr("{\"error\":\"minimum instantdex deposit is 10 KMD\"}"));
|
||
7 years ago
|
if ( weeks < 0 || weeks > 52 )
|
||
|
return(clonestr("{\"error\":\"weeks must be between 0 and 52\"}"));
|
||
|
if ( weeks > 0 )
|
||
|
{
|
||
|
timestamp = (uint32_t)time(NULL);
|
||
|
timestamp /= LP_WEEKMULT;
|
||
|
timestamp += weeks+1;
|
||
|
timestamp *= LP_WEEKMULT;
|
||
|
weeki = (timestamp - LP_FIRSTWEEKTIME) / LP_WEEKMULT;
|
||
|
if ( weeks >= 10000 )
|
||
|
return(clonestr("{\"error\":\"numweeks must be less than 10000\"}"));
|
||
|
} else timestamp = (uint32_t)time(NULL) + 300, weeki = 0;
|
||
7 years ago
|
scriptlen = LP_deposit_addr(p2shaddr,script,coin->taddr,coin->p2shtype,timestamp,G.LP_pubsecp);
|
||
7 years ago
|
argjson = cJSON_CreateObject();
|
||
|
array = cJSON_CreateArray();
|
||
|
item = cJSON_CreateObject();
|
||
|
jaddnum(item,p2shaddr,amount);
|
||
|
jaddi(array,item);
|
||
|
item = cJSON_CreateObject();
|
||
|
amount64 = (amount * SATOSHIDEN) / 1000;
|
||
|
amount64 = (amount64 / 10000) * 10000 + weeki;
|
||
|
jaddnum(item,BOTS_BONDADDRESS,dstr(amount64));
|
||
|
jaddi(array,item);
|
||
7 years ago
|
item = cJSON_CreateObject();
|
||
|
jaddnum(item,coin->smartaddr,0.0001);
|
||
|
jaddi(array,item);
|
||
7 years ago
|
jadd(argjson,"outputs",array);
|
||
7 years ago
|
//printf("deposit.(%s)\n",jprint(argjson,0));
|
||
7 years ago
|
if ( (retstr= LP_withdraw(coin,argjson)) != 0 )
|
||
|
{
|
||
|
if ( (retjson= cJSON_Parse(retstr)) != 0 )
|
||
|
{
|
||
|
if ( jobj(retjson,"result") != 0 )
|
||
|
jdelete(retjson,"result");
|
||
|
jaddstr(retjson,"address",p2shaddr);
|
||
|
jaddnum(retjson,"expiration",timestamp);
|
||
7 years ago
|
jaddnum(retjson,"deposit",amount);
|
||
7 years ago
|
if ( (obj= jobj(retjson,"complete")) != 0 && is_cJSON_True(obj) != 0 && (hexstr= jstr(retjson,"hex")) != 0 )
|
||
7 years ago
|
{
|
||
|
txid = jbits256(retjson,"txid");
|
||
7 years ago
|
if ( bits256_nonz(txid) != 0 )
|
||
|
LP_instantdex_txidadd(txid);
|
||
7 years ago
|
if ( broadcast != 0 )
|
||
|
{
|
||
|
if (bits256_nonz(txid) != 0 )
|
||
|
{
|
||
|
sendtxid = LP_broadcast("deposit","KMD",hexstr,txid);
|
||
|
if ( bits256_cmp(sendtxid,txid) != 0 )
|
||
|
{
|
||
|
jaddstr(retjson,"error","broadcast txid mismatch");
|
||
|
jaddbits256(retjson,"broadcast",sendtxid);
|
||
|
free(retstr);
|
||
|
return(jprint(retjson,1));
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
jaddstr(retjson,"result","success");
|
||
|
jaddbits256(retjson,"broadcast",sendtxid);
|
||
|
free(retstr);
|
||
|
return(jprint(retjson,1));
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
jaddstr(retjson,"error","couldnt broadcast since no txid created");
|
||
|
free(retstr);
|
||
|
return(jprint(retjson,1));
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
jaddstr(retjson,"result","success");
|
||
|
free(retstr);
|
||
|
return(jprint(retjson,1));
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
jaddstr(retjson,"error","couldnt create deposit txid");
|
||
|
free(retstr);
|
||
|
return(jprint(retjson,1));
|
||
|
}
|
||
|
free_json(retjson);
|
||
|
}
|
||
|
free(retstr);
|
||
|
}
|
||
7 years ago
|
return(clonestr("{\"error\":\"error with LP_withdraw for instantdex deposit\"}"));
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
char *LP_instantdex_claim(struct iguana_info *coin,char *depositaddr,uint32_t expiration)
|
||
7 years ago
|
{
|
||
|
static void *ctx;
|
||
7 years ago
|
uint8_t redeemscript[512],userdata[64]; char vinaddr[64],str[65],*signedtx=0; uint32_t timestamp,now,redeemlen,claimtime; int32_t i,n,height,utxovout,userdatalen; bits256 signedtxid,utxotxid,sendtxid,zero; int64_t sum,destamount,satoshis; cJSON *array,*item,*txids,*retjson;
|
||
7 years ago
|
if ( ctx == 0 )
|
||
|
ctx = bitcoin_ctx();
|
||
|
if ( strcmp(coin->symbol,"KMD") != 0 )
|
||
7 years ago
|
return(clonestr("{\"error\":\"instantdex deposit must be in KMD\"}"));
|
||
7 years ago
|
now = (uint32_t)time(NULL);
|
||
|
sum = 0;
|
||
|
txids = cJSON_CreateArray();
|
||
|
timestamp = (now / LP_WEEKMULT) * LP_WEEKMULT + LP_WEEKMULT;
|
||
|
while ( timestamp > LP_FIRSTWEEKTIME )
|
||
|
{
|
||
|
if ( expiration != 0 )
|
||
|
timestamp = expiration;
|
||
|
else timestamp -= LP_WEEKMULT;
|
||
7 years ago
|
redeemlen = LP_deposit_addr(vinaddr,redeemscript,coin->taddr,coin->p2shtype,timestamp,G.LP_pubsecp);
|
||
7 years ago
|
if ( strcmp(depositaddr,vinaddr) == 0 )
|
||
|
{
|
||
7 years ago
|
claimtime = (uint32_t)time(NULL)-777;
|
||
7 years ago
|
if ( claimtime <= timestamp )
|
||
7 years ago
|
{
|
||
7 years ago
|
printf("claimtime.%u vs locktime.%u, need to wait %d seconds\n",claimtime,timestamp,(int32_t)timestamp-claimtime);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
printf("found %s at timestamp.%u\n",vinaddr,timestamp);
|
||
7 years ago
|
memset(zero.bytes,0,sizeof(zero));
|
||
|
if ( (array= LP_listunspent(coin->symbol,vinaddr,zero,zero)) != 0 )
|
||
7 years ago
|
{
|
||
7 years ago
|
userdata[0] = 0x51;
|
||
|
userdatalen = 1;
|
||
|
utxovout = 0;
|
||
7 years ago
|
//printf("unspents.(%s)\n",jprint(array,0));
|
||
7 years ago
|
if ( (n= cJSON_GetArraySize(array)) > 0 )
|
||
7 years ago
|
{
|
||
7 years ago
|
for (i=0; i<n; i++)
|
||
7 years ago
|
{
|
||
7 years ago
|
item = jitem(array,i);
|
||
|
satoshis = LP_listunspent_parseitem(coin,&utxotxid,&utxovout,&height,item);
|
||
7 years ago
|
printf("satoshis %.8f %s/v%d\n",dstr(satoshis),bits256_str(str,utxotxid),utxovout);
|
||
7 years ago
|
if ( (signedtx= basilisk_swap_bobtxspend(&signedtxid,10000,"instantdexclaim",coin->symbol,coin->wiftaddr,coin->taddr,coin->pubtype,coin->p2shtype,coin->isPoS,coin->wiftype,ctx,G.LP_privkey,0,redeemscript,redeemlen,userdata,userdatalen,utxotxid,utxovout,coin->smartaddr,G.LP_pubsecp,0,claimtime,&destamount,0,0,vinaddr,1,coin->zcash)) != 0 )
|
||
7 years ago
|
{
|
||
7 years ago
|
printf("signedtx.(%s)\n",signedtx);
|
||
|
sendtxid = LP_broadcast("claim","KMD",signedtx,signedtxid);
|
||
|
if ( bits256_cmp(sendtxid,signedtxid) == 0 )
|
||
|
{
|
||
|
jaddibits256(txids,sendtxid);
|
||
|
sum += (satoshis-coin->txfee);
|
||
|
}
|
||
|
else printf("error sending %s\n",bits256_str(str,signedtxid));
|
||
|
free(signedtx);
|
||
7 years ago
|
} else printf("error claiming instantdex deposit %s/v%d %.8f\n",bits256_str(str,utxotxid),utxovout,dstr(satoshis));
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
free_json(array);
|
||
|
retjson = cJSON_CreateObject();
|
||
|
jaddstr(retjson,"result","success");
|
||
|
jaddnum(retjson,"claimed",dstr(sum));
|
||
|
jadd(retjson,"txids",txids);
|
||
|
return(jprint(retjson,1));
|
||
7 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
if ( expiration != 0 )
|
||
|
break;
|
||
|
}
|
||
7 years ago
|
return(clonestr("{\"error\":\"no instantdex deposits to claim\"}"));
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
int64_t LP_instantdex_credit(int32_t dispflag,char *coinaddr,int64_t satoshis,int32_t weeki,char *p2shaddr)
|
||
7 years ago
|
{
|
||
7 years ago
|
uint32_t timestamp; struct LP_address *ap; struct iguana_info *coin = LP_coinfind("KMD");
|
||
|
if ( coin != 0 )
|
||
|
{
|
||
|
timestamp = LP_FIRSTWEEKTIME + weeki*LP_WEEKMULT;
|
||
7 years ago
|
if ( time(NULL) < timestamp-60*3600 && (ap= LP_address(coin,coinaddr)) != 0 )
|
||
7 years ago
|
{
|
||
7 years ago
|
ap->instantdex_credits += satoshis;
|
||
7 years ago
|
if ( dispflag != 0 )
|
||
7 years ago
|
printf("InstantDEX credit.(%s) %.8f weeki.%d (%s) -> sum %.8f\n",coinaddr,dstr(satoshis),weeki,p2shaddr,dstr(ap->instantdex_credits));
|
||
7 years ago
|
return(satoshis);
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
return(0);
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
int64_t LP_instantdex_creditcalc(struct iguana_info *coin,int32_t dispflag,bits256 txid,char *refaddr)
|
||
7 years ago
|
{
|
||
|
cJSON *txjson,*vouts,*txobj,*item; int64_t satoshis=0,amount64; int32_t weeki,numvouts; char destaddr[64],p2shaddr[64];
|
||
|
if ( (txjson= LP_gettx(coin->symbol,txid,0)) != 0 )
|
||
|
{
|
||
|
// vout0 deposit, vout1 botsfee, vout2 smartaddress
|
||
|
if ( (vouts= jarray(&numvouts,txjson,"vout")) > 0 && numvouts >= 3 && LP_destaddr(destaddr,jitem(vouts,2)) == 0 )
|
||
|
{
|
||
7 years ago
|
if ( refaddr != 0 && strcmp(refaddr,destaddr) != 0 )
|
||
|
{
|
||
|
printf("LP_instantdex_creditcalc for (%s) but deposit sent for (%s)\n",refaddr,destaddr);
|
||
|
}
|
||
|
else
|
||
7 years ago
|
{
|
||
7 years ago
|
amount64 = LP_value_extract(jitem(vouts,1),0);
|
||
|
weeki = (amount64 % 10000);
|
||
|
item = jitem(vouts,0);
|
||
|
satoshis = LP_value_extract(item,0);
|
||
|
//printf("%s funded %.8f weeki.%d\n",destaddr,dstr(satoshis),weeki);
|
||
|
if ( LP_destaddr(p2shaddr,item) == 0 )
|
||
7 years ago
|
{
|
||
7 years ago
|
if ( (txobj= LP_gettxout(coin->symbol,p2shaddr,txid,0)) != 0 )
|
||
|
{
|
||
|
free_json(txobj);
|
||
|
if ( LP_instantdex_credit(dispflag,destaddr,satoshis,weeki,p2shaddr) > 0 && strcmp(coin->symbol,"KMD") == 0 && strcmp(destaddr,coin->smartaddr) == 0 )
|
||
|
{
|
||
|
LP_instantdex_txidadd(txid);
|
||
|
}
|
||
|
}
|
||
7 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
free_json(txjson);
|
||
|
}
|
||
|
return(satoshis);
|
||
|
}
|
||
|
|
||
7 years ago
|
void LP_instantdex_proofcheck(char *coinaddr,cJSON *proof,int32_t num)
|
||
|
{
|
||
|
uint8_t rmd160[20],addrtype; int32_t i; char othersmartaddr[64]; struct iguana_info *coin; struct LP_address *ap = 0;
|
||
|
if ( (coin= LP_coinfind("KMD")) != 0 && coin->electrum != 0 )
|
||
|
{
|
||
|
bitcoin_addr2rmd160(0,&addrtype,rmd160,coinaddr);
|
||
|
bitcoin_address(othersmartaddr,0,60,rmd160,20);
|
||
|
if ((ap= LP_address(coin,othersmartaddr)) != 0 && ap->didinstantdex == 0 )
|
||
|
{
|
||
|
ap->instantdex_credits = 0;
|
||
|
for (i=0; i<num; i++)
|
||
|
LP_instantdex_creditcalc(coin,1,jbits256i(proof,i),othersmartaddr);
|
||
|
ap->didinstantdex = 1;
|
||
|
printf("validated instantdex %s.[%d] proof.(%s)\n",othersmartaddr,num,jprint(proof,0));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void LP_instantdex_deposits(struct iguana_info *coin)
|
||
7 years ago
|
{
|
||
7 years ago
|
static int dispflag = 1;
|
||
7 years ago
|
cJSON *array,*item; int32_t i,n,height,vout; bits256 txid; struct LP_address *ap,*tmp;
|
||
7 years ago
|
if ( coin->electrum != 0 )//&& coin->electruminstantdex != 0 )
|
||
7 years ago
|
return;
|
||
7 years ago
|
HASH_ITER(hh,coin->addresses,ap,tmp)
|
||
|
{
|
||
7 years ago
|
ap->instantdex_credits = 0;
|
||
7 years ago
|
}
|
||
7 years ago
|
if ( (array= LP_listreceivedbyaddress("KMD",BOTS_BONDADDRESS)) != 0 )
|
||
7 years ago
|
{
|
||
7 years ago
|
//printf("instantdex.(%s)\n",jprint(array,0));
|
||
7 years ago
|
if ( (n= cJSON_GetArraySize(array)) > 0 )
|
||
|
{
|
||
|
for (i=0; i<n; i++)
|
||
|
{
|
||
7 years ago
|
if ( coin->electrum != 0 )
|
||
7 years ago
|
{
|
||
7 years ago
|
item = jitem(array,i);
|
||
|
LP_listunspent_parseitem(coin,&txid,&vout,&height,item);
|
||
|
} else txid = jbits256i(array,i);
|
||
7 years ago
|
LP_instantdex_creditcalc(coin,dispflag,txid,0);
|
||
7 years ago
|
}
|
||
|
}
|
||
|
free_json(array);
|
||
|
}
|
||
7 years ago
|
dispflag = 0;
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
int64_t LP_dynamictrust(bits256 pubkey,int64_t kmdvalue)
|
||
7 years ago
|
{
|
||
7 years ago
|
struct LP_pubswap *ptr,*tmp; struct LP_swapstats *sp; struct LP_pubkey_info *pubp; struct LP_address *ap; char coinaddr[64]; struct iguana_info *coin; int64_t swaps_kmdvalue = 0;
|
||
|
if ( (coin= LP_coinfind("KMD")) != 0 && (pubp= LP_pubkeyfind(pubkey)) != 0 )
|
||
7 years ago
|
{
|
||
7 years ago
|
bitcoin_address(coinaddr,coin->taddr,coin->pubtype,pubp->pubsecp,33);
|
||
7 years ago
|
if ((ap= LP_address(coin,coinaddr)) != 0 )//&& ap->instantdex_credits >= kmdvalue )
|
||
7 years ago
|
{
|
||
|
DL_FOREACH_SAFE(pubp->bobswaps,ptr,tmp)
|
||
|
{
|
||
|
if ( (sp= ptr->swap) != 0 && sp->finished == 0 && sp->expired == 0 )
|
||
|
swaps_kmdvalue += LP_kmdvalue(sp->Q.srccoin,sp->Q.satoshis);
|
||
|
}
|
||
|
DL_FOREACH_SAFE(pubp->aliceswaps,ptr,tmp)
|
||
|
{
|
||
|
if ( (sp= ptr->swap) != 0 && sp->finished == 0 && sp->expired == 0 )
|
||
|
swaps_kmdvalue += LP_kmdvalue(sp->Q.destcoin,sp->Q.destsatoshis);
|
||
|
}
|
||
7 years ago
|
//printf("%s instantdex_credits %.8f vs (%.8f + current %.8f)\n",coinaddr,dstr(ap->instantdex_credits),dstr(swaps_kmdvalue),dstr(kmdvalue));
|
||
|
//if ( ap->instantdex_credits > swaps_kmdvalue+kmdvalue )
|
||
7 years ago
|
return(ap->instantdex_credits - (swaps_kmdvalue+kmdvalue));
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|
||
|
return(0);
|
||
|
}
|
||
|
|