Pages:
Author

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

sr. member
Activity: 504
Merit: 250
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)

legendary
Activity: 2165
Merit: 1002
nova has a free-vote system for adding coins.
Any coin with a decent community can get in easily at no cost
member
Activity: 114
Merit: 10
Coin is good,
Please, say Me What are the dependencies when compiling code on Ubuntu 14.04
member
Activity: 83
Merit: 10
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.
sr. member
Activity: 504
Merit: 250
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.
member
Activity: 83
Merit: 10
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
sr. member
Activity: 504
Merit: 250
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
}
member
Activity: 83
Merit: 10
Website doesn't work, and when will you get added to Coinmarketcap and exchanges?
hero member
Activity: 714
Merit: 500
Skol!
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.

Excellent! That's good news!

member
Activity: 179
Merit: 10
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

thanks, man.
sr. member
Activity: 504
Merit: 250
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.
member
Activity: 179
Merit: 10
How to mine this coin in windows?

Read this topic.

I read but I did not find the miner for windows.
hero member
Activity: 714
Merit: 500
Skol!
member
Activity: 179
Merit: 10
How to mine this coin in windows?
hero member
Activity: 714
Merit: 500
Skol!
Any news about a better exchange with more volume?
legendary
Activity: 1582
Merit: 1019
011110000110110101110010
I see that you are using the jackpot algo. Did you address the bloating of the blockchain that lead to the original coin collapse?
hero member
Activity: 766
Merit: 621
Own ONION
This looks like a good coin, with sweepstakes that should be attractive...
newbie
Activity: 56
Merit: 0
i am china,my wallet cannot sync and connect to the tor network ,must i use VPN?   any other choose i can?

make sure your VPN does not block all TOR edge nodes
newbie
Activity: 5
Merit: 0
i am china,my wallet cannot sync and connect to the tor network ,must i use VPN?   any other choose i can?
newbie
Activity: 5
Merit: 0
ccminer 1.8  1080ti  35m -i 24,hoho
Pages:
Jump to: