Pages:
Author

Topic: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, TOR, Sweepstake, Upgrade V1.3 - page 34. (Read 55618 times)

full member
Activity: 365
Merit: 100
Looks like the diff is going up... people want to grab sweepstake?
"difficulty": {
     "proof-of-work": 61.72266125,
...

sr. member
Activity: 504
Merit: 250


Sorry, I can't upload normal image (

It could be that you are newbie, when I reply it, it should show up... thanks.
Vak
jr. member
Activity: 31
Merit: 2
full member
Activity: 365
Merit: 100
need to get onto a good exchange... CoinMarkets ok, pretty thin trade though
sr. member
Activity: 504
Merit: 250


nice picture.

Community, please submit more logos, there are bounties for the 1st 2 winners!


sweepstake grows faster...
{
    "current sweepstake size" : 1183047
}
hero member
Activity: 572
Merit: 500
im getting 9-10mh with rx 480s.

My stock 1080 is getting 20-21mh. I just fired up my old litecoin rig (5 x 280x) that I had stored away in the garage for the last couple of years and that is cranking out 4-4.2mh each which is approx 21Mh in total.

My single 1080 is just as powerful as 5 x 280x which is chewing up 950W of power.. Time to put it back in the garage or sell it off I reckon, what a waste...

newbie
Activity: 5
Merit: 0
yobit have this coin now ?
member
Activity: 84
Merit: 10
Still no one win the sweepstakes yet?
sr. member
Activity: 430
Merit: 250
im getting 9-10mh with rx 480s.
full member
Activity: 365
Merit: 100
Hope I will get the sweepstake... Grin

I echo someone said before, personally I don't feel 5% premine is too much (if you don't agree, simply make your choice on another coin). There are many coins with a lot more premine. As long as dev continue to support the coin, we have a great future there.  Smiley



sr. member
Activity: 504
Merit: 250
great coin... am I the only one to notice that sweepstake approaches 1 million coins? Grin
Now at 985132 to be precise.

Not that exciting considering the dev has 100 times more.

A fix percentage premine this size in 2017 is not acceptable. The premine should slowly automatically go to the dev over time, for example 3% of all sweepstakes.

Anyway, if someone seens some opportunity in this coin I have 1 mil for sale (no sweepstake).

if you don't feel comfortable, then please don't mine this coin. You have many choices there. Also sell your coin at exchange, it is the purpose to have an exchange.


We finally get a sweepstake with 1 million+ coins, good luck to all miners!
{
    "current sweepstake size" : 1003751
}
legendary
Activity: 2002
Merit: 1051
ICO? Not even once.
great coin... am I the only one to notice that sweepstake approaches 1 million coins? Grin
Now at 985132 to be precise.

Not that exciting considering the dev has 100 times more.

A fix percentage premine this size in 2017 is not acceptable. The premine should slowly automatically go to the dev over time, for example 3% of all sweepstakes.

Anyway, if someone seens some opportunity in this coin I have 1 mil for sale (no sweepstake).
member
Activity: 84
Merit: 10
great coin... am I the only one to notice that sweepstake approaches 1 million coins? Grin
Now at 985132 to be precise.
newbie
Activity: 56
Merit: 0
I really like the idea, but is anybody notice that there was a 100 000 000 premine?

5% premine is not much, as long as the dev support the coin long term. Also dev or the team need to put in effort, pay for servers, website, exchanges, etc. Bounties are also included in the premine. With a possible 20 million sweepstake the premine seems OK to me, compared to much higher premines or ICOs.
hero member
Activity: 966
Merit: 501
I really like the idea, but is anybody notice that there was a 100 000 000 premine?
newbie
Activity: 56
Merit: 0
I like this coin and dev team... hope we will get on to Yobit soon.
sr. member
Activity: 504
Merit: 250
member
Activity: 114
Merit: 10
Coin is good,
Please, say Me What are the dependencies when compiling code on Ubuntu 14.04

I compiled Ubuntu daemon client, you can download from the front page of this thread.

For dependencies, this is what I use (from makefile.unix):

Code:
USE_UPNP:=0
USE_IPV6:=1

LINK:=$(CXX)
ARCH:=$(system lscpu | head -n 1 | awk '{print $2}')

DEFS=-DBOOST_SPIRIT_THREADSAFE

DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(CURDIR)/tor $(CURDIR)/json $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PA
TH) $(OPENSSL_INCLUDE_PATH))
LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH) $(CURDIR)/leveldb)

