Pages:
Author

Topic: [ANN][GRAV] Graviton SHA, Gravitate, Gravitators, *HARDFORK 67000 6/19* - page 15. (Read 56180 times)

sr. member
Activity: 269
Merit: 250
How do i run multiple nodes from the same ip?

Smiley
sr. member
Activity: 292
Merit: 250
whooping 860K coins are now being staked + there is 9 MN =22500 coins , ie now 1085K coins are away from the market.
sr. member
Activity: 266
Merit: 250
94 blocks in the last 24 hours. Up from 61 the day before. Cool. Still 9 masternodes. Don't know why it is so different. True average should be 139 per day. Just luck I guess.
sr. member
Activity: 250
Merit: 250
Dev: Have you considered moving to a moderated thread? May be a good idea, too many coins now catch the fudstorm for no good reason than to buy in cheap. I think it will help us all out.

I think if even one of these features will be completed price will rocket, the current marketcap is super cheap and only 1mil coins.
legendary
Activity: 3808
Merit: 1723
Up to 300% + 200 FS deposit bonuses
This is how I changed my Makefile so it points to the correct Depositories.


Quote
# Copyright (c) 2009-2010 Satoshi Nakamoto
# Distributed under the MIT/X11 software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

USE_UPNP:=-
USE_WALLET:=1

BOOST_SUFFIX?=-mgw49-mt-s-1_57

INCLUDEPATHS= \
 -I"$(CURDIR)" \
 -I"C:\deps\boost_1_57_0" \
 -I"C:\deps\db-4.8.30.NC\build_unix" \
 -I"C:\deps" \
 -I"C:\deps\openssl-1.0.1j\include"

LIBPATHS= \
 -L"$(CURDIR)\leveldb" \
 -L"C:\deps\boost_1_57_0\stage\lib" \
 -L"C:\deps\db-4.8.30.NC\build_unix" \
 -L"C:\deps\miniupnpc" \
 -L"C:\deps\openssl-1.0.1j"

LIBS= \
 -l leveldb \
 -l boost_system-mgw49-mt-s-1_57 \
 -l boost_filesystem-mgw49-mt-s-1_57 \
 -l boost_program_options-mgw49-mt-s-1_57 \
 -l boost_thread-mgw49-mt-s-1_57 \
 -l boost_chrono-mgw49-mt-s-1_57 \
 -l db_cxx \
 -l ssl \
 -l crypto

DEFS=-DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE
DEBUGFLAGS=-g
CFLAGS=-mthreads -O2 -msse2 -w -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
LDFLAGS=-Wl,--dynamicbase -Wl,--nxcompat,--large-address-aware -static


TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)

ifndef USE_UPNP
   override USE_UPNP = -
endif
ifneq (${USE_UPNP}, -)
 INCLUDEPATHS += -I"C:\deps"
 LIBPATHS += -L"C:\deps\miniupnpc"
 LIBS += -l miniupnpc -l iphlpapi
 DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
endif

LIBS += -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l mswsock -l shlwapi

# TODO: make the mingw builds smarter about dependencies, like the linux/osx builds are
HEADERS = $(wildcard *.h)

OBJS= \
    obj/alert.o \
    obj/version.o \
    obj/checkpoints.o \
    obj/netbase.o \
    obj/addrman.o \
    obj/crypter.o \
    obj/key.o \
    obj/init.o \
    obj/bitcoind.o \
    obj/keystore.o \
    obj/core.o \
    obj/main.o \
    obj/net.o \
    obj/protocol.o \
    obj/rpcclient.o \
    obj/rpcprotocol.o \
    obj/rpcserver.o \
    obj/rpcmisc.o \
    obj/rpcnet.o \
    obj/rpcblockchain.o \
    obj/rpcrawtransaction.o \
    obj/timedata.o \
    obj/script.o \
    obj/sync.o \
    obj/txmempool.o \
    obj/util.o \
    obj/hash.o \
    obj/noui.o \
    obj/kernel.o \
    obj/pbkdf2.o \
    obj/scrypt.o \
    obj/chainparams.o

ifeq (${USE_WALLET}, 1)
    DEFS += -DENABLE_WALLET
    OBJS += \
        obj/db.o \
        obj/miner.o \
        obj/rpcdump.o \
        obj/rpcmining.o \
        obj/rpcwallet.o \
        obj/wallet.o \
        obj/walletdb.o
endif

all: gravitond.exe

LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
DEFS += $(addprefix -I,$(CURDIR)/leveldb/include)
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
OBJS += obj/txdb-leveldb.o
leveldb/libleveldb.a:
   cd leveldb; make; cd ..
obj/txdb-leveldb.o: leveldb/libleveldb.a

obj/%.o: %.cpp $(HEADERS)
   g++ -c $(CFLAGS) -o $@ $<

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 $@ $<

gravitond.exe: $(OBJS:obj/%=obj/%)
   g++ $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)

clean:
   -del /Q gravitond
   -del /Q obj\*

FORCE:
member
Activity: 84
Merit: 10
Yes having issues also compiling this

I am using MinGW msys

cd \grav\src
mingw32-make -f makefile.mingw

I get stuck on

Quote
obj/txdb-leveldb.o: In function `Write, int>':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB4ReadISs7uint256EEbRKT_RT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:84: undefined reference to `leveldb::
Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB5WriteISs7uint256EEbRKT_RKT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB4ReadISs7CBigNumEEbRKT_RT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:84: undefined reference to `leveldb::
Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB5WriteISt4pairISs7uint160ESt6vectorI7ui
nt256SaIS5_EEEEbRKT_RKT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB5WriteISs7CBigNumEEbRKT_RKT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB5WriteISt4pairISs7uint256E8CTxIndexEEbR
KT_RKT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB4ReadISt4pairISs7uint160ESt6vectorI7uin
t256SaIS5_EEEEbRKT_RT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:84: undefined reference to `leveldb::
Status::ToString() const'
collect2.exe: error: ld returned 1 exit status
makefile.mingw:124: recipe for target 'gravitond.exe' failed
mingw32-make: *** [gravitond.exe] Error 1


I got all the required deps like openssl and boost.
You need to build leveldb.  I'm going to be building the Windows daemon myself tomorrow, if there are makefile tweaks I'll push them to github.
legendary
Activity: 3808
Merit: 1723
Up to 300% + 200 FS deposit bonuses
Yes having issues also compiling this

I am using MinGW msys

cd \grav\src
mingw32-make -f makefile.mingw

I get stuck on

