Author

Topic: [ANN][MAX] MAXcoin - PoW, ASIC Resistance, Keccak GPU Mining - page 108. (Read 914218 times)

member
Activity: 84
Merit: 10
You'll soon have more choices on where you can trade MAX! Austin Global Exchange is excited to announce we will carry MAX at launch! Follow us on Twitter or opt-in to our emails at agx.io to get the latest announcements - including the launch date for AGX!

We posted information about the AGX Cold Storage process on our blog; check it out to learn more about how we keep your data and deposits safe: http://austinglobal.tumblr.com/image/78188469722

- The Austin Global Team

Find us at:
agx.io
twitter.com/austinglobalx
austinglobal.tumblr.com
legendary
Activity: 2506
Merit: 1030
Twitter @realmicroguy
the number of coins from a new mined block should reduce until transaction volume rises.

That's an awesome idea, but I think people would just start sending coins to themselves as a work-around.
hero member
Activity: 798
Merit: 1000

Coins should adjust their block rewards based on and averaged value of transactions over a given period of time. So if people are just mining and moving them to an exchange, the number of coins from a new mined block should reduce until transaction volume rises.


that is a not very well thought out suggestion and would lead to people simply moving money around to manipulate the price since there is no way to reliably tell who owns which addresses.
sr. member
Activity: 252
Merit: 250
Hi, I was wondering, MaxCoin has really dropped in price a lot, to a level where I am thinking of buying some.

Is there currently a problem with the coin? Or is this simply a dip?

Thanks.
Until people do something with the coin, eg. some useful services start accepting it, then there is no demand other than  from hoarders. You need demand to keep the price stable or it will just fall as supply doesn't stop, a fatal design flaw in all crypto, supply doesn't adjust to demand.

Coins should adjust their block rewards based on and averaged value of transactions over a given period of time. So if people are just mining and moving them to an exchange, the number of coins from a new mined block should reduce until transaction volume rises.



full member
Activity: 182
Merit: 100
When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp

please help me to fix this Sad

You need libcrypto++. I'm not sure what environment you are building in (cygwin, mingw?). If it doesn't have a libcrypto++ package then you may have to build it yourself.

I downloaded the lastest source code from github then built in mingw, included cryptopp path and lib in makefile. My makefile:

# 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.

# Makefile for the MinGW g++ compiler/toolchain
#
# Assumes Berkeley DB, Boost, and OpenSSL have all been compiled and installed
# into /usr/local (/usr/local/include, /usr/local/lib).
#
# If dependencies are somewhere else, run 'make DEPSDIR=/path/'
#
# Boost libraries are given wacky names that include the particular version of
# boost you're using; set BOOST_SUFFIX appropriately.
#
# 'make clean' assumes it is running inside a MSYS shell, and uses 'rm'
# to remove files.

CXX ?= g++

USE_UPNP:=-
USE_IPV6:=1

DEPSDIR?=/usr/local
BOOST_SUFFIX?=-mgw48-mt-s-1_55

INCLUDEPATHS= \
 -I"$(CURDIR)" \
 -I"$(DEPSDIR)/include" \
 -I"c:/deps/boost_1_55_0" \
 -I"c:/deps/db-4.8.30.NC/build_unix" \
 -I"c:/deps/miniupnpc" \
 -I"c:/deps/openssl-1.0.1e/include"

LIBPATHS= \
 -L"$(CURDIR)/leveldb" \
 -L"$(CURDIR)/cryptopp" \
 -L"$(DEPSDIR)/lib" \
 -L"c:/deps/boost_1_55_0/stage/lib" \
 -L"c:/deps/db-4.8.30.NC/build_unix" \
 -L"c:/deps/miniupnpc" \
 -L"c:/deps/openssl-1.0.1e"

LIBS= \
 -l leveldb \
 -l cryptopp\
 -l memenv \
 -l boost_system$(BOOST_SUFFIX) \
 -l boost_filesystem$(BOOST_SUFFIX) \
 -l boost_program_options$(BOOST_SUFFIX) \
 -l boost_thread$(BOOST_SUFFIX) \
 -l boost_chrono$(BOOST_SUFFIX) \
 -l db_cxx \
 -l ssl \
 -l crypto

DEFS=-D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE
DEBUGFLAGS=-DWIN32_LEAN_AND_MEAN
CFLAGS=-mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
# enable: ASLR, DEP and large address aware
LDFLAGS=-Wl,--dynamicbase -Wl,--nxcompat -Wl,--large-address-aware

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

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

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

LIBS += -l mingwthrd -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= \
    leveldb/libleveldb.a \
    obj/alert.o \
    obj/version.o \
    obj/checkpoints.o \
    obj/netbase.o \
    obj/addrman.o \
    obj/crypter.o \
    obj/key.o \
    obj/db.o \
    obj/init.o \
    obj/keystore.o \
    obj/main.o \
    obj/net.o \
    obj/protocol.o \
    obj/bitcoinrpc.o \
    obj/rpcdump.o \
    obj/rpcnet.o \
    obj/rpcmining.o \
    obj/rpcwallet.o \
    obj/rpcblockchain.o \
    obj/rpcrawtransaction.o \
    obj/script.o \
    obj/sync.o \
    obj/util.o \
    obj/wallet.o \
    obj/walletdb.o \
    obj/hash.o \
    obj/bloom.o \
    obj/noui.o \
    obj/leveldb.o \
    obj/txdb.o\
    obj/keccak.o


all: maxcoind.exe

test check: test_maxcoin.exe FORCE
   test_bitcoin.exe

#
# LevelDB support
#
DEFS += $(addprefix -I,$(CURDIR)/leveldb/include)
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)

leveldb/libleveldb.a:
   cd leveldb && $(MAKE) CC=$(CC) CXX=$(CXX) OPT="$(CFLAGS)" TARGET_OS=NATIVE_WINDOWS libleveldb.a libmemenv.a && cd ..

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

obj/%.o: %.c $(HEADERS)
   $(CXX) -c $(xCXXFLAGS) -fpermissive -o $@ $<

maxcoind.exe: $(OBJS:obj/%=obj/%)
   $(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)

TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))

obj-test/%.o: test/%.cpp $(HEADERS)
   $(CXX) -c $(TESTDEFS) $(CFLAGS) -o $@ $<

test_maxcoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
   $(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework$(BOOST_SUFFIX) $(LIBS)

clean:
   rm -f maxcoind.exe test_maxcoin.exe
   rm -f obj/*
   rm -f obj-test/*
   cd leveldb && $(MAKE) TARGET_OS=NATIVE_WINDOWS clean && cd ..

FORCE:
sr. member
Activity: 420
Merit: 250
rem motd
@echo MAX.1GH.COM
@echo ===========
@echo Please replace our demo address with yours.
@echo

cgminer.exe --keccak --no-submit-stale -o stratum+tcp://maxpool.1gh.com:17333 -u mdr5rGdv5mq4zniSZDb6FdWnhUjV71C5d9 -p x -I 14

is this correct setting for maxcoin?
full member
Activity: 210
Merit: 100
Hi, I was wondering, MaxCoin has really dropped in price a lot, to a level where I am thinking of buying some.

Is there currently a problem with the coin? Or is this simply a dip?

Thanks.
MaxCoin is awesome, easy to mine etc. Max Keiser should PR more the MaxCoin.
sr. member
Activity: 444
Merit: 250
Life is a bitch, get used to it...
Don't buy this fuckin' scamcoin if youd don't want to be "goxed"
sr. member
Activity: 364
Merit: 250
Hi, I was wondering, MaxCoin has really dropped in price a lot, to a level where I am thinking of buying some.

Is there currently a problem with the coin? Or is this simply a dip?

Thanks.
legendary
Activity: 2044
Merit: 1005
When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp

please help me to fix this Sad

You need libcrypto++. I'm not sure what environment you are building in (cygwin, mingw?). If it doesn't have a libcrypto++ package then you may have to build it yourself.
Hes prob using old version of source makefile not updated.
full member
Activity: 210
Merit: 100
Hi all,

When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp

please help me to fix this Sad

Thanks so much.

Wallet guide (run and wait 10..30 min!) -> http://goo.gl/P5RmQ8 + Nodes -> http://goo.gl/K5hqet

Thanks but i need compile it by myself. Did you fix this error?
WinWallet (release) https://github.com/Max-Coin/maxcoin/releases/tag/v0.8.9.1
full member
Activity: 170
Merit: 100
When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp

please help me to fix this Sad

You need libcrypto++. I'm not sure what environment you are building in (cygwin, mingw?). If it doesn't have a libcrypto++ package then you may have to build it yourself.
full member
Activity: 182
Merit: 100
Hi all,

When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp

please help me to fix this Sad

Thanks so much.

Wallet guide (run and wait 10..30 min!) -> http://goo.gl/P5RmQ8 + Nodes -> http://goo.gl/K5hqet

Thanks but i need compile it by myself. Did you fix this error?
full member
Activity: 210
Merit: 100
Hi all,

When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp

please help me to fix this Sad

Thanks so much.

Wallet guide (run and wait 10..30 min!) -> http://goo.gl/P5RmQ8 + Nodes -> http://goo.gl/K5hqet
full member
Activity: 182
Merit: 100
Hi all,

When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp

please help me to fix this Sad

Thanks so much.ftp://
full member
Activity: 221
Merit: 100
  Hi,

  Live Maxcoin Price Chart for Your Website

   We have created a series of free Live Interactive Cryptocurrency Charts which you can use on your website  (Dogecoin, Litecoin, DevCoin, Lottocoin, Quark ... 130 cryptocurrencies).
   It will display live prices for a selected cryptocurrency with graphics price changes on your website.

   


  Maxcoin price chart which you can place on your website  - http://myip.ms/info/chartbox/m/152#c


  Regards
  Myip.ms Team
  http://live.myip.ms
 
  .
 

    New Live MaxCoin Chart Functionality - 
          - Show Prices in EUR/USD/GBP/CNY/etc currencies (we use European Bank Exchange Rates on day of trading)
          - Full Screen mode
  
 
    
 
 
         You can place this free live MaxCoin price chart on your websitehttp://myip.ms/info/chartbox/m/152#c

.

full member
Activity: 238
Merit: 100
I am sure Max wouldn't have tanked, had it been on any exchange other than MCXNow. Having a trollbox on the exchange is death for something like Maxcoin. When the haters outweigh those who like the coin, you have no chance - after all, as Metallica once said 'an empty can rattles the most'.

Oh, I pulled my 800 Max out of MCXNow about 4 days ago, back into my wallet - it's not going to go back to the price I am willing to sell for, for a while, so I may as well keep them safely offline.
+1
If you believe a minimum in MaxCoin, you should just forget about this scam exchange forever.

People find mcxNOW convenient but people owning BTC on Gox also though it was convenient and look at the result.
Admins are constantly trashing MAX, publicly wishing it dead, insulting holders and claiming Mincoin, a total shitcoin they own for pump and dump purposes, is way superior with the joke MIN>MAX.

I'm pretty sure now the main reason they added max was to troll it with that joke and give some fame to their shit Mincoin.
When the admins of an unfortunatly such big exchange are not neutral like this and acting like jerks, really it would not be surprising they are manipulating the price down themselves and will continue to do so...
+1
They manipulate it and will continue to do so if peoples keep 3M Max in there. The lower MAX go, the higher the chance you'll bail out for mcxFee, mcxBux, mincoin, (all of these are scam/newbies trap), unfortunate. Peoples must act before it's too late, just keep in mind:

no profits = no miners = no investors = no coins.
member
Activity: 193
Merit: 10
I am sure Max wouldn't have tanked, had it been on any exchange other than MCXNow. Having a trollbox on the exchange is death for something like Maxcoin. When the haters outweigh those who like the coin, you have no chance - after all, as Metallica once said 'an empty can rattles the most'.

Oh, I pulled my 800 Max out of MCXNow about 4 days ago, back into my wallet - it's not going to go back to the price I am willing to sell for, for a while, so I may as well keep them safely offline.
+1
If you believe a minimum in MaxCoin, you should just forget about this scam exchange forever.

People find mcxNOW convenient but people owning BTC on Gox also though it was convenient and look at the result.
Admins are constantly trashing MAX, publicly wishing it dead, insulting holders and claiming Mincoin, a total shitcoin they own for pump and dump purposes, is way superior with the joke MIN>MAX.

I'm pretty sure now the main reason they added max was to troll it with that joke and give some fame to their shit Mincoin.
When the admins of an unfortunatly such big exchange are not neutral like this and acting like jerks, really it would not be surprising they are manipulating the price down themselves and will continue to do so...
full member
Activity: 210
Merit: 100
try to remove:  -w 256, --lookup-gap 2, --thread-concurrency 32765, -I 13
Quote
a bigger psu? 300W per card = 1200W, you are right at the limit.
an r9 290 can make 450 with a bit of overclock, but not in your case, cause of not enough current.

thanks I know I'm at the limit, will upgrade to dual psu soon. nice to know that the settings are not bad anyway.
Tried without -w 256, --lookup-gap 2, --thread-concurrency 32765, -I 13 and it's +- the same.

Hi guys it's me again with the 4x R9 290 rig.

I added a second PSU to power the last GPU standalone and the results have been good. I am now able to overclock to 1100/1425 in a climatized room.

This pushed me to 1.8Gh/s

cgminer settings
Quote
-g 1 -w 256 --lookup-gap 2 --thread-concurrency 32765 -I 20 --temp-overheat 90 --temp-cutoff 95

Good boost (1.58/1.8 - 1) * 100 = 13,92%!
Jump to: