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.

191 lines
7.5 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. *
* *
******************************************************************************/
//
// main.c
// marketmaker
//
// Copyright © 2017 SuperNET. All rights reserved.
//
7 years ago
7 years ago
void PNACL_message(char *arg,...)
7 years ago
{
}
8 years ago
#define FROM_MARKETMAKER
7 years ago
8 years ago
#include <stdio.h>
#include <stdint.h>
#ifndef NATIVE_WINDOWS
7 years ago
#include "OS_portable.h"
#else
7 years ago
#include "../../crypto777/OS_portable.h"
#endif // !_WIN_32
uint32_t DOCKERFLAG;
8 years ago
#define MAX(a,b) ((a) > (b) ? (a) : (b))
8 years ago
char *stats_JSON(void *ctx,char *myipaddr,int32_t pubsock,cJSON *argjson,char *remoteaddr,uint16_t port);
8 years ago
#include "stats.c"
8 years ago
void LP_priceupdate(char *base,char *rel,double price,double avebid,double aveask,double highbid,double lowask,double PAXPRICES[32]);
8 years ago
8 years ago
//defined(__APPLE__) ||
7 years ago
#ifdef FROM_JS // defined(WIN32) || defined(USE_STATIC_NANOMSG)
8 years ago
#include "../../crypto777/nanosrc/nn.h"
#include "../../crypto777/nanosrc/bus.h"
#include "../../crypto777/nanosrc/pubsub.h"
#include "../../crypto777/nanosrc/pipeline.h"
#include "../../crypto777/nanosrc/reqrep.h"
#include "../../crypto777/nanosrc/tcp.h"
8 years ago
#include "../../crypto777/nanosrc/pair.h"
8 years ago
#else
#if defined(WIN32) || defined(USE_STATIC_NANOMSG)
#include "../../crypto777/nanosrc/nn.h"
#include "../../crypto777/nanosrc/bus.h"
#include "../../crypto777/nanosrc/pubsub.h"
#include "../../crypto777/nanosrc/pipeline.h"
#include "../../crypto777/nanosrc/reqrep.h"
#include "../../crypto777/nanosrc/tcp.h"
#include "../../crypto777/nanosrc/pair.h"
#else
#include "/usr/local/include/nanomsg/nn.h"
#include "/usr/local/include/nanomsg/bus.h"
#include "/usr/local/include/nanomsg/pubsub.h"
#include "/usr/local/include/nanomsg/pipeline.h"
#include "/usr/local/include/nanomsg/reqrep.h"
#include "/usr/local/include/nanomsg/tcp.h"
#include "/usr/local/include/nanomsg/pair.h"
#endif
8 years ago
#endif
8 years ago
#include "LP_nativeDEX.c"
void LP_main(void *ptr)
{
7 years ago
char *passphrase; double profitmargin; uint16_t port; cJSON *argjson = ptr;
8 years ago
if ( (passphrase= jstr(argjson,"passphrase")) != 0 )
{
profitmargin = jdouble(argjson,"profitmargin");
8 years ago
LP_profitratio += profitmargin;
7 years ago
if ( (port= juint(argjson,"rpcport")) < 1000 )
7 years ago
port = LP_RPCPORT;
7 years ago
LPinit(port,LP_RPCPORT+10,LP_RPCPORT+20,LP_RPCPORT+30,passphrase,jint(argjson,"client"),jstr(argjson,"userhome"),argjson);
8 years ago
}
8 years ago
}
8 years ago
8 years ago
int main(int argc, const char * argv[])
{
7 years ago
char dirname[512],*passphrase; double incr; cJSON *retjson;
7 years ago
OS_init();
7 years ago
if ( strstr(argv[0],"btc2kmd") != 0 && argv[1] != 0 )
7 years ago
{
7 years ago
uint8_t addrtype,rmd160[20],rmd160b[20]; char coinaddr[64],coinaddr2[64];
7 years ago
bitcoin_addr2rmd160(0,&addrtype,rmd160,(char *)argv[1]);
7 years ago
if ( addrtype == 0 )
{
bitcoin_address(coinaddr,0,60,rmd160,20);
bitcoin_addr2rmd160(0,&addrtype,rmd160b,coinaddr);
bitcoin_address(coinaddr2,0,0,rmd160b,20);
}
else if ( addrtype == 60 )
{
bitcoin_address(coinaddr,0,0,rmd160,20);
bitcoin_addr2rmd160(0,&addrtype,rmd160b,coinaddr);
bitcoin_address(coinaddr2,0,60,rmd160b,20);
}
7 years ago
printf("(%s) -> %s -> %s\n",(char *)argv[1],coinaddr,coinaddr2);
if ( strcmp((char *)argv[1],coinaddr2) != 0 )
printf("ERROR\n");
7 years ago
exit(0);
}
7 years ago
else if ( argv[1] != 0 && strcmp(argv[1],"hush") == 0 )
7 years ago
{
7 years ago
uint32_t timestamp; char str[65],wifstr[128]; bits256 privkey; int32_t i;
7 years ago
timestamp = (uint32_t)time(NULL);
printf("start hush vanitygen t.%u\n",timestamp);
7 years ago
for (i=0; i<1000000000; i++)
7 years ago
{
7 years ago
OS_randombytes(privkey.bytes,sizeof(privkey));
7 years ago
bitcoin_priv2wiflong(0xab,wifstr,privkey,0x36);
7 years ago
if ( wifstr[2] == 'x' && wifstr[3] == 'r' && wifstr[4] == 'H' && wifstr[5] == 'u' && wifstr[6] == 's' )
7 years ago
{
printf("i.%d %s -> wif.%s\n",i,bits256_str(str,privkey),wifstr);
7 years ago
if ( wifstr[7] == 'h' )
7 years ago
break;
7 years ago
} else printf("failed %s\n",wifstr);
7 years ago
}
printf("done hush vanitygen done %u elapsed %d\n",(uint32_t)time(NULL),(uint32_t)time(NULL) - timestamp);
exit(0);
}
else if ( argv[1] != 0 && strcmp(argv[1],"vanity") == 0 && argv[2] != 0 )
{
7 years ago
uint32_t timestamp; uint8_t pubkey33[33]; char str[65],coinaddr[64],wifstr[128]; bits256 privkey; int32_t i,len; void *ctx;
ctx = bitcoin_ctx();
len = (int32_t)strlen(argv[2]);
7 years ago
timestamp = (uint32_t)time(NULL);
printf("start vanitygen (%s) t.%u\n",argv[2],timestamp);
for (i=0; i<1000000000; i++)
{
OS_randombytes(privkey.bytes,sizeof(privkey));
7 years ago
bitcoin_priv2pub(ctx,pubkey33,coinaddr,privkey,0,60);
if ( strncmp(coinaddr+2,argv[2],len-1) == 0 )
7 years ago
{
7 years ago
bitcoin_priv2wif(0,wifstr,privkey,188);
printf("i.%d %s -> %s wif.%s\n",i,bits256_str(str,privkey),coinaddr,wifstr);
if ( coinaddr[2+len-1] == argv[2][len-1] )
7 years ago
break;
7 years ago
} //else printf("failed %s\n",wifstr);
7 years ago
}
7 years ago
printf("done vanitygen.(%s) done %u elapsed %d\n",argv[2],(uint32_t)time(NULL),(uint32_t)time(NULL) - timestamp);
7 years ago
exit(0);
}
8 years ago
sprintf(dirname,"%s",GLOBAL_DBDIR), OS_ensure_directory(dirname);
sprintf(dirname,"%s/SWAPS",GLOBAL_DBDIR), OS_ensure_directory(dirname);
8 years ago
sprintf(dirname,"%s/PRICES",GLOBAL_DBDIR), OS_ensure_directory(dirname);
7 years ago
sprintf(dirname,"%s/UNSPENTS",GLOBAL_DBDIR), OS_ensure_directory(dirname);
7 years ago
#ifdef FROM_JS
argc = 2;
retjson = cJSON_Parse("{\"client\":1,\"passphrase\":\"test\"}");
printf("calling LP_main(%s)\n",jprint(retjson,0));
LP_main(retjson);
7 years ago
emscripten_set_main_loop(LP_fromjs_iter,1,0);
7 years ago
#else
7 years ago
if ( argc == 1 )
{
7 years ago
//LP_privkey_tests();
7 years ago
LP_NXT_redeems();
sleep(3);
return(0);
}
8 years ago
if ( argc > 1 && (retjson= cJSON_Parse(argv[1])) != 0 )
{
7 years ago
if ( jint(retjson,"docker") == 1 )
DOCKERFLAG = 1;
else if ( jstr(retjson,"docker") != 0 )
DOCKERFLAG = (uint32_t)calc_ipbits(jstr(retjson,"docker"));
8 years ago
if ( (passphrase= jstr(retjson,"passphrase")) == 0 )
8 years ago
jaddstr(retjson,"passphrase","test");
if ( OS_thread_create(malloc(sizeof(pthread_t)),NULL,(void *)LP_main,(void *)retjson) != 0 )
8 years ago
{
8 years ago
printf("error launching LP_main (%s)\n",jprint(retjson,0));
8 years ago
exit(-1);
7 years ago
} //else printf("(%s) launched.(%s)\n",argv[1],passphrase);
8 years ago
incr = 100.;
7 years ago
while ( (1) )
7 years ago
sleep(100000);
8 years ago
}
7 years ago
#endif
8 years ago
return 0;
}