Bitcoin Forum
May 24, 2024, 01:14:20 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 »
81  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 12, 2017, 01:50:30 AM
Excited about this. Do we know the timeline for Coinmarketcap/when Yobit might be approved?

Also, keeping an eye out for slack and dev plans

We already submitted request to Yobit and paid premium fee. According to their schedule, it should be there 4-7 business days. So far we did not hear anything from them yet.

Will apply for coinmarketcap once we get to Yobit.
82  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 11, 2017, 04:16:48 PM
{
    "current sweepstake size" : 1496569
}
 wow Wink

if this is on the track as jackpotcoin, it's spiritual sequel or whatever, wasn't good to add a jackpot block each N blocks you mine, like with jackpotcoin instead of doing the block thing that keep climbing until soemone win it? and you also forgot to add the total supply, i can't find it in the first post
and how can this big block, work? the pool will likely find it before other and distribute to everyone, so there is no luck here for someone that want to win alone the big price

well a pool wins because it has more hash power, the chances are equal. If you get it solo, you get it all, while pool will distribute it among many miners.
83  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 11, 2017, 07:14:49 AM


Sorry, I can't upload normal image (

It could be that you are newbie, when I reply it, it should show up... thanks.
84  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 11, 2017, 06:41:19 AM


nice picture.

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


sweepstake grows faster...
{
    "current sweepstake size" : 1183047
}
85  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 11, 2017, 12:29:17 AM
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
}
86  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 10, 2017, 08:41:17 PM
Quote
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

You probably need to install required libs. See for example here for the dependencies:
https://litecoin.info/Compiling_the_Litecoin_daemon_from_source_on_Debian


Can't sync wallet, what is the secret please? Smiley  Created conf , not sure if correct though, any help please?

Windows wallet? make sure your VPN or virus software don't block all TOR edge nodes (if you see some IP is blocked by the virus software, check its IP on the google, it will tell you whether it is a TOR edge node. Most TOR edge nodes as far as I know are trustworthy).

You need to wait a few minutes sometimes for the TOR connection to be estalished.
87  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 10, 2017, 07:28:20 PM
You missed most important question

And what's actual supply and inflation per year?

I see fancy formulas and equations in the announcement but if you can tell me these two simple data it would be better.

Please read the front page and all info are there. Doing computation is not difficult.

For example, now the payout per block is 1000, block time is 60 sec, so one day there will be 1440 blocks, total PoW generated per day will be
1000x1440 = 1.44 mil,

per 30 days it will be 43.2 mil.

There on average, 30 days there will be 6 sweepstakes won, average 1 mil per sweepstake. So the first 30 days, expect around 49.2 million coins generated.

Then there's PoS, you can estimate (50 mil / 2) (average coins outstanding) * 0.2 (20%) / 12 (1 year has 12 month) = 0.5 mil.

So total for the 1st month there will be around 50 mils generated.

Payout reduced by 5% each 30 days, so next month you'd expect less PoW but more PoS, etc.

A more rigorous computation with variable PoS etc gave us about 2 billion coins in 10 years, as stated in the front page.


nova has a free-vote system for adding coins.
Any coin with a decent community can get in easily at no cost

Yes let's vote for SweepstakeCoin in nova!


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)

88  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 10, 2017, 06:13:45 PM
Now it's working fine, do you plan to make a Slack channel? And what's actual supply and inflation per year?

PD: Yobit is yoshit, I think Cryptopia is a much better option

We'll probably make a slack channel later. For now please post all questions in the thread.

As for Yobit, some people don't like it. But from our experiences that it is an OK exchange. After we get onto it, we'll continue looking for better ones. The key now is to develop the coin and its community, exchange will help once we grow.
89  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 10, 2017, 05:24:13 PM
Website doesn't work, and when will you get added to Coinmarketcap and exchanges?

The website works fine for me:
http://sweepstakecoin.info/

anyone else sees problems?

We'll request add to Coinmarketcap once we get a bigger exchange and trading becomes stable.

Sweepstake growing big... good luck to everyone:
{
    "current sweepstake size" : 845274
}
90  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 10, 2017, 04:28:03 PM
I see that you are using the jackpot algo. Did you address the bloating of the blockchain that lead to the original coin collapse?

Bloating you mean the blockchain becomes big and the algo become slow? Yes this is mainly the counting of PoW blocks (or PoS blocks) that we will have table search for them, which will keep the search time be nearly constant, and it won't cause problems.

How to mine this coin in windows?

Read this topic.

I read but I did not find the miner for windows.

Many miners are for windows, for example, you can download djm34's miner here:
https://mega.co.nz/#!0d9xjagT!H-K3q-XcyHIGEPcPQOKPcW7sdvh8cAaAmHqNRP09zBg

Any news about a better exchange with more volume?
We sent required info to Yobit and paid the fee, we should get listed there in a few days. We are also looking for other bigger ones.
91  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 10, 2017, 04:58:36 AM
Theres no such thing as True random

Of course there is, learn man.

Yes this is right, we use the true randomness. I added a Q/A in the front page to discuss it. Here it is:

Question 6: Are you sure the sweepstake is true random and that people can not cheat?
Answer: Yes the sweepstake is true random. This is how it is done: we use a sub-string from the current block hash to compute whether the current block wins the sweepstake. Sub-string in the block hash is true random and there are statistics to show it (and can be easily demonstrated too). The problem is that the current hash can be only computed once the block is generated, and the payment to that block is already determined at that time. To get around this problem, we always pay the current block with standard payout, but if the current block is a winner of the sweepstake, we remember the payout address, and next block we add the difference between sweepstake and standard block payout to the payout and send to the same winning address. This way, the true randomness is guaranteed as whether a block is the winning is determined only after the block is generated, so there's no cheating possible. This ingenious algorithm was first proposed in a coin called Grain, many years ago.
92  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 10, 2017, 02:50:34 AM
Dev, it's trying to load the explorer just really, really, really slow... Smiley

When should we be expecting a proper exchange like Nova or CE ?

explorer should be working fine now...
sweepstakecoin.info:3001

{
    "current sweepstake size" : 583438
}

and growing fast  Wink
93  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 09, 2017, 06:43:50 AM
Block explorer now available at:
http://sweepstakecoin.info:3001/

And sweepstake at 350K+:
{
    "current sweepstake size" : 352948
}

94  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 09, 2017, 04:02:40 AM
website is created: www.sweepstakecoin.info

also "Frequent Asked Questions" section is updated.
95  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 09, 2017, 12:02:15 AM
I hope for Poloniex and Bittrex.

I hope too, but both are pretty expensive and difficult to get to....

What do you mean expensive, wat does getting a coin on poloniex cost?

I heard Bittrex costs 10+ BTCs to be listed...

to start with, Yobit, Coinexchange, novaexchange etc are all reasonable ones.

Please don't worry, we will take care of that Smiley

sweepstake grows quickly, almost at 300K now:

{
    "current sweepstake size" : 298835
}
96  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 08, 2017, 04:19:02 PM
Can i still win the sweepstake if i am mining @ suprnova only...? if Yes how can i win?

I think this would mean that the reward would be split between all miners on the pool, right?

I would think so since the sweepstake reward seem to comes from PoW blocks, not from staking - even though it's called sweepstake.

So it kind of defeats the purpose and encourage pool mining on the biggest pool instead of solomining.

Unless it comes from PoS blocks, in which case the OP is not obvious.

Sweepstake is under PoW, it's a reward to those to mine. It does not encourage big pool, solo mining and pool mining get the same chance, of course the more hash power, the more chance you get (which is normal).


Dev when do you plan to add SWEEP to the normal exchange??

We are contacting exchanges. But this coin is very new, so please give it some time. We will complete the website first, then create an explorer. Then we will get to some exchanges.


Can i still win the sweepstake if i am mining @ suprnova only...? if Yes how can i win?
Yes. How it will be distributed depends on ocminer, maybe he can clarify. I'd guess possibly according to the share in that round.