LMODE = dynamic
LMODE2 = dynamic
ifdef STATIC
        LMODE = static
        ifeq (${STATIC}, all)
                LMODE2 = static
        endif
endif

LIBS += \
        -Wl,-B$(LMODE) \
        -l boost_system$(BOOST_LIB_SUFFIX) \
        -l boost_filesystem$(BOOST_LIB_SUFFIX) \
        -l boost_program_options$(BOOST_LIB_SUFFIX) \
        -l boost_thread$(BOOST_LIB_SUFFIX) \
        -l db_cxx$(BDB_LIB_SUFFIX) \
        -l ssl \
        -l crypto \
        -l event \
        -l z \
        -Wl,-B$(LMODE2) \
        -l leveldb \
        -l memenv \
        -l dl \
        -l boost_chrono \
        -l boost_date_time \
        -l pthread

ifndef USE_UPNP
        override USE_UPNP = -
endif
ifneq (${USE_UPNP}, -)
        LIBS += -l miniupnpc
        DEFS += -DUSE_UPNP=$(USE_UPNP)
endif

ifneq (${USE_IPV6}, -)
        DEFS += -DUSE_IPV6=$(USE_IPV6)
endif

HARDENING=-fno-stack-protector
HARDENING+=-fstack-protector-all -Wstack-protector

LDHARDENING+=-Wl,-z,relro -Wl,-z,now
ifdef PIE
        HARDENING+=-fPIE
        LDHARDENING+=-pie
endif

DEBUGFLAGS=-g

ifeq (${ARCH}, i686)
        EXT_OPTIONS=-msse2
endif

xCXXFLAGS=-O2 $(EXT_OPTIONS) -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused
-parameter \
$(DEBUGFLAGS) $(DEFS) $(HARDENING) $(CXXFLAGS)

xLDFLAGS=$(LDHARDENING) $(LDFLAGS)

OBJS= \
[... snip]

all: SweepstakeCoind

DEFS += $(addprefix -I,$(CURDIR)/leveldb/include)
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
leveldb/libleveldb.a:
        @echo "Building LevelDB ..."; cd leveldb; make libleveldb.a libmemenv.a; cd ..;
obj/txdb-leveldb.o: leveldb/libleveldb.a

# auto-generated dependencies:
-include obj/*.P

obj/build.h: FORCE
        /bin/sh ../share/genbuild.sh obj/build.h
version.cpp: obj/build.h
DEFS += -DHAVE_BUILD_INFO

obj/scrypt-x86.o: scrypt-x86.S
        $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<

obj/scrypt-x86_64.o: scrypt-x86_64.S
        $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<

obj/scrypt-arm.o: scrypt-arm.S
        $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<

obj/%.o: %.cpp
        $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
        @cp $(@:%.o=%.d) $(@:%.o=%.P); \
        sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
        -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
        rm -f $(@:%.o=%.d)

obj/%.o: json/%.cpp
        $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
        @cp $(@:%.o=%.d) $(@:%.o=%.P); \
        sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
        -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
        rm -f $(@:%.o=%.d)


obj/%.o: %.c
        $(CXX) -c $(xCXXFLAGS) -fpermissive -MMD -MF $(@:%.o=%.d) -o $@ $<
        @cp $(@:%.o=%.d) $(@:%.o=%.P); \
        sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
        -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
        rm -f $(@:%.o=%.d)

obj/%.o: tor/%.c
        $(CC) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
        @cp $(@:%.o=%.d) $(@:%.o=%.P); \
        sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
        -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
        rm -f $(@:%.o=%.d)

obj/anonymize.o: tor/anonymize.cpp
        $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
        @cp $(@:%.o=%.d) $(@:%.o=%.P); \
        sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
        -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
        rm -f $(@:%.o=%.d)

SweepstakeCoind: $(OBJS:obj/%=obj/%) obj/anonymize.o
        $(LINK) $(xCXXFLAGS) -o $@ $^ $(xLDFLAGS) $(LIBS)


When you run the daemon, you get an error:
./SweepstakeCoind: error while loading shared libraries: libminiupnpc.so.9: cannot open shared object file: No such file or directory
full member
Activity: 231
Merit: 101
Can't sync wallet, what is the secret please? Smiley  Created conf , not sure if correct though, any help please?
Pages:
Jump to: