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.

1396 lines
63 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. *
* *
******************************************************************************/
8 years ago
8 years ago
//
8 years ago
// LP_ordermatch.c
8 years ago
// marketmaker
//
7 years ago
struct LP_quoteinfo LP_Alicequery,LP_Alicereserved;
7 years ago
double LP_Alicemaxprice;
7 years ago
bits256 LP_Alicedestpubkey,LP_bobs_reserved;
uint32_t Alice_expiration,Bob_expiration;
7 years ago
struct { uint64_t aliceid; double bestprice; uint32_t starttime,counter; } Bob_competition[512];
7 years ago
7 years ago
double LP_bob_competition(int32_t *counterp,uint64_t aliceid,double price,int32_t counter)
7 years ago
{
7 years ago
int32_t i,firsti = -1; uint32_t now = (uint32_t)time(NULL);
7 years ago
*counterp = 0;
7 years ago
for (i=0; i<sizeof(Bob_competition)/sizeof(*Bob_competition); i++)
{
if ( Bob_competition[i].aliceid == aliceid )
{
7 years ago
if ( counter < 0 || now > Bob_competition[i].starttime+LP_AUTOTRADE_TIMEOUT )
7 years ago
{
7 years ago
//printf("aliceid.%llu expired\n",(long long)aliceid);
7 years ago
Bob_competition[i].bestprice = 0.;
7 years ago
Bob_competition[i].starttime = now;
7 years ago
Bob_competition[i].counter = 0;
7 years ago
}
7 years ago
if ( price != 0. && (Bob_competition[i].bestprice == 0. || price < Bob_competition[i].bestprice) )
{
7 years ago
Bob_competition[i].bestprice = price;
7 years ago
//printf("Bob competition aliceid.%llu <- bestprice %.8f\n",(long long)aliceid,price);
7 years ago
}
7 years ago
Bob_competition[i].counter += counter;
*counterp = Bob_competition[i].counter;
7 years ago
return(Bob_competition[i].bestprice);
}
else if ( Bob_competition[i].aliceid == 0 )
firsti = i;
}
if ( firsti < 0 )
7 years ago
firsti = (LP_rand() % (sizeof(Bob_competition)/sizeof(*Bob_competition)));
7 years ago
Bob_competition[firsti].starttime = (uint32_t)time(NULL);
7 years ago
Bob_competition[firsti].counter = counter;
7 years ago
Bob_competition[firsti].aliceid = aliceid;
Bob_competition[firsti].bestprice = price;
7 years ago
*counterp = counter;
7 years ago
//printf("Bob competition aliceid.%llu %.8f\n",(long long)aliceid,price);
7 years ago
return(price);
7 years ago
}
8 years ago
7 years ago
uint64_t LP_txfeecalc(struct iguana_info *coin,uint64_t txfee,int32_t txlen)
8 years ago
{
7 years ago
if ( coin != 0 )
8 years ago
{
7 years ago
if ( strcmp(coin->symbol,"BTC") == 0 )
{
7 years ago
if ( txlen == 0 )
txlen = LP_AVETXSIZE;
7 years ago
coin->rate = LP_getestimatedrate(coin);
7 years ago
if ( (txfee= SATOSHIDEN * coin->rate * txlen) <= LP_MIN_TXFEE )
7 years ago
{
7 years ago
coin->rate = -1.;
7 years ago
coin->rate = _LP_getestimatedrate(coin);
7 years ago
if ( (txfee= SATOSHIDEN * coin->rate * txlen) <= LP_MIN_TXFEE )
7 years ago
txfee = LP_MIN_TXFEE;
}
7 years ago
} else txfee = coin->txfee;
7 years ago
if ( txfee < LP_MIN_TXFEE )
8 years ago
txfee = LP_MIN_TXFEE;
}
8 years ago
return(txfee);
}
7 years ago
int32_t LP_quote_checkmempool(struct LP_quoteinfo *qp,struct LP_utxoinfo *autxo,struct LP_utxoinfo *butxo)
8 years ago
{
8 years ago
int32_t selector,spendvini; bits256 spendtxid;
7 years ago
if ( butxo != 0 && (selector= LP_mempool_vinscan(&spendtxid,&spendvini,qp->srccoin,qp->coinaddr,qp->txid,qp->vout,qp->txid2,qp->vout2)) >= 0 )
8 years ago
{
char str[65]; printf("LP_tradecommand selector.%d in mempool %s vini.%d",selector,bits256_str(str,spendtxid),spendvini);
return(-1);
}
7 years ago
if ( autxo != 0 && (selector= LP_mempool_vinscan(&spendtxid,&spendvini,qp->destcoin,qp->destaddr,qp->desttxid,qp->destvout,qp->feetxid,qp->feevout)) >= 0 )
8 years ago
{
char str[65]; printf("LP_tradecommand dest selector.%d in mempool %s vini.%d",selector,bits256_str(str,spendtxid),spendvini);
return(-1);
}
return(0);
}
7 years ago
double LP_quote_validate(struct LP_utxoinfo *autxo,struct LP_utxoinfo *butxo,struct LP_quoteinfo *qp,int32_t iambob)
8 years ago
{
7 years ago
double qprice=0.; char str[65]; cJSON *txout; uint64_t txfee,desttxfee,srcvalue=0,srcvalue2=0,destvalue=0,destvalue2=0;
7 years ago
//printf(">>>>>>> quote satoshis.(%.8f %.8f) %s %.8f -> %s %.8f\n",dstr(qp->satoshis),dstr(qp->destsatoshis),qp->srccoin,dstr(qp->satoshis),qp->destcoin,dstr(qp->destsatoshis));
7 years ago
if ( butxo != 0 )
8 years ago
{
7 years ago
if ( LP_iseligible(&srcvalue,&srcvalue2,1,qp->srccoin,qp->txid,qp->vout,qp->satoshis,qp->txid2,qp->vout2) == 0 )
7 years ago
{
7 years ago
//printf("bob not eligible %s (%.8f %.8f)\n",jprint(LP_quotejson(qp),1),dstr(srcvalue),dstr(srcvalue2));
7 years ago
return(-2);
}
7 years ago
if ( (txout= LP_gettxout(qp->srccoin,qp->coinaddr,qp->txid,qp->vout)) != 0 )
free_json(txout);
else
{
printf("%s %s payment %s/v%d is spent\n",qp->srccoin,qp->coinaddr,bits256_str(str,qp->txid),qp->vout);
return(-21);
}
if ( (txout= LP_gettxout(qp->srccoin,qp->coinaddr,qp->txid2,qp->vout2)) != 0 )
free_json(txout);
else
{
printf("%s %s deposit %s/v%d is spent\n",qp->srccoin,qp->coinaddr,bits256_str(str,qp->txid2),qp->vout2);
return(-22);
}
7 years ago
if ( bits256_cmp(butxo->deposit.txid,qp->txid2) != 0 || butxo->deposit.vout != qp->vout2 )
7 years ago
{
char str[65],str2[65]; printf("%s != %s v%d != %d\n",bits256_str(str,butxo->deposit.txid),bits256_str(str2,qp->txid2),butxo->deposit.vout,qp->vout2);
7 years ago
return(-6);
7 years ago
}
7 years ago
if ( strcmp(butxo->coinaddr,qp->coinaddr) != 0 )
7 years ago
{
printf("(%s) != (%s)\n",butxo->coinaddr,qp->coinaddr);
7 years ago
return(-7);
7 years ago
}
8 years ago
}
7 years ago
if ( autxo != 0 )
8 years ago
{
7 years ago
if ( LP_iseligible(&destvalue,&destvalue2,0,qp->destcoin,qp->desttxid,qp->destvout,qp->destsatoshis,qp->feetxid,qp->feevout) == 0 )
{
7 years ago
//alice not eligible 0.36893923 -> dest 0.55020000 1.49130251 (0.61732249 0.00104324) 14b8b74808d2d34a70e5eddd1cad47d855858f8b23cac802576d4d37b5f8af8f/v1 abec6e76169bcb738235ca67fab02cc55390f39e422aa71f1badf8747c290cc4/v1
7 years ago
//char str[65],str2[65]; printf("alice not eligible %.8f -> dest %.8f %.8f (%.8f %.8f) %s/v%d %s/v%d\n",dstr(qp->satoshis),dstr(qp->destsatoshis),(double)qp->destsatoshis/qp->satoshis,dstr(destvalue),dstr(destvalue2),bits256_str(str,qp->desttxid),qp->destvout,bits256_str(str2,qp->feetxid),qp->feevout);
7 years ago
return(-3);
}
if ( (txout= LP_gettxout(qp->destcoin,qp->destaddr,qp->desttxid,qp->destvout)) != 0 )
free_json(txout);
else
{
printf("%s %s Apayment %s/v%d is spent\n",qp->destcoin,qp->destaddr,bits256_str(str,qp->desttxid),qp->destvout);
return(-23);
}
if ( (txout= LP_gettxout(qp->destcoin,qp->destaddr,qp->feetxid,qp->feevout)) != 0 )
free_json(txout);
else
{
printf("%s %s dexfee %s/v%d is spent\n",qp->destcoin,qp->destaddr,bits256_str(str,qp->feetxid),qp->feevout);
return(-24);
}
8 years ago
}
7 years ago
//printf("checked autxo and butxo\n");
7 years ago
if ( LP_quote_checkmempool(qp,autxo,butxo) < 0 )
8 years ago
return(-4);
7 years ago
if ( iambob == 0 && autxo != 0 )
8 years ago
{
7 years ago
if ( bits256_cmp(autxo->fee.txid,qp->feetxid) != 0 || autxo->fee.vout != qp->feevout )
8 years ago
return(-9);
7 years ago
if ( strcmp(autxo->coinaddr,qp->destaddr) != 0 )
8 years ago
return(-10);
}
7 years ago
if ( autxo != 0 && destvalue < qp->desttxfee+qp->destsatoshis )
8 years ago
{
7 years ago
printf("destvalue %.8f destsatoshis %.8f is too small txfee %.8f?\n",dstr(destvalue),dstr(qp->destsatoshis),dstr(qp->desttxfee));
8 years ago
return(-11);
}
7 years ago
if ( butxo != 0 && srcvalue < qp->txfee+qp->satoshis )
7 years ago
{
7 years ago
printf("srcvalue %.8f [%.8f] satoshis %.8f is too small txfee %.8f?\n",dstr(srcvalue),dstr(srcvalue) - dstr(qp->txfee+qp->satoshis),dstr(qp->satoshis),dstr(qp->txfee));
7 years ago
return(-33);
}
7 years ago
if ( qp->satoshis != 0 )
7 years ago
qprice = ((double)qp->destsatoshis / (qp->satoshis-qp->txfee));
7 years ago
LP_txfees(&txfee,&desttxfee,qp->srccoin,qp->destcoin);
7 years ago
if ( txfee < qp->txfee )
7 years ago
txfee = qp->txfee;
7 years ago
if ( desttxfee < qp->desttxfee )
7 years ago
desttxfee = qp->desttxfee;
7 years ago
//printf("qprice %.8f <- %.8f/%.8f txfees.(%.8f %.8f) vs (%.8f %.8f)\n",qprice,dstr(qp->destsatoshis),dstr(qp->satoshis),dstr(qp->txfee),dstr(qp->desttxfee),dstr(txfee),dstr(desttxfee));
7 years ago
if ( qp->txfee < LP_REQUIRED_TXFEE*txfee || qp->desttxfee < LP_REQUIRED_TXFEE*desttxfee )
return(-14);
if ( butxo != 0 )
{
7 years ago
if ( qp->satoshis < (srcvalue / LP_MINVOL) || srcvalue < qp->txfee*LP_MINSIZE_TXFEEMULT )
{
7 years ago
printf("utxo payment %.8f is less than %f covered by Q %.8f or <10x txfee %.8f [%d %d]\n",dstr(srcvalue),1./LP_MINVOL,dstr(qp->satoshis),dstr(qp->txfee),qp->satoshis < (srcvalue / LP_MINVOL),srcvalue < qp->txfee*LP_MINSIZE_TXFEEMULT);
7 years ago
return(-12);
}
8 years ago
}
7 years ago
if ( autxo != 0 )
8 years ago
{
7 years ago
if ( qp->destsatoshis < (destvalue / LP_MINCLIENTVOL) || destvalue < qp->desttxfee*LP_MINSIZE_TXFEEMULT )
{
printf("destsatoshis %.8f is less than %f of value %.8f or < 10x txfee %.8f\n",dstr(qp->destsatoshis),1./LP_MINCLIENTVOL,dstr(destvalue),dstr(qp->desttxfee));
return(-13);
}
8 years ago
}
return(qprice);
8 years ago
}
8 years ago
int32_t LP_arrayfind(cJSON *array,bits256 txid,int32_t vout)
{
int32_t i,n = cJSON_GetArraySize(array); cJSON *item;
for (i=0; i<n; i++)
{
item = jitem(array,i);
if ( vout == jint(item,"vout") && bits256_cmp(txid,jbits256(item,"txid")) == 0 )
return(i);
}
return(-1);
}
8 years ago
int32_t LP_nanobind(void *ctx,char *pairstr)
8 years ago
{
8 years ago
int32_t i,r,pairsock = -1; uint16_t mypullport; char bindaddr[128];
8 years ago
if ( LP_canbind != 0 )
8 years ago
{
8 years ago
if ( (pairsock= nn_socket(AF_SP,NN_PAIR)) < 0 )
printf("error creating utxo->pair\n");
else
8 years ago
{
7 years ago
for (i=0; i<10000; i++)
8 years ago
{
7 years ago
r = (10000 + (LP_rand() % 50000)) & 0xffff;
8 years ago
if ( LP_fixed_pairport != 0 )
r = LP_fixed_pairport;
8 years ago
nanomsg_transportname(0,pairstr,LP_myipaddr,r);
nanomsg_transportname(1,bindaddr,LP_myipaddr,r);
8 years ago
if ( nn_bind(pairsock,bindaddr) >= 0 )
{
8 years ago
//timeout = 1;
//nn_setsockopt(pairsock,NN_SOL_SOCKET,NN_SNDTIMEO,&timeout,sizeof(timeout));
//nn_setsockopt(pairsock,NN_SOL_SOCKET,NN_RCVTIMEO,&timeout,sizeof(timeout));
7 years ago
//printf("nanobind %s to %d\n",pairstr,pairsock);
8 years ago
return(pairsock);
7 years ago
} // else printf("error binding to %s for %s\n",bindaddr,pairstr);
8 years ago
if ( LP_fixed_pairport != 0 )
break;
8 years ago
}
7 years ago
printf("%d ports all used\n",i);
nn_close(pairsock);
pairsock = -1;
8 years ago
}
8 years ago
} else pairsock = LP_initpublicaddr(ctx,&mypullport,pairstr,"127.0.0.1",0,1);
8 years ago
return(pairsock);
8 years ago
}
7 years ago
int32_t LP_nearest_utxovalue(struct iguana_info *coin,char *coinaddr,struct LP_address_utxo **utxos,int32_t n,uint64_t targetval)
7 years ago
{
7 years ago
int32_t i,replacei,bestheight,mini = -1; struct LP_address_utxo *up,*bestup; struct electrum_info *backupep=0,*ep; int64_t dist,bestdist; uint64_t mindist = (1LL << 60);
7 years ago
if ( (ep= coin->electrum) != 0 )
{
if ( (backupep= ep->prev) == 0 )
backupep = ep;
}
7 years ago
//printf("LP_nearest_utxovalue %s %s utxos[%d] target %.8f\n",coin->symbol,coinaddr,n,dstr(targetval));
7 years ago
for (i=0; i<n; i++)
{
7 years ago
if ( (up= utxos[i]) != 0 )
7 years ago
{
7 years ago
dist = (up->U.value - targetval);
7 years ago
//printf("nearest i.%d target %.8f val %.8f dist %.8f mindist %.8f mini.%d spent.%d\n",i,dstr(targetval),dstr(up->U.value),dstr(dist),dstr(mindist),mini,up->spendheight);
7 years ago
if ( up->spendheight <= 0 )
7 years ago
{
if ( dist >= 0 && dist < mindist )
7 years ago
{
7 years ago
//printf("(%.8f %.8f %.8f).%d ",dstr(up->U.value),dstr(dist),dstr(mindist),mini);
7 years ago
mini = i;
mindist = dist;
7 years ago
}
7 years ago
}
}
}
7 years ago
if ( mini >= 0 && (bestup= utxos[mini]) != 0 )
{
bestdist = (bestup->U.value - targetval);
replacei = -1;
bestheight = bestup->U.height;
for (i=0; i<n; i++)
{
if ( i != mini && (up= utxos[i]) != 0 )
{
dist = (up->U.value - targetval);
7 years ago
if ( dist > 0 && up->U.height < bestheight )
7 years ago
{
7 years ago
if ( (double)dist/bestdist < sqrt(((double)bestheight - up->U.height)/1000) )
7 years ago
{
replacei = i;
bestheight = up->U.height;
7 years ago
} //else printf("almost ratio %.3f dist %.8f vs best %.8f, ht %d vs best ht %d\n",(double)dist/bestdist,dstr(dist),dstr(bestdist),up->U.height,bestheight);
7 years ago
}
}
}
if ( replacei >= 0 )
{
7 years ago
printf("REPLACE bestdist %.8f height %d with dist %.8f height %d\n",dstr(bestdist),bestup->U.height,dstr(utxos[replacei]->U.value - targetval),utxos[replacei]->U.height);
7 years ago
return(replacei);
}
}
7 years ago
//printf("return mini.%d\n",mini);
7 years ago
return(mini);
}
7 years ago
void LP_butxo_set(struct LP_utxoinfo *butxo,int32_t iambob,struct iguana_info *coin,struct LP_address_utxo *up,struct LP_address_utxo *up2,int64_t satoshis)
{
butxo->pubkey = G.LP_mypub25519;
safecopy(butxo->coin,coin->symbol,sizeof(butxo->coin));
safecopy(butxo->coinaddr,coin->smartaddr,sizeof(butxo->coinaddr));
butxo->payment.txid = up->U.txid;
butxo->payment.vout = up->U.vout;
butxo->payment.value = up->U.value;
7 years ago
if ( (butxo->iambob= iambob) != 0 )
{
butxo->deposit.txid = up2->U.txid;
butxo->deposit.vout = up2->U.vout;
butxo->deposit.value = up2->U.value;
}
else
{
butxo->fee.txid = up2->U.txid;
butxo->fee.vout = up2->U.vout;
butxo->fee.value = up2->U.value;
}
7 years ago
butxo->swap_satoshis = satoshis;
}
void LP_abutxo_set(struct LP_utxoinfo *autxo,struct LP_utxoinfo *butxo,struct LP_quoteinfo *qp)
{
if ( butxo != 0 )
{
memset(butxo,0,sizeof(*butxo));
butxo->pubkey = qp->srchash;
safecopy(butxo->coin,qp->srccoin,sizeof(butxo->coin));
safecopy(butxo->coinaddr,qp->coinaddr,sizeof(butxo->coinaddr));
butxo->payment.txid = qp->txid;
butxo->payment.vout = qp->vout;
//butxo->payment.value = qp->value;
butxo->iambob = 1;
butxo->deposit.txid = qp->txid2;
butxo->deposit.vout = qp->vout2;
//butxo->deposit.value = up2->U.value;
7 years ago
butxo->swap_satoshis = qp->satoshis;
}
if ( autxo != 0 )
{
memset(autxo,0,sizeof(*autxo));
autxo->pubkey = qp->desthash;
safecopy(autxo->coin,qp->destcoin,sizeof(autxo->coin));
safecopy(autxo->coinaddr,qp->destaddr,sizeof(autxo->coinaddr));
autxo->payment.txid = qp->desttxid;
autxo->payment.vout = qp->destvout;
//autxo->payment.value = qp->value;
autxo->iambob = 0;
autxo->fee.txid = qp->feetxid;
autxo->fee.vout = qp->feevout;
//autxo->deposit.value = up2->U.value;
7 years ago
autxo->swap_satoshis = qp->destsatoshis;
}
}
7 years ago
uint64_t LP_basesatoshis(double relvolume,double price,uint64_t txfee,uint64_t desttxfee)
{
7 years ago
//printf("basesatoshis %.8f (rel %.8f / price %.8f)\n",dstr(SATOSHIDEN * ((relvolume) / price) + 2*txfee),relvolume,price);
7 years ago
if ( relvolume > dstr(desttxfee) && price > SMALLVAL )
7 years ago
return(SATOSHIDEN * (relvolume / price) + 2*txfee);
7 years ago
else return(0);
7 years ago
}
struct LP_utxoinfo *LP_address_myutxopair(struct LP_utxoinfo *butxo,int32_t iambob,struct LP_address_utxo **utxos,int32_t max,struct iguana_info *coin,char *coinaddr,uint64_t txfee,double relvolume,double price,uint64_t desttxfee)
7 years ago
{
7 years ago
struct LP_address *ap; uint64_t fee,targetval,targetval2; int32_t m,mini; struct LP_address_utxo *up,*up2; double ratio;
memset(butxo,0,sizeof(*butxo));
7 years ago
if ( iambob != 0 )
{
7 years ago
targetval = LP_basesatoshis(relvolume,price,txfee,desttxfee) + 3*txfee;
targetval2 = (targetval / 8) * 9 + 3*txfee;
7 years ago
fee = txfee;
7 years ago
ratio = LP_MINVOL;
7 years ago
}
else
{
7 years ago
targetval = relvolume*SATOSHIDEN + 3*desttxfee;
targetval2 = (targetval / 777) + 3*desttxfee;
7 years ago
fee = desttxfee;
7 years ago
ratio = LP_MINCLIENTVOL;
7 years ago
}
7 years ago
if ( coin != 0 && (ap= LP_address(coin,coinaddr)) != 0 )
7 years ago
{
7 years ago
if ( (m= LP_address_utxo_ptrs(coin,iambob,utxos,max,ap,coinaddr)) > 1 )
7 years ago
{
7 years ago
if ( 0 )
7 years ago
{
int32_t i;
for (i=0; i<m; i++)
7 years ago
if ( utxos[i]->U.value >= targetval )
7 years ago
printf("%.8f ",dstr(utxos[i]->U.value));
7 years ago
printf("targetval %.8f vol %.8f price %.8f txfee %.8f %s %s\n",dstr(targetval),relvolume,price,dstr(fee),coin->symbol,coinaddr);
7 years ago
}
7 years ago
while ( 1 )
7 years ago
{
7 years ago
mini = -1;
if ( targetval != 0 && (mini= LP_nearest_utxovalue(coin,coinaddr,utxos,m,targetval+fee)) >= 0 )
7 years ago
{
7 years ago
up = utxos[mini];
utxos[mini] = 0;
7 years ago
//printf("found mini.%d %.8f for targetval %.8f -> targetval2 %.8f, ratio %.2f\n",mini,dstr(up->U.value),dstr(targetval),dstr(targetval2),(double)up->U.value/targetval);
7 years ago
if ( (double)up->U.value/targetval < ratio-1 )
7 years ago
{
7 years ago
if ( 0 )
7 years ago
{
int32_t i;
for (i=0; i<m; i++)
if ( utxos[i] != 0 && utxos[i]->U.value >= targetval2 )
printf("%.8f ",dstr(utxos[i]->U.value));
printf("targetval2 %.8f vol %.8f price %.8f txfee %.8f %s %s\n",dstr(targetval2),relvolume,price,dstr(fee),coin->symbol,coinaddr);
}
if ( (mini= LP_nearest_utxovalue(coin,coinaddr,utxos,m,(targetval2+2*fee) * 1.01)) >= 0 )
{
7 years ago
if ( up != 0 && (up2= utxos[mini]) != 0 )
{
LP_butxo_set(butxo,iambob,coin,up,up2,targetval);
return(butxo);
} else printf("cant find utxos[mini %d]\n",mini);
7 years ago
} //else printf("cant find targetval2 %.8f\n",dstr(targetval2));
7 years ago
} else printf("failed ratio test %.8f\n",(double)up->U.value/targetval);
} else if ( targetval != 0 && mini >= 0 )
printf("targetval %.8f mini.%d\n",dstr(targetval),mini);
if ( targetval == 0 || mini < 0 )
break;
}
7 years ago
} else printf("no %s %s utxos pass LP_address_utxo_ptrs filter\n",coin->symbol,coinaddr);
7 years ago
} else printf("address_myutxopair couldnt find %s %s\n",coin->symbol,coinaddr);
7 years ago
return(0);
}
7 years ago
int32_t LP_connectstartbob(void *ctx,int32_t pubsock,char *base,char *rel,double price,struct LP_quoteinfo *qp)
8 years ago
{
7 years ago
char pairstr[512],otheraddr[64]; cJSON *reqjson; bits256 privkey; int32_t pair=-1,retval = -1,DEXselector = 0; int64_t dtrust; struct basilisk_swap *swap; struct iguana_info *coin,*kmdcoin;
8 years ago
qp->quotetime = (uint32_t)time(NULL);
if ( (coin= LP_coinfind(qp->srccoin)) == 0 )
8 years ago
{
printf("cant find coin.%s\n",qp->srccoin);
8 years ago
return(-1);
}
privkey = LP_privkey(coin->symbol,coin->smartaddr,coin->taddr);
if ( bits256_nonz(privkey) != 0 && bits256_cmp(G.LP_mypub25519,qp->srchash) == 0 )
8 years ago
{
7 years ago
LP_requestinit(&qp->R,qp->srchash,qp->desthash,base,qp->satoshis-qp->txfee,rel,qp->destsatoshis-qp->desttxfee,qp->timestamp,qp->quotetime,DEXselector);
7 years ago
/*if ( LP_pendingswap(qp->R.requestid,qp->R.quoteid) > 0 )
7 years ago
{
printf("requestid.%u quoteid.%u is already in progres\n",qp->R.requestid,qp->R.quoteid);
return(-1);
7 years ago
}*/
7 years ago
dtrust = LP_dynamictrust(qp->othercredits,qp->desthash,LP_kmdvalue(qp->destcoin,qp->destsatoshis));
7 years ago
if ( (swap= LP_swapinit(1,0,privkey,&qp->R,qp,dtrust > 0)) == 0 )
7 years ago
{
printf("cant initialize swap\n");
return(-1);
}
8 years ago
if ( (pair= LP_nanobind(ctx,pairstr)) >= 0 )
8 years ago
{
8 years ago
swap->N.pair = pair;
if ( OS_thread_create(malloc(sizeof(pthread_t)),NULL,(void *)LP_bobloop,(void *)swap) == 0 )
8 years ago
{
7 years ago
reqjson = LP_quotejson(qp);
jaddstr(reqjson,"method","connected");
jaddstr(reqjson,"pair",pairstr);
7 years ago
if ( (kmdcoin= LP_coinfind("KMD")) != 0 )
jadd(reqjson,"proof",LP_instantdex_txids(0,kmdcoin->smartaddr));
7 years ago
//char str[65]; printf("BOB pubsock.%d binds to %d (%s)\n",pubsock,pair,bits256_str(str,qp->desthash));
7 years ago
bits256 zero;
memset(zero.bytes,0,sizeof(zero));
LP_reserved_msg(1,qp->srccoin,qp->destcoin,qp->desthash,jprint(reqjson,0));
7 years ago
LP_reserved_msg(1,qp->srccoin,qp->destcoin,zero,jprint(reqjson,0));
7 years ago
if ( 0 )
{
LP_reserved_msg(1,base,rel,zero,jprint(reqjson,0));
LP_reserved_msg(0,base,rel,zero,jprint(reqjson,0));
}
7 years ago
free_json(reqjson);
7 years ago
LP_importaddress(qp->destcoin,qp->destaddr);
7 years ago
LP_otheraddress(qp->srccoin,otheraddr,qp->destcoin,qp->destaddr);
LP_importaddress(qp->srccoin,otheraddr);
8 years ago
retval = 0;
} else printf("error launching swaploop\n");
} else printf("couldnt bind to any port %s\n",pairstr);
}
8 years ago
if ( retval < 0 )
{
if ( pair >= 0 )
nn_close(pair);
LP_availableset(qp->txid,qp->vout);
LP_availableset(qp->txid2,qp->vout2);
}
8 years ago
return(retval);
8 years ago
}
7 years ago
char *LP_trade(void *ctx,char *myipaddr,int32_t mypubsock,struct LP_quoteinfo *qp,double maxprice,int32_t timeout,int32_t duration,uint32_t tradeid,bits256 destpubkey)
7 years ago
{
7 years ago
double price;
7 years ago
price = 0.;
7 years ago
memset(qp->txid.bytes,0,sizeof(qp->txid));
qp->txid2 = qp->txid;
7 years ago
qp->aliceid = LP_aliceid_calc(qp->desttxid,qp->destvout,qp->feetxid,qp->feevout);
7 years ago
if ( (qp->tradeid= tradeid) == 0 )
qp->tradeid = LP_rand();
7 years ago
qp->srchash = destpubkey;
7 years ago
LP_query(ctx,myipaddr,mypubsock,"request",qp);
7 years ago
LP_Alicequery = *qp, LP_Alicemaxprice = maxprice, Alice_expiration = qp->timestamp + timeout, LP_Alicedestpubkey = destpubkey;
7 years ago
char str[65]; printf("LP_trade %s/%s %.8f vol %.8f dest.(%s) maxprice %.8f\n",qp->srccoin,qp->destcoin,dstr(qp->satoshis),dstr(qp->destsatoshis),bits256_str(str,LP_Alicedestpubkey),maxprice);
return(LP_recent_swaps(0));
7 years ago
}
7 years ago
int32_t LP_quotecmp(int32_t strictflag,struct LP_quoteinfo *qp,struct LP_quoteinfo *qp2)
7 years ago
{
7 years ago
if ( bits256_nonz(LP_Alicedestpubkey) != 0 )
{
if (bits256_cmp(LP_Alicedestpubkey,qp->srchash) != 0 )
{
printf("reject quote from non-matching pubkey\n");
return(-1);
} else printf("dont reject quote from destpubkey\n");
}
7 years ago
if ( bits256_cmp(qp->desthash,qp2->desthash) == 0 && strcmp(qp->srccoin,qp2->srccoin) == 0 && strcmp(qp->destcoin,qp2->destcoin) == 0 && bits256_cmp(qp->desttxid,qp2->desttxid) == 0 && qp->destvout == qp2->destvout && bits256_cmp(qp->feetxid,qp2->feetxid) == 0 && qp->feevout == qp2->feevout && qp->destsatoshis == qp2->destsatoshis && qp->txfee >= qp2->txfee && qp->desttxfee == qp2->desttxfee )
{
if ( strictflag == 0 || (qp->aliceid == qp2->aliceid && qp->R.requestid == qp2->R.requestid && qp->R.quoteid == qp2->R.quoteid && qp->vout == qp2->vout && qp->vout2 == qp2->vout2 && qp->satoshis == qp2->satoshis && bits256_cmp(qp->txid,qp2->txid) == 0 && bits256_cmp(qp->txid2,qp2->txid2) == 0 && bits256_cmp(qp->srchash,qp2->srchash) == 0) )
return(0);
else printf("strict compare failure\n");
}
return(-1);
7 years ago
}
void LP_alicequery_clear()
{
memset(&LP_Alicequery,0,sizeof(LP_Alicequery));
memset(&LP_Alicedestpubkey,0,sizeof(LP_Alicedestpubkey));
LP_Alicemaxprice = 0.;
Alice_expiration = 0;
}
7 years ago
int32_t LP_alice_eligible(uint32_t quotetime)
7 years ago
{
7 years ago
if ( Alice_expiration != 0 && quotetime > Alice_expiration )
7 years ago
{
printf("time expired for Alice_request\n");
LP_alicequery_clear();
7 years ago
}
return(Alice_expiration == 0 || time(NULL) < Alice_expiration);
}
7 years ago
char *LP_connectedalice(struct LP_quoteinfo *qp,char *pairstr) // alice
8 years ago
{
7 years ago
cJSON *retjson; char otheraddr[64]; double bid,ask,price,qprice; int32_t pairsock = -1; int32_t DEXselector = 0; struct LP_utxoinfo *autxo,A,B,*butxo; struct basilisk_swap *swap; struct iguana_info *coin;
7 years ago
/*if ( LP_quoteparse(&Q,argjson) < 0 )
7 years ago
{
LP_aliceid(Q.tradeid,Q.aliceid,"error0",0,0);
8 years ago
clonestr("{\"error\":\"cant parse quote\"}");
7 years ago
}*/
if ( bits256_cmp(qp->desthash,G.LP_mypub25519) != 0 )
7 years ago
{
7 years ago
LP_aliceid(qp->tradeid,qp->aliceid,"error1",0,0);
8 years ago
return(clonestr("{\"result\",\"update stats\"}"));
7 years ago
}
7 years ago
printf("CONNECTED numpending.%d tradeid.%u requestid.%u quoteid.%u pairstr.%s\n",G.LP_pendingswaps,qp->tradeid,qp->R.requestid,qp->R.quoteid,pairstr!=0?pairstr:"");
7 years ago
LP_requestinit(&qp->R,qp->srchash,qp->desthash,qp->srccoin,qp->satoshis-qp->txfee,qp->destcoin,qp->destsatoshis-qp->desttxfee,qp->timestamp,qp->quotetime,DEXselector);
7 years ago
//printf("calculated requestid.%u quoteid.%u\n",qp->R.requestid,qp->R.quoteid);
7 years ago
/*if ( LP_pendingswap(qp->R.requestid,qp->R.quoteid) > 0 )
7 years ago
{
7 years ago
printf("requestid.%u quoteid.%u is already in progres\n",qp->R.requestid,qp->R.quoteid);
7 years ago
retjson = cJSON_CreateObject();
jaddstr(retjson,"error","swap already in progress");
return(jprint(retjson,1));
7 years ago
}*/
7 years ago
/*if ( LP_quotecmp(1,qp,&LP_Alicereserved) == 0 )
7 years ago
{
7 years ago
printf("mismatched between reserved and connected\n");
7 years ago
}*/
7 years ago
memset(&LP_Alicereserved,0,sizeof(LP_Alicereserved));
7 years ago
LP_aliceid(qp->tradeid,qp->aliceid,"connected",qp->R.requestid,qp->R.quoteid);
7 years ago
autxo = &A;
7 years ago
butxo = &B;
7 years ago
memset(autxo,0,sizeof(*autxo));
7 years ago
memset(butxo,0,sizeof(*butxo));
7 years ago
LP_abutxo_set(autxo,butxo,qp);
if ( (qprice= LP_quote_validate(autxo,butxo,qp,0)) <= SMALLVAL )
8 years ago
{
7 years ago
LP_availableset(qp->desttxid,qp->vout);
LP_availableset(qp->feetxid,qp->feevout);
LP_aliceid(qp->tradeid,qp->aliceid,"error4",0,0);
7 years ago
printf("quote %s/%s validate error %.0f\n",qp->srccoin,qp->destcoin,qprice);
8 years ago
return(clonestr("{\"error\":\"quote validation error\"}"));
}
7 years ago
if ( LP_myprice(&bid,&ask,qp->srccoin,qp->destcoin) <= SMALLVAL || bid <= SMALLVAL )
8 years ago
{
7 years ago
printf("this node has no price for %s/%s (%.8f %.8f)\n",qp->destcoin,qp->srccoin,bid,ask);
LP_availableset(qp->desttxid,qp->vout);
LP_availableset(qp->feetxid,qp->feevout);
LP_aliceid(qp->tradeid,qp->aliceid,"error5",0,0);
8 years ago
return(clonestr("{\"error\":\"no price set\"}"));
}
7 years ago
//LP_RTmetrics_update(qp->srccoin,qp->destcoin);
printf("%s/%s bid %.8f ask %.8f values %.8f %.8f\n",qp->srccoin,qp->destcoin,bid,ask,dstr(butxo->payment.value),dstr(butxo->deposit.value));
7 years ago
price = bid;
7 years ago
if ( (coin= LP_coinfind(qp->destcoin)) == 0 )
7 years ago
{
7 years ago
LP_aliceid(qp->tradeid,qp->aliceid,"error6",0,0);
8 years ago
return(clonestr("{\"error\":\"cant get alicecoin\"}"));
7 years ago
}
qp->privkey = LP_privkey(coin->symbol,qp->destaddr,coin->taddr);
7 years ago
if ( bits256_nonz(qp->privkey) != 0 )//&& qp->quotetime >= qp->timestamp-3 )
8 years ago
{
8 years ago
retjson = cJSON_CreateObject();
7 years ago
if ( (swap= LP_swapinit(0,0,qp->privkey,&qp->R,qp,LP_dynamictrust(qp->othercredits,qp->srchash,LP_kmdvalue(qp->srccoin,qp->satoshis)) > 0)) == 0 )
7 years ago
{
jaddstr(retjson,"error","couldnt swapinit");
7 years ago
LP_availableset(qp->desttxid,qp->vout);
LP_availableset(qp->feetxid,qp->feevout);
LP_aliceid(qp->tradeid,qp->aliceid,"error7",qp->R.requestid,qp->R.quoteid);
7 years ago
return(jprint(retjson,1));
}
7 years ago
if ( pairstr == 0 || pairstr[0] == 0 || (pairsock= nn_socket(AF_SP,NN_PAIR)) < 0 )
7 years ago
{
7 years ago
LP_aliceid(qp->tradeid,qp->aliceid,"error8",qp->R.requestid,qp->R.quoteid);
8 years ago
jaddstr(retjson,"error","couldnt create pairsock");
7 years ago
}
8 years ago
else if ( nn_connect(pairsock,pairstr) >= 0 )
8 years ago
{
8 years ago
//timeout = 1;
//nn_setsockopt(pairsock,NN_SOL_SOCKET,NN_SNDTIMEO,&timeout,sizeof(timeout));
//nn_setsockopt(pairsock,NN_SOL_SOCKET,NN_RCVTIMEO,&timeout,sizeof(timeout));
7 years ago
swap->tradeid = qp->tradeid;
8 years ago
swap->N.pair = pairsock;
//autxo->S.swap = swap;
//swap->utxo = autxo;
7 years ago
LP_importaddress(qp->srccoin,qp->coinaddr);
7 years ago
LP_otheraddress(qp->destcoin,otheraddr,qp->srccoin,qp->coinaddr);
LP_importaddress(qp->srccoin,otheraddr);
7 years ago
LP_aliceid(qp->tradeid,qp->aliceid,"started",qp->R.requestid,qp->R.quoteid);
7 years ago
printf("alice pairstr.(%s) pairsock.%d pthread_t %ld\n",pairstr,pairsock,sizeof(pthread_t));
8 years ago
if ( OS_thread_create(malloc(sizeof(pthread_t)),NULL,(void *)LP_aliceloop,(void *)swap) == 0 )
8 years ago
{
7 years ago
retjson = LP_quotejson(qp);
8 years ago
jaddstr(retjson,"result","success");
7 years ago
//jaddnum(retjson,"requestid",qp->R.requestid);
//jaddnum(retjson,"quoteid",qp->R.quoteid);
7 years ago
}
else
{
7 years ago
LP_aliceid(qp->tradeid,qp->aliceid,"error9",qp->R.requestid,qp->R.quoteid);
7 years ago
jaddstr(retjson,"error","couldnt aliceloop");
}
}
else
{
7 years ago
LP_aliceid(qp->tradeid,qp->aliceid,"error10",qp->R.requestid,qp->R.quoteid);
7 years ago
printf("connect error %s\n",nn_strerror(nn_errno()));
}
7 years ago
//printf("connected result.(%s)\n",jprint(retjson,0));
8 years ago
if ( jobj(retjson,"error") != 0 )
{
7 years ago
LP_availableset(qp->desttxid,qp->vout);
LP_availableset(qp->feetxid,qp->feevout);
}
8 years ago
return(jprint(retjson,1));
8 years ago
}
else
{
7 years ago
LP_availableset(qp->desttxid,qp->vout);
LP_availableset(qp->feetxid,qp->feevout);
LP_aliceid(qp->tradeid,qp->aliceid,"error11",0,0);
printf("no privkey found coin.%s %s taddr.%u\n",qp->destcoin,qp->destaddr,coin->taddr);
8 years ago
return(clonestr("{\"error\",\"no privkey\"}"));
8 years ago
}
8 years ago
}
7 years ago
int32_t LP_aliceonly(char *symbol)
{
if ( strcmp(symbol,"GAME") == 0 )
return(1);
else return(0);
}
7 years ago
int32_t LP_validSPV(char *symbol,char *coinaddr,bits256 txid,int32_t vout)
{
7 years ago
struct electrum_info *ep,*backupep; cJSON *txobj; struct LP_address_utxo *up; struct iguana_info *coin; int32_t height; struct LP_transaction *tx;
7 years ago
coin = LP_coinfind(symbol);
if ( coin != 0 && (ep= coin->electrum) != 0 )
{
7 years ago
if ( (up= LP_address_utxofind(coin,coinaddr,txid,vout)) == 0 )
{
7 years ago
if ( (txobj= electrum_transaction(&height,symbol,ep,&txobj,txid,coinaddr)) != 0 )
7 years ago
free_json(txobj);
if ( (tx= LP_transactionfind(coin,txid)) != 0 )
{
if ( vout < tx->numvouts && tx->height > 0 )
7 years ago
{
printf("added missing utxo for SPV checking\n");
7 years ago
LP_address_utxoadd(0,(uint32_t)time(NULL),"LP_validSPV",coin,coinaddr,txid,vout,tx->outpoints[vout].value,tx->height,-1);
7 years ago
}
7 years ago
}
}
7 years ago
if ( (up= LP_address_utxofind(coin,coinaddr,txid,vout)) != 0 )
{
7 years ago
if ( up->SPV > 0 )
return(0);
7 years ago
if ( up->SPV < 0 )
return(-1);
if ( (backupep= ep->prev) == 0 )
backupep = ep;
7 years ago
up->SPV = LP_merkleproof(coin,coinaddr,backupep,up->U.txid,up->U.height);
7 years ago
if ( up->SPV < 0 )
7 years ago
return(-1);
7 years ago
}
}
return(0);
}
7 years ago
double LP_trades_alicevalidate(void *ctx,struct LP_quoteinfo *qp)
7 years ago
{
7 years ago
double qprice; struct LP_utxoinfo A,B,*autxo,*butxo; char str[65];
7 years ago
autxo = &A;
butxo = &B;
memset(autxo,0,sizeof(*autxo));
memset(butxo,0,sizeof(*butxo));
LP_abutxo_set(autxo,butxo,qp);
if ( (qprice= LP_quote_validate(autxo,butxo,qp,0)) <= SMALLVAL )
{
printf("reserved quote validate error %.0f\n",qprice);
return((int32_t)qprice);
}
if ( LP_validSPV(qp->srccoin,qp->coinaddr,qp->txid,qp->vout) < 0 )
{
7 years ago
sleep(1);
if ( LP_validSPV(qp->srccoin,qp->coinaddr,qp->txid,qp->vout) < 0 )
{
printf("LP_trades_alicevalidate %s src %s failed SPV check\n",qp->srccoin,bits256_str(str,qp->txid));
return(-44);
}
7 years ago
}
else if ( LP_validSPV(qp->srccoin,qp->coinaddr,qp->txid2,qp->vout2) < 0 )
{
7 years ago
sleep(1);
if ( LP_validSPV(qp->srccoin,qp->coinaddr,qp->txid2,qp->vout2) < 0 )
{
printf("LP_trades_alicevalidate %s src2 %s failed SPV check\n",qp->srccoin,bits256_str(str,qp->txid2));
return(-55);
}
7 years ago
}
7 years ago
return(qprice);
7 years ago
}
7 years ago
void LP_reserved(void *ctx,char *myipaddr,int32_t mypubsock,struct LP_quoteinfo *qp)
{
double price=0.,maxprice = LP_Alicemaxprice;
7 years ago
//if ( LP_quotecmp(0,qp,&LP_Alicequery) == 0 )
7 years ago
{
price = LP_pricecache(qp,qp->srccoin,qp->destcoin,qp->txid,qp->vout);
if ( LP_pricevalid(price) > 0 && maxprice > SMALLVAL && price <= maxprice )
{
qp->tradeid = LP_Alicequery.tradeid;
LP_Alicereserved = *qp;
LP_alicequery_clear();
7 years ago
//printf("send CONNECT\n");
7 years ago
LP_query(ctx,myipaddr,mypubsock,"connect",qp);
7 years ago
} else printf("LP_reserved %llu price %.8f vs maxprice %.8f\n",(long long)qp->aliceid,price,maxprice);
7 years ago
} //else printf("probably a timeout, reject reserved due to not eligible.%d or mismatched quote price %.8f vs maxprice %.8f\n",LP_alice_eligible(qp->quotetime),price,maxprice);
7 years ago
}
double LP_trades_bobprice(double *bidp,double *askp,struct LP_quoteinfo *qp)
{
double price; struct iguana_info *coin; char str[65];
price = LP_myprice(bidp,askp,qp->srccoin,qp->destcoin);
if ( (coin= LP_coinfind(qp->srccoin)) == 0 || price <= SMALLVAL || *askp <= SMALLVAL )
{
//printf("this node has no price for %s/%s\n",qp->srccoin,qp->destcoin);
return(0.);
}
price = *askp;
7 years ago
//printf("MYPRICE %s/%s %.8f vs qprice %.8f\n",qp->srccoin,qp->destcoin,price,(double)qp->destsatoshis/qp->satoshis);
7 years ago
if ( LP_validSPV(qp->destcoin,qp->destaddr,qp->desttxid,qp->destvout) < 0 )
{
7 years ago
printf("LP_trades_bobprice %s dest %s failed SPV check\n",qp->destcoin,bits256_str(str,qp->desttxid));
7 years ago
return(0.);
}
else if (LP_validSPV(qp->destcoin,qp->destaddr,qp->feetxid,qp->feevout) < 0 )
{
7 years ago
printf("LP_trades_bobprice %s dexfee %s failed SPV check\n",qp->destcoin,bits256_str(str,qp->feetxid));
7 years ago
return(0.);
}
return(*askp);
}
double LP_trades_pricevalidate(struct LP_quoteinfo *qp,struct iguana_info *coin,double price)
{
double qprice; struct LP_utxoinfo A,B,*autxo,*butxo;
autxo = &A;
butxo = &B;
memset(autxo,0,sizeof(*autxo));
memset(butxo,0,sizeof(*butxo));
LP_abutxo_set(autxo,butxo,qp);
if ( strcmp(qp->coinaddr,coin->smartaddr) != 0 )
{
printf("bob is patching qp->coinaddr %s mismatch != %s\n",qp->coinaddr,coin->smartaddr);
strcpy(qp->coinaddr,coin->smartaddr);
}
if ( butxo == 0 || bits256_nonz(butxo->payment.txid) == 0 || bits256_nonz(butxo->deposit.txid) == 0 || butxo->payment.vout < 0 || butxo->deposit.vout < 0 )
{
char str[65],str2[65]; printf("couldnt find bob utxos for autxo %s/v%d %s/v%d %.8f -> %.8f\n",bits256_str(str,qp->txid),qp->vout,bits256_str(str2,qp->txid2),qp->vout2,dstr(qp->satoshis),dstr(qp->destsatoshis));
return(-66);
}
if ( (qprice= LP_quote_validate(autxo,butxo,qp,1)) <= SMALLVAL )
{
7 years ago
printf("quote %s/%s validate error %.0f\n",qp->srccoin,qp->destcoin,qprice);
7 years ago
return(-3);
}
if ( qprice < (price - 0.00000001) * 0.998 )
{
printf(" quote price %.8f too low vs %.8f for %s/%s %.8f < %.8f\n",qprice,price,qp->srccoin,qp->destcoin,qprice,(price - 0.00000001) * 0.998);
return(-77);
}
return(qprice);
}
7 years ago
struct LP_quoteinfo *LP_trades_gotrequest(void *ctx,struct LP_quoteinfo *qp,struct LP_quoteinfo *newqp,char *pairstr)
7 years ago
{
7 years ago
double price,qprice,myprice,bestprice,range,bid,ask; struct iguana_info *coin; struct LP_utxoinfo A,B,*autxo,*butxo; cJSON *reqjson; char str[65]; struct LP_address_utxo *utxos[1000]; int32_t r,counter,max = (int32_t)(sizeof(utxos)/sizeof(*utxos));
7 years ago
*newqp = *qp;
qp = newqp;
7 years ago
//printf("bob %s received REQUEST.(%llu)\n",bits256_str(str,G.LP_mypub25519),(long long)qp->aliceid);
7 years ago
if ( (coin= LP_coinfind(qp->srccoin)) == 0 )
7 years ago
return(0);
7 years ago
if ( (myprice= LP_trades_bobprice(&bid,&ask,qp)) == 0. )
7 years ago
return(0);
7 years ago
autxo = &A;
butxo = &B;
memset(autxo,0,sizeof(*autxo));
memset(butxo,0,sizeof(*butxo));
LP_abutxo_set(autxo,butxo,qp);
if ( bits256_nonz(qp->srchash) == 0 || bits256_cmp(qp->srchash,G.LP_mypub25519) == 0 )
{
7 years ago
qprice = (double)qp->destsatoshis / (qp->satoshis - qp->txfee);
7 years ago
strcpy(qp->gui,G.gui);
strcpy(qp->coinaddr,coin->smartaddr);
strcpy(butxo->coinaddr,coin->smartaddr);
qp->srchash = G.LP_mypub25519;
memset(&qp->txid,0,sizeof(qp->txid));
memset(&qp->txid2,0,sizeof(qp->txid2));
qp->vout = qp->vout2 = -1;
7 years ago
} else return(0);
7 years ago
if ( qprice > myprice )
7 years ago
{
r = (LP_rand() % 100);
7 years ago
range = (qprice - myprice);
price = myprice + (r * range) / 100.;
7 years ago
bestprice = LP_bob_competition(&counter,qp->aliceid,price,0);
printf("%llu >>>>>>> qprice %.8f r.%d range %.8f -> %.8f, bestprice %.8f counter.%d\n",(long long)qp->aliceid,qprice,r,range,price,bestprice,counter);
7 years ago
if ( counter > 3 && price > bestprice+SMALLVAL ) // skip if late or bad price
7 years ago
return(0);
} else return(0);
7 years ago
//LP_RTmetrics_update(qp->srccoin,qp->destcoin);
if ( LP_RTmetrics_blacklisted(qp->desthash) >= 0 )
{
printf("request from blacklisted %s, ignore\n",bits256_str(str,qp->desthash));
7 years ago
return(0);
7 years ago
}
7 years ago
//printf("LP_address_utxo_reset.%s\n",coin->symbol);
7 years ago
//LP_address_utxo_reset(coin);
7 years ago
//printf("done LP_address_utxo_reset.%s\n",coin->symbol);
7 years ago
if ( (butxo= LP_address_myutxopair(butxo,1,utxos,max,LP_coinfind(qp->srccoin),qp->coinaddr,qp->txfee,dstr(qp->destsatoshis),price,qp->desttxfee)) != 0 )
{
strcpy(qp->gui,G.gui);
strcpy(qp->coinaddr,coin->smartaddr);
qp->srchash = G.LP_mypub25519;
qp->txid = butxo->payment.txid;
qp->vout = butxo->payment.vout;
qp->txid2 = butxo->deposit.txid;
qp->vout2 = butxo->deposit.vout;
7 years ago
qp->satoshis = butxo->swap_satoshis;// + qp->txfee;
7 years ago
qp->quotetime = (uint32_t)time(NULL);
}
else
{
7 years ago
//printf("cant find utxopair aliceid.%llu %s/%s %.8f -> relvol %.8f\n",(long long)qp->aliceid,qp->srccoin,qp->destcoin,dstr(LP_basesatoshis(dstr(qp->destsatoshis),price,qp->txfee,qp->desttxfee)),dstr(qp->destsatoshis));
7 years ago
return(0);
7 years ago
}
7 years ago
if ( (qprice= LP_trades_pricevalidate(qp,coin,myprice)) < 0. )
7 years ago
return(0);
7 years ago
if ( LP_allocated(qp->txid,qp->vout) == 0 && LP_allocated(qp->txid2,qp->vout2) == 0 )
{
reqjson = LP_quotejson(qp);
LP_unavailableset(qp->txid,qp->vout,qp->timestamp + LP_RESERVETIME,qp->desthash);
LP_unavailableset(qp->txid2,qp->vout2,qp->timestamp + LP_RESERVETIME,qp->desthash);
if ( qp->quotetime == 0 )
qp->quotetime = (uint32_t)time(NULL);
jaddnum(reqjson,"quotetime",qp->quotetime);
jaddnum(reqjson,"pending",qp->timestamp + LP_RESERVETIME);
jaddstr(reqjson,"method","reserved");
7 years ago
//LP_reserved_msg(1,qp->srccoin,qp->destcoin,qp->desthash,jprint(reqjson,0));
bits256 zero;
memset(zero.bytes,0,sizeof(zero));
LP_reserved_msg(1,qp->srccoin,qp->destcoin,zero,jprint(reqjson,0));
7 years ago
free_json(reqjson);
7 years ago
//printf("Send RESERVED id.%llu\n",(long long)qp->aliceid);
7 years ago
return(qp);
7 years ago
} else printf("request processing selected ineligible utxos?\n");
7 years ago
return(0);
7 years ago
}
7 years ago
struct LP_quoteinfo *LP_trades_gotreserved(void *ctx,struct LP_quoteinfo *qp,struct LP_quoteinfo *newqp)
7 years ago
{
char *retstr;
7 years ago
//char str[65]; printf("alice %s received RESERVED.(%llu) %.8f\n",bits256_str(str,G.LP_mypub25519),(long long)qp->aliceid,(double)qp->destsatoshis/(qp->satoshis+1));
7 years ago
*newqp = *qp;
qp = newqp;
if ( LP_trades_alicevalidate(ctx,qp) > 0. )
7 years ago
{
LP_aliceid(qp->tradeid,qp->aliceid,"reserved",0,0);
if ( (retstr= LP_quotereceived(qp)) != 0 )
free(retstr);
7 years ago
return(qp);
7 years ago
}
7 years ago
return(0);
7 years ago
}
7 years ago
struct LP_quoteinfo *LP_trades_gotconnect(void *ctx,struct LP_quoteinfo *qp,struct LP_quoteinfo *newqp,char *pairstr)
7 years ago
{
7 years ago
double myprice,qprice,bid,ask; struct iguana_info *coin;
7 years ago
char str[65]; printf("bob %s received CONNECT.(%llu)\n",bits256_str(str,G.LP_mypub25519),(long long)qp->aliceid);
7 years ago
*newqp = *qp;
qp = newqp;
7 years ago
if ( (coin= LP_coinfind(qp->srccoin)) == 0 )
7 years ago
return(0);
7 years ago
if ( (myprice= LP_trades_bobprice(&bid,&ask,qp)) == 0. )
7 years ago
return(0);
7 years ago
if ( (qprice= LP_trades_pricevalidate(qp,coin,myprice)) < 0. )
7 years ago
return(0);
7 years ago
if ( LP_reservation_check(qp->txid,qp->vout,qp->desthash) == 0 && LP_reservation_check(qp->txid2,qp->vout2,qp->desthash) == 0 )
{
LP_connectstartbob(ctx,LP_mypubsock,qp->srccoin,qp->destcoin,qprice,qp);
7 years ago
return(qp);
7 years ago
} else printf("connect message from non-reserved (%llu)\n",(long long)qp->aliceid);
7 years ago
return(0);
7 years ago
}
7 years ago
struct LP_quoteinfo *LP_trades_gotconnected(void *ctx,struct LP_quoteinfo *qp,struct LP_quoteinfo *newqp,char *pairstr)
7 years ago
{
char *retstr;
7 years ago
//char str[65]; printf("alice %s received CONNECTED.(%llu)\n",bits256_str(str,G.LP_mypub25519),(long long)qp->aliceid);
7 years ago
*newqp = *qp;
qp = newqp;
if ( LP_trades_alicevalidate(ctx,qp) > 0. )
7 years ago
{
7 years ago
//printf("LP_trades_alicevalidate fine\n");
7 years ago
LP_aliceid(qp->tradeid,qp->aliceid,"connected",0,0);
if ( (retstr= LP_connectedalice(qp,pairstr)) != 0 )
free(retstr);
7 years ago
return(qp);
}
7 years ago
//printf("LP_trades_alicevalidate error\n");
7 years ago
return(0);
}
7 years ago
int32_t LP_trades_bestpricecheck(void *ctx,struct LP_trade *tp)
7 years ago
{
7 years ago
double qprice; int32_t flag = 0; struct LP_quoteinfo Q; int64_t dynamictrust; char *retstr; struct LP_pubkey_info *pubp;
7 years ago
Q = tp->Q;
7 years ago
//printf("check bestprice %.8f vs new price %.8f\n",tp->bestprice,(double)Q.destsatoshis/Q.satoshis);
7 years ago
if ( Q.satoshis != 0 && (pubp= LP_pubkeyadd(Q.srchash)) != 0 )//(qprice= LP_trades_alicevalidate(ctx,&Q)) > 0. )
7 years ago
{
7 years ago
qprice = (double)Q.destsatoshis / (Q.satoshis - Q.txfee);
7 years ago
LP_aliceid(Q.tradeid,tp->aliceid,"reserved",0,0);
if ( (retstr= LP_quotereceived(&Q)) != 0 )
free(retstr);
//LP_trades_gotreserved(ctx,&Q,&tp->Qs[LP_RESERVED]);
7 years ago
dynamictrust = LP_dynamictrust(Q.othercredits,Q.srchash,LP_kmdvalue(Q.srccoin,Q.satoshis));
7 years ago
if ( tp->bestprice == 0. )
flag = 1;
else if ( qprice < tp->bestprice && pubp->slowresponse <= tp->bestresponse*1.05 )
flag = 1;
else if ( qprice < tp->bestprice*1.01 && dynamictrust > tp->besttrust && pubp->slowresponse <= tp->bestresponse*1.1 )
flag = 1;
else if ( qprice <= tp->bestprice && pubp->unconfcredits > tp->bestunconfcredits && pubp->slowresponse <= tp->bestresponse )
flag = 1;
if ( flag != 0 )
7 years ago
{
7 years ago
tp->Qs[LP_CONNECT] = tp->Q;
7 years ago
tp->bestprice = qprice;
7 years ago
tp->besttrust = dynamictrust;
7 years ago
tp->bestunconfcredits = pubp->unconfcredits;
7 years ago
tp->bestresponse = pubp->slowresponse;
7 years ago
printf("aliceid.%llu got new bestprice %.8f dynamictrust %.8f (unconf %.8f) slowresponse.%d\n",(long long)tp->aliceid,tp->bestprice,dstr(dynamictrust),dstr(tp->bestunconfcredits),tp->bestresponse);
7 years ago
return(qprice);
7 years ago
} //else printf("qprice %.8f dynamictrust %.8f not good enough\n",qprice,dstr(dynamictrust));
7 years ago
} else printf("alice didnt validate\n");
7 years ago
return(0);
7 years ago
}
7 years ago
void LP_tradesloop(void *ctx)
{
7 years ago
struct LP_trade *qtp,*tp,*tmp; struct LP_quoteinfo *qp,Q; uint32_t now; int32_t timeout,funcid,flag,nonz; struct iguana_info *coin; struct LP_pubkey_info *pubp;
7 years ago
strcpy(LP_tradesloop_stats.name,"LP_tradesloop");
7 years ago
LP_tradesloop_stats.threshold = 30000;
7 years ago
sleep(5);
while ( LP_STOP_RECEIVED == 0 )
7 years ago
{
LP_millistats_update(&LP_tradesloop_stats);
7 years ago
nonz = 0;
7 years ago
HASH_ITER(hh,LP_trades,tp,tmp)
{
if ( tp->negotiationdone != 0 )
continue;
timeout = LP_AUTOTRADE_TIMEOUT;
if ( (coin= LP_coinfind(tp->Q.srccoin)) != 0 && coin->electrum != 0 )
timeout += LP_AUTOTRADE_TIMEOUT * .5;
if ( (coin= LP_coinfind(tp->Q.destcoin)) != 0 && coin->electrum != 0 )
timeout += LP_AUTOTRADE_TIMEOUT * .5;
now = (uint32_t)time(NULL);
if ( now > tp->lastprocessed )
{
if ( tp->iambob == 0 )
{
if ( tp->bestprice > 0. )
{
if ( tp->connectsent == 0 )
{
LP_Alicemaxprice = tp->bestprice;
LP_reserved(ctx,LP_myipaddr,LP_mypubsock,&tp->Qs[LP_CONNECT]); // send LP_CONNECT
tp->connectsent = now;
//printf("send LP_connect aliceid.%llu %.8f\n",(long long)tp->aliceid,tp->bestprice);
}
7 years ago
else if ( now < tp->firstprocessed+timeout && ((tp->firstprocessed - now) % 20) == 19 )
7 years ago
{
//LP_Alicemaxprice = tp->bestprice;
//LP_reserved(ctx,LP_myipaddr,LP_mypubsock,&tp->Qs[LP_CONNECT]); // send LP_CONNECT
7 years ago
//printf("mark slow LP_connect aliceid.%llu %.8f\n",(long long)tp->aliceid,tp->bestprice);
7 years ago
if ( (pubp= LP_pubkeyfind(tp->Qs[LP_CONNECT].srchash)) != 0 )
pubp->slowresponse++;
}
}
}
}
}
now = (uint32_t)time(NULL);
HASH_ITER(hh,LP_trades,tp,tmp)
{
timeout = LP_AUTOTRADE_TIMEOUT;
if ( (coin= LP_coinfind(tp->Q.srccoin)) != 0 && coin->electrum != 0 )
timeout += LP_AUTOTRADE_TIMEOUT * .5;
if ( (coin= LP_coinfind(tp->Q.destcoin)) != 0 && coin->electrum != 0 )
timeout += LP_AUTOTRADE_TIMEOUT * .5;
if ( now > tp->firstprocessed+timeout*10 )
{
//printf("purge swap aliceid.%llu\n",(long long)tp->aliceid);
portable_mutex_lock(&LP_tradesmutex);
HASH_DELETE(hh,LP_trades,tp);
portable_mutex_unlock(&LP_tradesmutex);
free(tp);
}
}
7 years ago
DL_FOREACH_SAFE(LP_tradesQ,qtp,tmp)
7 years ago
{
7 years ago
now = (uint32_t)time(NULL);
Q = qtp->Q;
funcid = qtp->funcid;
7 years ago
//printf("dequeue %p funcid.%d aliceid.%llu iambob.%d\n",qtp,funcid,(long long)qtp->aliceid,qtp->iambob);
7 years ago
portable_mutex_lock(&LP_tradesmutex);
DL_DELETE(LP_tradesQ,qtp);
HASH_FIND(hh,LP_trades,&qtp->aliceid,sizeof(qtp->aliceid),tp);
if ( tp == 0 )
7 years ago
{
7 years ago
if ( now > Q.timestamp+LP_AUTOTRADE_TIMEOUT*2 ) // eat expired
7 years ago
free(qtp);
else
7 years ago
{
7 years ago
tp = qtp;
HASH_ADD(hh,LP_trades,aliceid,sizeof(tp->aliceid),tp);
portable_mutex_unlock(&LP_tradesmutex);
if ( tp->iambob != 0 && funcid == LP_REQUEST ) // bob maybe sends LP_RESERVED
{
if ( (qp= LP_trades_gotrequest(ctx,&Q,&tp->Qs[LP_REQUEST],tp->pairstr)) != 0 )
tp->Qs[LP_RESERVED] = Q;
}
else if ( tp->iambob == 0 && funcid == LP_RESERVED ) // alice maybe sends LP_CONNECT
{
LP_trades_bestpricecheck(ctx,tp);
}
7 years ago
else if ( tp->iambob == 0 && funcid == LP_CONNECTED )
{
tp->negotiationdone = now;
7 years ago
//printf("alice sets negotiationdone.%u\n",now);
7 years ago
LP_trades_gotconnected(ctx,&tp->Q,&tp->Qs[LP_CONNECTED],tp->pairstr);
}
7 years ago
nonz++;
tp->firstprocessed = tp->lastprocessed = (uint32_t)time(NULL);
7 years ago
if ( funcid == LP_CONNECT && tp->negotiationdone == 0 ) // bob all done
{
tp->negotiationdone = now;
7 years ago
//printf("bob sets negotiationdone.%u\n",now);
7 years ago
LP_trades_gotconnect(ctx,&tp->Q,&tp->Qs[LP_CONNECT],tp->pairstr);
}
7 years ago
}
7 years ago
continue;
7 years ago
}
7 years ago
portable_mutex_unlock(&LP_tradesmutex);
7 years ago
tp->Q = qtp->Q;
7 years ago
if ( qtp->iambob == tp->iambob && qtp->pairstr[0] != 0 )
safecopy(tp->pairstr,qtp->pairstr,sizeof(tp->pairstr));
7 years ago
//printf("finished dequeue %p funcid.%d aliceid.%llu iambob.%d/%d done.%u\n",qtp,funcid,(long long)qtp->aliceid,qtp->iambob,tp->iambob,tp->negotiationdone);
7 years ago
free(qtp);
flag = 0;
7 years ago
if ( tp->iambob == 0 )
7 years ago
{
7 years ago
if ( funcid == LP_RESERVED )
7 years ago
{
7 years ago
if ( tp->connectsent == 0 )
flag = LP_trades_bestpricecheck(ctx,tp);
7 years ago
}
7 years ago
else if ( funcid == LP_CONNECTED && tp->negotiationdone == 0 ) // alice all done tp->connectsent != 0 &&
7 years ago
{
7 years ago
flag = 1;
tp->negotiationdone = now;
LP_trades_gotconnected(ctx,&tp->Q,&tp->Qs[LP_CONNECTED],tp->pairstr);
}
}
else
{
if ( funcid == LP_REQUEST ) // bob maybe sends LP_RESERVED
{
if ( (qp= LP_trades_gotrequest(ctx,&Q,&tp->Qs[LP_REQUEST],tp->pairstr)) != 0 )
7 years ago
{
7 years ago
tp->Qs[LP_RESERVED] = Q;
7 years ago
flag = 1;
}
}
7 years ago
else if ( funcid == LP_CONNECT && tp->negotiationdone == 0 ) // bob all done
7 years ago
{
7 years ago
flag = 1;
tp->negotiationdone = now;
7 years ago
//printf("bob sets negotiationdone.%u\n",now);
7 years ago
LP_trades_gotconnect(ctx,&tp->Q,&tp->Qs[LP_CONNECT],tp->pairstr);
7 years ago
}
7 years ago
}
if ( flag != 0 )
{
tp->lastprocessed = (uint32_t)time(NULL);
nonz++;
}
7 years ago
}
7 years ago
if ( nonz == 0 )
sleep(1);
7 years ago
}
}
void LP_tradecommandQ(struct LP_quoteinfo *qp,char *pairstr,int32_t funcid)
{
7 years ago
struct LP_trade *qtp; uint64_t aliceid; int32_t iambob;
if ( funcid < 0 || funcid >= sizeof(qtp->Qs)/sizeof(*qtp->Qs) )
7 years ago
return;
if ( funcid == LP_REQUEST || funcid == LP_CONNECT )
iambob = 1;
else iambob = 0;
aliceid = qp->aliceid;
7 years ago
portable_mutex_lock(&LP_tradesmutex);
qtp = calloc(1,sizeof(*qtp));
qtp->funcid = funcid;
qtp->iambob = iambob;
qtp->aliceid = aliceid;
qtp->newtime = (uint32_t)time(NULL);
qtp->Q = *qp;
if ( pairstr != 0 )
safecopy(qtp->pairstr,pairstr,sizeof(qtp->pairstr));
DL_APPEND(LP_tradesQ,qtp);
portable_mutex_unlock(&LP_tradesmutex);
7 years ago
//printf("queue.%d %p\n",funcid,qtp);
7 years ago
}
8 years ago
int32_t LP_tradecommand(void *ctx,char *myipaddr,int32_t pubsock,cJSON *argjson,uint8_t *data,int32_t datalen)
8 years ago
{
7 years ago
int32_t Qtrades = 1;
7 years ago
char *method,str[65]; int32_t i,num,DEXselector = 0; uint64_t aliceid; double qprice,bestprice,price,bid,ask; cJSON *proof; uint64_t rq; struct iguana_info *coin; struct LP_quoteinfo Q,Q2; int32_t counter,retval=-1;
7 years ago
if ( (method= jstr(argjson,"method")) != 0 && (strcmp(method,"reserved") == 0 ||strcmp(method,"connected") == 0 || strcmp(method,"request") == 0 || strcmp(method,"connect") == 0) )
8 years ago
{
7 years ago
LP_quoteparse(&Q,argjson);
7 years ago
LP_requestinit(&Q.R,Q.srchash,Q.desthash,Q.srccoin,Q.satoshis-Q.txfee,Q.destcoin,Q.destsatoshis-Q.desttxfee,Q.timestamp,Q.quotetime,DEXselector);
7 years ago
LP_tradecommand_log(argjson);
7 years ago
rq = ((uint64_t)Q.R.requestid << 32) | Q.R.quoteid;
7 years ago
if ( Q.timestamp > 0 && time(NULL) > Q.timestamp + LP_AUTOTRADE_TIMEOUT*20 ) // eat expired packets, some old timestamps floating about?
7 years ago
{
7 years ago
printf("aliceid.%llu is expired by %d\n",(long long)Q.aliceid,(uint32_t)time(NULL) - (Q.timestamp + LP_AUTOTRADE_TIMEOUT*20));
return(1);
7 years ago
}
7 years ago
//printf("%s\n",jprint(argjson,0));
7 years ago
printf("%-4d (%-10u %10u) %12s id.%-20llu %5s/%-5s %12.8f -> %12.8f (%11.8f) | RT.%d %d n%d\n",(uint32_t)time(NULL) % 3600,Q.R.requestid,Q.R.quoteid,method,(long long)Q.aliceid,Q.srccoin,Q.destcoin,dstr(Q.satoshis),dstr(Q.destsatoshis),(double)Q.destsatoshis/Q.satoshis,LP_RTcount,LP_swapscount,G.netid);
7 years ago
retval = 1;
7 years ago
aliceid = j64bits(argjson,"aliceid");
qprice = jdouble(argjson,"price");
7 years ago
if ( strcmp(method,"reserved") == 0 )
{
7 years ago
bestprice = LP_bob_competition(&counter,aliceid,qprice,1);
7 years ago
//printf("%s lag %ld: aliceid.%llu price %.8f -> bestprice %.8f Alice max %.8f\n",jprint(argjson,0),Q.quotetime - (time(NULL)-20),(long long)aliceid,qprice,bestprice,LP_Alicemaxprice);
7 years ago
if ( 1 )
7 years ago
{
7 years ago
if ( LP_Alicemaxprice == 0. )
7 years ago
return(retval);
7 years ago
if ( bits256_nonz(LP_Alicedestpubkey) != 0 )
{
if (bits256_cmp(LP_Alicedestpubkey,Q.srchash) != 0 )
{
printf("got reserved response from different node %s\n",bits256_str(str,Q.srchash));
return(retval);
} else printf("got reserved response from destpubkey %s\n",bits256_str(str,Q.srchash));
}
7 years ago
}
7 years ago
if ( bits256_cmp(G.LP_mypub25519,Q.desthash) == 0 && bits256_cmp(G.LP_mypub25519,Q.srchash) != 0 ) // alice
7 years ago
{
7 years ago
if ( Qtrades == 0 )
7 years ago
{
if ( Q.quotetime > time(NULL)-20 && LP_alice_eligible(Q.quotetime) > 0 )
{
LP_trades_gotreserved(ctx,&Q,&Q2);
7 years ago
if ( LP_quotecmp(0,&Q,&LP_Alicequery) == 0 )
LP_reserved(ctx,LP_myipaddr,LP_mypubsock,&Q);
7 years ago
}
} else LP_tradecommandQ(&Q,jstr(argjson,"pair"),LP_RESERVED);
7 years ago
}
7 years ago
}
else if ( strcmp(method,"connected") == 0 )
{
7 years ago
bestprice = LP_bob_competition(&counter,aliceid,qprice,1000);
7 years ago
if ( bits256_cmp(G.LP_mypub25519,Q.desthash) == 0 && bits256_cmp(G.LP_mypub25519,Q.srchash) != 0 ) // alice
7 years ago
{
7 years ago
static uint64_t rqs[1024];
for (i=0; i<sizeof(rqs)/sizeof(*rqs); i++)
if ( rq == rqs[i] )
return(retval);
for (i=0; i<sizeof(rqs)/sizeof(*rqs); i++)
if ( rqs[i] == 0 )
break;
if ( i == sizeof(rqs)/sizeof(*rqs) )
i = (rand() % (sizeof(rqs)/sizeof(*rqs)));
rqs[i] = rq;
//printf("CONNECTED.(%s)\n",jprint(argjson,0));
7 years ago
if ( (proof= jarray(&num,argjson,"proof")) != 0 && num > 0 )
7 years ago
Q.othercredits = LP_instantdex_proofcheck(Q.srccoin,Q.coinaddr,proof,num);
7 years ago
if ( Qtrades == 0 )
7 years ago
LP_trades_gotconnected(ctx,&Q,&Q2,jstr(argjson,"pair"));
7 years ago
else LP_tradecommandQ(&Q,jstr(argjson,"pair"),LP_CONNECTED);
7 years ago
}
7 years ago
}
7 years ago
price = LP_myprice(&bid,&ask,Q.srccoin,Q.destcoin);
7 years ago
if ( (coin= LP_coinfind(Q.srccoin)) == 0 || coin->inactive != 0 )
8 years ago
{
7 years ago
//printf("%s is not active\n",Q.srccoin);
7 years ago
return(retval);
}
if ( price <= SMALLVAL || ask <= SMALLVAL )
{
//printf("this node has no price for %s/%s\n",Q.srccoin,Q.destcoin);
7 years ago
return(retval);
}
if ( LP_aliceonly(Q.srccoin) > 0 )
{
printf("{\"error\":\"GAME can only be alice coin\"}\n");
return(retval);
}
7 years ago
if ( strcmp(method,"request") == 0 ) // bob
7 years ago
{
7 years ago
bestprice = LP_bob_competition(&counter,aliceid,qprice,-1);
7 years ago
if ( Qtrades == 0 )//|| (bits256_cmp(Q.srchash,G.LP_mypub25519) == 0 && bits256_cmp(G.LP_mypub25519,Q.desthash) != 0) )
7 years ago
LP_trades_gotrequest(ctx,&Q,&Q2,jstr(argjson,"pair"));
7 years ago
else LP_tradecommandQ(&Q,jstr(argjson,"pair"),LP_REQUEST);
7 years ago
}
7 years ago
else if ( strcmp(method,"connect") == 0 )
{
7 years ago
LP_bob_competition(&counter,aliceid,qprice,1000);
7 years ago
if ( bits256_cmp(G.LP_mypub25519,Q.srchash) == 0 && bits256_cmp(G.LP_mypub25519,Q.desthash) != 0 ) // bob
7 years ago
{
7 years ago
static uint64_t rqs[1024];
for (i=0; i<sizeof(rqs)/sizeof(*rqs); i++)
if ( rq == rqs[i] )
return(retval);
for (i=0; i<sizeof(rqs)/sizeof(*rqs); i++)
if ( rqs[i] == 0 )
break;
if ( i == sizeof(rqs)/sizeof(*rqs) )
i = (rand() % (sizeof(rqs)/sizeof(*rqs)));
rqs[i] = rq;
7 years ago
//printf("CONNECT.(%s)\n",jprint(argjson,0));
7 years ago
if ( (proof= jarray(&num,argjson,"proof")) != 0 && num > 0 )
7 years ago
Q.othercredits = LP_instantdex_proofcheck(Q.destcoin,Q.destaddr,proof,num);
7 years ago
if ( Qtrades == 0 )
7 years ago
LP_trades_gotconnect(ctx,&Q,&Q2,jstr(argjson,"pair"));
7 years ago
else LP_tradecommandQ(&Q,jstr(argjson,"pair"),LP_CONNECT);
7 years ago
}
8 years ago
}
7 years ago
return(retval);
8 years ago
}
return(retval);
}
7 years ago
char *LP_autobuy(void *ctx,char *myipaddr,int32_t mypubsock,char *base,char *rel,double maxprice,double relvolume,int32_t timeout,int32_t duration,char *gui,uint32_t nonce,bits256 destpubkey,uint32_t tradeid)
7 years ago
{
7 years ago
uint64_t desttxfee,txfee; uint32_t lastnonce; int64_t bestsatoshis=0,destsatoshis; struct iguana_info *basecoin,*relcoin; struct LP_utxoinfo *autxo,B,A; struct LP_quoteinfo Q; bits256 pubkeys[100]; struct LP_address_utxo *utxos[1000]; int32_t max=(int32_t)(sizeof(utxos)/sizeof(*utxos));
7 years ago
basecoin = LP_coinfind(base);
relcoin = LP_coinfind(rel);
7 years ago
if ( gui == 0 )
gui = "nogui";
7 years ago
if ( basecoin == 0 || basecoin->inactive != 0 || relcoin == 0 || relcoin->inactive != 0 )
return(clonestr("{\"error\":\"base or rel not found or inactive\"}"));
7 years ago
if ( LP_aliceonly(base) > 0 )
7 years ago
return(clonestr("{\"error\":\"GAME can only be alice coin\"}"));
7 years ago
printf("LP_autobuy %s/%s price %.8f vol %.8f nonce %u\n",base,rel,maxprice,relvolume,nonce);
if ( (lastnonce= LP_lastnonce) != 0 && nonce <= lastnonce )
{
printf("nonce.%u not bigger than lastnonce.%u\n",nonce,lastnonce);
return(clonestr("{\"error\":\"invalid nonce\"}"));
}
LP_lastnonce = nonce;
8 years ago
if ( duration <= 0 )
duration = LP_ORDERBOOK_DURATION;
if ( timeout <= 0 )
timeout = LP_AUTOTRADE_TIMEOUT;
7 years ago
if ( basecoin->electrum != 0 && relcoin->electrum != 0 )
{
7 years ago
if ( timeout < 2*LP_AUTOTRADE_TIMEOUT )
timeout = 2*LP_AUTOTRADE_TIMEOUT;
7 years ago
}
else if ( basecoin->electrum != 0 || relcoin->electrum != 0 )
{
7 years ago
if ( timeout < 1.5*LP_AUTOTRADE_TIMEOUT )
timeout = 1.5*LP_AUTOTRADE_TIMEOUT;
7 years ago
}
7 years ago
if ( time(NULL) < Alice_expiration )
7 years ago
{
cJSON *retjson = cJSON_CreateObject();
jaddstr(retjson,"error","only one pending request at a time");
jaddnum(retjson,"wait",Alice_expiration-time(NULL));
return(jprint(retjson,1));
} else LP_alicequery_clear();
8 years ago
if ( maxprice <= 0. || relvolume <= 0. || LP_priceinfofind(base) == 0 || LP_priceinfofind(rel) == 0 )
return(clonestr("{\"error\":\"invalid parameter\"}"));
7 years ago
if ( strcmp("BTC",rel) == 0 )
maxprice *= 1.01;
else maxprice *= 1.001;
7 years ago
memset(pubkeys,0,sizeof(pubkeys));
8 years ago
LP_txfees(&txfee,&desttxfee,base,rel);
7 years ago
destsatoshis = SATOSHIDEN * relvolume + 2*desttxfee;
7 years ago
memset(&A,0,sizeof(A));
LP_address_utxo_reset(relcoin);
7 years ago
if ( (autxo= LP_address_myutxopair(&A,0,utxos,max,relcoin,relcoin->smartaddr,txfee,dstr(destsatoshis),maxprice,desttxfee)) == 0 )
7 years ago
return(clonestr("{\"error\":\"cant find a deposit that is close enough in size. make another deposit that is just a bit larger than what you want to trade\"}"));
7 years ago
//printf("bestfit selected alice (%.8f %.8f) for %.8f sats %.8f\n",dstr(autxo->payment.value),dstr(autxo->fee.value),dstr(destsatoshis),dstr(autxo->swap_satoshis));
if ( destsatoshis - desttxfee < autxo->swap_satoshis )
7 years ago
{
7 years ago
destsatoshis -= desttxfee;
7 years ago
autxo->swap_satoshis = destsatoshis;
//printf("first path dest %.8f from %.8f\n",dstr(destsatoshis),dstr(autxo->swap_satoshis));
7 years ago
}
7 years ago
else if ( autxo->swap_satoshis - desttxfee < destsatoshis )
7 years ago
{
7 years ago
autxo->swap_satoshis -= desttxfee;
destsatoshis = autxo->swap_satoshis;
printf("second path dest %.8f from %.8f\n",dstr(destsatoshis),dstr(autxo->swap_satoshis));
7 years ago
}
7 years ago
if ( destsatoshis < (autxo->payment.value / LP_MINCLIENTVOL) || autxo->payment.value < desttxfee*LP_MINSIZE_TXFEEMULT )
{
printf("destsatoshis %.8f vs utxo %.8f this would have triggered an quote error -13\n",dstr(destsatoshis),dstr(autxo->payment.value));
7 years ago
return(clonestr("{\"error\":\"cant find a deposit that is close enough in size. make another deposit that is just a bit larger than what you want to trade\"}"));
7 years ago
}
7 years ago
bestsatoshis = 1.001 * LP_basesatoshis(dstr(destsatoshis),maxprice,txfee,desttxfee);
7 years ago
memset(&B,0,sizeof(B));
strcpy(B.coin,base);
if ( LP_quoteinfoinit(&Q,&B,rel,maxprice,bestsatoshis,destsatoshis) < 0 )
return(clonestr("{\"error\":\"cant set ordermatch quote\"}"));
if ( LP_quotedestinfo(&Q,autxo->payment.txid,autxo->payment.vout,autxo->fee.txid,autxo->fee.vout,G.LP_mypub25519,autxo->coinaddr) < 0 )
return(clonestr("{\"error\":\"cant set ordermatch quote info\"}"));
7 years ago
int32_t changed;
LP_mypriceset(&changed,autxo->coin,base,1. / maxprice);
7 years ago
LP_mypriceset(&changed,base,autxo->coin,0.);
7 years ago
return(LP_trade(ctx,myipaddr,mypubsock,&Q,maxprice,timeout,duration,tradeid,destpubkey));
7 years ago
}
8 years ago