BTW, the current sweepstake is around 250,000 SWEEPs and growing quickly...
{
    "current sweepstake size" : 248532
}
97  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 08, 2017, 06:56:42 AM
We are looking for a better logo, so let's do a logo contest... please post your design!

There will be two prizes:
- 1st prize: 50,000 SWEEPs, and the logo will be used as official logo for SWEEP in the next release (if most people think it is good enough).
- 2nd prize: 20,000 SWEEPs

The dev team / community will decide which is the best logo. The winners will be determined in about a week (around May 15)

Great project. I mined and traded JPC before, was pretty exciting for the huge sweepstake. Now you guys integrated TOR, making it even better, good luck to the success of the coin!
Thanks.
98  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 08, 2017, 06:24:01 AM
SweepstakeCoin (SWEEP) Listed in CryptoDAO Limited- Crypto Trade Platform, Multi Wallet and Crypto Loan Provider(Beta Version)
Bounty/Donation: SYzW17sHHivvuvpC35x9YeeNuTRfKuVnKJ


Our Standard Platform:

BTC/SWEEP:https://cryptodao.com/site/index/SWEEP/BTC
LTC/SWEEP:https://cryptodao.com/site/index/SWEEP/LTC
USD/SWEEP:https://cryptodao.com/site/index/SWEEP/USD

MT4 Based PRO Webtrade Platform
BTC/SWEEP: https://cryptodao.com/trade2/index?symbol=cryptodaosweepbtc
SweepstakeCoin Webwallet
https://cryptodao.com/site/register




Social Media

CryptoDAO Limited Registered in United Kingdom. Reg no:10739468
D&B D-U-N-SŪ Number: 222925156

Thanks. Though I don't see anything in bid or ask there. I'll add it to the front page anyway.


My 1080 only 23 MH / s, ccminer 1.8   Angry

did you crank up --intensity all the way to the top (25)? mine does ~19 MH/s on default intensity 20

hhow can i set the intensity thanks

just add --intensity 25 at the end of your ccminer command. Only works with the tpruvot ccminer 1.8 release, afaik the ccminer 1.2 posted in OP does not provide this option. The maximum intensity you can set depends von your card's amount of VRAM, so just play around to find the highest value at which the miner will still launch.

Thanks spoid for your support, appreciated!

Is it worth attempting to solo mine with an R9 280?
I'd suggest to mine using pool. At current diff solo mining with one card will be difficult...
99  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 07, 2017, 05:23:46 PM
Where to download the CPU Miner?

please see the front page, there are a few CPU miners available.
100  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SweepstakeCoin (SWEEP) - PoW/PoS, JHA, TOR, Sweepstake with True Random on: May 07, 2017, 04:50:51 PM
{
    "current sweepstake size" : 135777
}

I can't compile the wallet on ubuntu 16.10

Code:
/home/lukax8/wallet/sweepstakecoin/SweepstakeCoin-qt.pro:603: error: Unterminated conditional block at end of file

Code:
17:17:45: Running steps for project SweepstakeCoin-qt...
17:17:45: Starting: "/usr/lib/x86_64-linux-gnu/qt4/bin/qmake" /home/lukax8/wallet/sweepstakecoin/SweepstakeCoin-qt.pro -r -spec linux-g++-64 CONFIG+=debug
/home/lukax8/wallet/sweepstakecoin/SweepstakeCoin-qt.pro:603: Unterminated conditional block at end of file
Error processing project file: /home/lukax8/wallet/sweepstakecoin/SweepstakeCoin-qt.pro
17:17:45: The process "/usr/lib/x86_64-linux-gnu/qt4/bin/qmake" exited with code 3.
Error while building/deploying project SweepstakeCoin-qt (kit: Desktop)
When executing step "qmake"
17:17:45: Elapsed time: 00:00.

I'd compile daemon instead of qt in linux. Go to src and do make -f makefile.unix


I compiled a linux daemon client and post in the front page. You can download if you want.
https://drive.google.com/file/d/0B74JgigEGW7veTlWdTRQQWdDQXM/view?usp=sharing
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!