Quote
obj/txdb-leveldb.o: In function `Write, int>':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB4ReadISs7uint256EEbRKT_RT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:84: undefined reference to `leveldb::
Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB5WriteISs7uint256EEbRKT_RKT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB4ReadISs7CBigNumEEbRKT_RT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:84: undefined reference to `leveldb::
Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB5WriteISt4pairISs7uint160ESt6vectorI7ui
nt256SaIS5_EEEEbRKT_RKT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB5WriteISs7CBigNumEEbRKT_RKT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB5WriteISt4pairISs7uint256E8CTxIndexEEbR
KT_RKT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:114: undefined reference to `leveldb:
:WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)'
c:\deps\graviton-master\src/txdb-leveldb.h:119: undefined reference to `leveldb:
:Status::ToString() const'
obj/txdb-leveldb.o: In function `ZN5CTxDB4ReadISt4pairISs7uint160ESt6vectorI7uin
t256SaIS5_EEEEbRKT_RT0_':
c:\deps\graviton-master\src/txdb-leveldb.h:84: undefined reference to `leveldb::
Status::ToString() const'
collect2.exe: error: ld returned 1 exit status
makefile.mingw:124: recipe for target 'gravitond.exe' failed
mingw32-make: *** [gravitond.exe] Error 1


I got all the required deps like openssl and boost.
hero member
Activity: 672
Merit: 500
http://fuk.io - check it out!
hope the coin stays alive
sr. member
Activity: 266
Merit: 250
Give it a rest. If you're not an investor why are you here? I suspect you are an investor and want a lower price to accumulate.
legendary
Activity: 1281
Merit: 1046
Given the fact that is well known that this cut-paste developer is switching through 20 clones every couple of months (because besides forking and changing some values, he's unable to do anything), the whales are not touching his coins, not even with a 10 foot pole.

As you can clearly see on bittrex, the last trade happened 2 and a half hours ago. Don't fall into a trap thinking that you are buying cheap coins. His past projects were never substantially pumped. Check Halcyon, Positron, Neutron, Elektron etc for reference.
You say that this dev is  Halcyon, Positron, Neutron, Elektron
But you are wrong
Halcyon=Cryptowest
Positron=Cryptowest
Neutron=unknown dev but is not cryptowest
Elektron=Fireinyourhole

I don't think Graviton dev is any of those.

So why you keep FUDing?

You got it right. Cryptowest is the scammer behind all of these failures. You only have to look at the development, names (similar), the evolution in the charts and you can clearly figure out that he's the one. Not one pump and dump group works with this guy. All of his coins are flat in bittrex and other exchanges. For him is all about the volume of coins released, because he's happy with making a little above his investment and then switching to another scam. Looks like he got burned with Graviton, though, because he bought some bags at 10k, but no worries though, as another shitcoin with TRON at its suffix will suddenly appear on Bitcointalk in just a few days.
legendary
Activity: 1281
Merit: 1046
Given the fact that is well known that this cut-paste developer is switching through 20 clones every couple of months (because besides forking and changing some values, he's unable to do anything), the whales are not touching his coins, not even with a 10 foot pole.

As you can clearly see on bittrex, the last trade happened 2 and a half hours ago. Don't fall into a trap thinking that you are buying cheap coins. His past projects were never substantially pumped. Check Halcyon, Positron, Neutron, Elektron etc for reference.

I know you from alot of other coins i never ever read one positive word about which ever coin
Are you hired by whales to fud so they can get in cheap its just so obvious..


Hired by whales ? hahaha

If you know me from a lot of other projects, then you also know that i was right on every single one of them.
hero member
Activity: 760
Merit: 500
CryptoZilla
Given the fact that is well known that this cut-paste developer is switching through 20 clones every couple of months (because besides forking and changing some values, he's unable to do anything), the whales are not touching his coins, not even with a 10 foot pole.

As you can clearly see on bittrex, the last trade happened 2 and a half hours ago. Don't fall into a trap thinking that you are buying cheap coins. His past projects were never substantially pumped. Check Halcyon, Positron, Neutron, Elektron etc for reference.

I know you from alot of other coins i never ever read one positive word about which ever coin
Are you hired by whales to fud so they can get in cheap its just so obvious..
legendary
Activity: 1281
Merit: 1046
Given the fact that is well known that this cut-paste developer is switching through 20 clones every couple of months (because besides forking and changing some values, he's unable to do anything), the whales are not touching his coins, not even with a 10 foot pole.

As you can clearly see on bittrex, the last trade happened 2 and a half hours ago. Don't fall into a trap thinking that you are buying cheap coins. His past projects were never substantially pumped. Check Halcyon, Positron, Neutron, Elektron etc for reference.
sr. member
Activity: 266
Merit: 250
I really like the gravitator nodes concept. It makes staking fun. I think fun is lacking from most other coins and can be used to our advantage.
member
Activity: 84
Merit: 10
Where can we see the rich list?
I have a rich list built into the Graviton Portal that should be up tomorrow. Cheesy
member
Activity: 84
Merit: 10
Dev, can you tell me please with which versions of gcc, boost, openssl, berkeley and miniupnpc you compiled the wallet (windows), because I need to compile it for x86
Thanks in advance
This thread is a good walkthrough: https://bitcointalksearch.org/topic/building-headless-bitcoin-and-bitcoin-qt-on-windows-149479
legendary
Activity: 1582
Merit: 1001
www.neutroncoin.com
Update on my staking. 44 in the last 12 hours. So better average than 61 per 24 hours. Maybe it is just luck whether you get the true average 139 per day.

Anyhow, looking forward to block 13,501.

You must have about 30 to 60k of GRAV?
newbie
Activity: 57
Merit: 0
I think Grav might be a nice change from the usual pump and dump. This time, the dump was first, so if we can ask for something, I will ask for a slow increase in price and value, instead of a pump. Beside, the slow increase let's us benefit from the POS and the 40's are coming next.
sr. member
Activity: 266
Merit: 250
Update on my staking. 44 in the last 12 hours. So better average than 61 per 24 hours. Maybe it is just luck whether you get the true average 139 per day.

Anyhow, looking forward to block 13,501.
hero member
Activity: 798
Merit: 1000
Dev, can you tell me please with which versions of gcc, boost, openssl, berkeley and miniupnpc you compiled the wallet (windows), because I need to compile it for x86
Thanks in advance
Why you need all that stuff  Shocked
To compile windows wallet you just need a linux computer and MXE then type qmake && make and you get windows wallet.
You want a backward compatible windows wallet to work with 32 bit computer right? then when making your MXE setup just choose the one for x86. You can even use the 32 bit one and it will work on both 32 bit systems and 64 bit systems.

Hi MRZ whats up? Lost a few thousand bucks on Crave, and invest in Grave? Smiley Just a question.
Pages:
Jump to: