Bitcoin Forum
May 14, 2024, 02:13:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they believe that the creator of this topic displays some red flags which make them high-risk. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 ... 225 »
  Print  
Author Topic: [ANN] Denarius [D] - First "Tribus" PoW/PoS Hybrid Masternodes, Ring Sigs  (Read 504218 times)
kingcarsen (OP)
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
June 14, 2017, 11:36:15 PM
 #21

Thanks Smiley one more question is there any exchange for this coin ? i mean what's the value of this coin

No exchange is available yet. I would hope to have some onboard this week, I do plan to pay a bit of BTC to be added to a few. We will need a block explorer setup first before an exchange will even think of adding Denarius, which is coming soon as well. Also mining pools will take a priority before the exchanges.
1715696010
Hero Member
*
Offline Offline

Posts: 1715696010

View Profile Personal Message (Offline)

Ignore
1715696010
Reply with quote  #2

1715696010
Report to moderator
1715696010
Hero Member
*
Offline Offline

Posts: 1715696010

View Profile Personal Message (Offline)

Ignore
1715696010
Reply with quote  #2

1715696010
Report to moderator
1715696010
Hero Member
*
Offline Offline

Posts: 1715696010

View Profile Personal Message (Offline)

Ignore
1715696010
Reply with quote  #2

1715696010
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, which will follow the rules of the network no matter what miners do. Even if every miner decided to create 1000 bitcoins per block, full nodes would stick to the rules and reject those blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715696010
Hero Member
*
Offline Offline

Posts: 1715696010

View Profile Personal Message (Offline)

Ignore
1715696010
Reply with quote  #2

1715696010
Report to moderator
markus124
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
June 14, 2017, 11:37:19 PM
 #22

Can we get a pool for this coin? I want to mine it. Thanks.
markus124
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
June 14, 2017, 11:38:37 PM
 #23

is hard on the CPU
people in GPU Linux will get the most coins

And yes is consuming 90% of my cpu and i dont want to screw my pc. I prefer a pool Tongue
Anthrogic
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
June 14, 2017, 11:38:53 PM
 #24

How do I make from the GIT source on linux? No autogen or configure. Working on making a pool.

Make file errors out with Makefile.66: *** multiple target patterns. Stop.
jasemoney
Legendary
*
Offline Offline

Activity: 1610
Merit: 1008


Forget-about-it


View Profile
June 14, 2017, 11:44:49 PM
 #25

is hard on the CPU
people in GPU Linux will get the most coins

And yes is consuming 90% of my cpu and i dont want to screw my pc. I prefer a pool Tongue
add to batch file for cpuminer:  
Quote
-t
and tell it how many threads to use.
for instance if you have a 4 core computer with no hyperthreading and didnt want all it to run 100% you can add the flag
Quote
-t 3
and it will only run 3 threads. combine that with set affinity in your task manager if your feeling fancy to keep one core completely open for other tasks (this part is not necessary)

$MAID & $BTC other than that some short hodls and some long held garbage.
kingcarsen (OP)
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
June 14, 2017, 11:55:05 PM
Last edit: June 15, 2017, 12:28:48 AM by kingcarsen
 #26

How do I make from the GIT source on linux? No autogen or configure. Working on making a pool.

Make file errors out with Makefile.66: *** multiple target patterns. Stop.

Its like the old Bitcoin in the sense of compiling

You will want to install the required deps first:

Code:
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-all-dev libminiupnpc-dev libzmq3-dev libqrencode-dev

Code:
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev

And these if you want to compile the QT on Linux:

Code:
sudo apt-get install libqt4-dev libprotobuf-dev protobuf-compiler

How to build denariusd on Linux:

Code:
git clone https://github.com/carsenk/denarius.git

cd denarius

cd src

chmod 777 -R leveldb

cd leveldb

make clean
make

cd ..

make -f makefile.unix

(If building the QT wallet on Linux you will need to comment out the first few lines in the .pro file to build)

overlordcoin
Full Member
***
Offline Offline

Activity: 135
Merit: 100


View Profile
June 14, 2017, 11:57:07 PM
 #27

Portuguese translation here, can you confirm?
Anthrogic
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
June 14, 2017, 11:57:36 PM
 #28

Reserved for pool (I hope)
kingcarsen (OP)
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
June 14, 2017, 11:58:41 PM
 #29

Reserved for pool (I hope)

Great Anthrogic, Please contact me in our Gitter chat or PM me here if you need help!

Portuguese translation here, can you confirm?

Reserved for you!
Anthrogic
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
June 15, 2017, 12:05:52 AM
 #30

How do I make from the GIT source on linux? No autogen or configure. Working on making a pool.

Make file errors out with Makefile.66: *** multiple target patterns. Stop.

Its like the old Bitcoin in the sense of compiling

You will want to install the required deps first:

Code:
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-all-dev libminiupnpc-dev libzmq3-dev libqrencode-dev

Code:
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev

And these if you want to compile the QT on Linux:

Code:
sudo apt-get install libqt4-dev libprotobuf-dev protobuf-compiler

How to build denariusd on Linux:

Code:
git clone https://github.com/carsenk/denarius.git

cd denarius

cd src

chmod 777 -R leveldb

make

(If building the QT wallet on Linux you will need to comment out the first few lines in the .pro file to build)



What lines should I comment out?
mrongos
Sr. Member
****
Offline Offline

Activity: 532
Merit: 250



View Profile
June 15, 2017, 12:06:56 AM
 #31

stay tuned
waiting bounty fb and twitter has started

                       ▄█████▄
                       ██   ██
  ▄▄▄                  ▀█▄▄▄█▀
▄█████▄                 ▀███▀
███████                   ▀
 ▀███▀
  ▀███                   ▄██
   ████                 ▄██▀
    ████              ▄███▀
     ████▄▄        ▄▄████
      ▀██████▄▄▄▄██████▀
        ▀▀██████████▀▀
            ▀▀▀▀▀▀
||..THE WORLDS FIRST...........
..SOCIAL UTILITY CRYPTO..
|████████████████████████████
████████████████████████████
████████████████████████████
█████████████████▀▀  ███████
█████████████▀▀      ███████
█████████▀▀   ▄▄     ███████
█████▀▀    ▄█▀▀     ████████
█████████ █▀        ████████
█████████ █ ▄███▄   ████████
██████████████████▄▄████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████▀▀▀█████████
██████ ▀██████▀      ▄██████
██████▄   ▀▀▀        ███████
██████▄             ▄███████
███████▄           ▄████████
██████▀▀▀        ▄██████████
███████▄▄     ▄▄████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
█████████████▀    ▐█████████
████████████    ▄▄██████████
███████████▀    ▀▀██████████
██████████▌       ██████████
████████████    ████████████
████████████    ████████████
████████████    ████████████
████████████▄  ▄████████████
████████████████████████████
████████████████████████████
|█▀▀











█▄▄
▀▀█











▄▄█
kingcarsen (OP)
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
June 15, 2017, 12:07:28 AM
 #32

How do I make from the GIT source on linux? No autogen or configure. Working on making a pool.

Make file errors out with Makefile.66: *** multiple target patterns. Stop.

Its like the old Bitcoin in the sense of compiling

You will want to install the required deps first:

Code:
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-all-dev libminiupnpc-dev libzmq3-dev libqrencode-dev

Code:
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev

And these if you want to compile the QT on Linux:

Code:
sudo apt-get install libqt4-dev libprotobuf-dev protobuf-compiler

How to build denariusd on Linux:

Code:
git clone https://github.com/carsenk/denarius.git

cd denarius

cd src

chmod 777 -R leveldb

make

(If building the QT wallet on Linux you will need to comment out the first few lines in the .pro file to build)



What lines should I comment out?

Lines 20 through 34, but you only need to do that if you are compiling the QT wallet for Linux, if you are just compiling the daemon (which is usually all you need for a mining pool or coin related service) then you wont need to mess with the .pro file at all.
joet3
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
June 15, 2017, 12:12:43 AM
 #33

Mining... thanks!
ex_mac
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


"Proof-of-Asset Protocol"


View Profile
June 15, 2017, 12:46:07 AM
 #34

First pool (working):

http://163.172.104.9/
CPUminer:
./cpuminer -a tribus -o stratum+tcp://163.172.104.9:8533 -u YOUR_WALLET -p d=0.002

GPU:
-a tribus -o stratum+tcp://163.172.104.9:8533 -u YOUR_WALLET

Bounties welcome: DMJ8Ttk5xiV5UXRRHMZ8uHBYgjzRCQfnQK

Explorer: http://163.172.104.9/explorer/DNR

|
 
 
50
|
 




                       ▄
           ▄▄▄▄▄▄███████
▄▄▄▄█████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████

█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
▀▀▀▀█████  █████████████
           ▀▀▀▀▀▀███████
                       ▀
|
 
 
$1,5 M
|



        ▄▄▄█████████▄▄▄
      ▄█████▀▀███▀▀█████▄
    ▄███▀     ███     ▀███▄
   ████       ███       ████
  ███▀                   ▀███
 ███▀                     ▀███
▄██▀       █████████       ▀██▄
███                         ███
███        █████████        ███
███                         ███
▀██▄       █████████       ▄██▀
 ███▄                     ▄███
  ███▄                   ▄███
   ████       ███       ████
    ▀███▄     ███     ▄███▀
      ▀█████▄▄███▄▄█████▀
        ▀▀▀█████████▀▀▀
|
 
|
 
<>
<>
<>
<>
 
GITHUB
TWITTER
YOUTUBE
FACEBOOK
kernels10
Sr. Member
****
Offline Offline

Activity: 408
Merit: 250


ded


View Profile
June 15, 2017, 01:09:55 AM
 #35

just gonna leave this here: https://bitcointalk.org/index.php?topic=591323.0
kingcarsen (OP)
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
June 15, 2017, 01:11:20 AM
 #36

First pool (working):

http://163.172.104.9/
CPUminer:
./cpuminer -a tribus -o stratum+tcp://163.172.104.9:8533 -u YOUR_WALLET -p d=0.002

GPU:
-a tribus -o stratum+tcp://163.172.104.9:8533 -u YOUR_WALLET

Bounties welcome: DMJ8Ttk5xiV5UXRRHMZ8uHBYgjzRCQfnQK

Explorer: http://163.172.104.9/explorer/DNR


Perfect Smiley I will add your pool to the site and OP, I will send the bounty shortly. We do still need more pools online guys so have at it!

@Kernals - That sucks, I really didn't know someone attempted it before. Sad Oh well, looks like that coin died and it was scrypt garbage anyways. I own denariuscoin.com and denarius.io so we will be good.
jimlite
Legendary
*
Offline Offline

Activity: 1848
Merit: 1018


View Profile WWW
June 15, 2017, 01:19:53 AM
 #37

At least the ticker is different so it won't confuse Cryptopia, lol

Binance, hottest/largest alt exchange, 2BTC daily no verification. https://www.binance.com/?ref=13309371
NEED TO RENT A RIG? All algos at http://www.miningrigrentals.com/register?ref=627


  ✵ Super FAST block times      ✵ Block Explorer right in the wallet!     ✵ Stealth Addresses     ✵ PoW/PoS hybrid  
██
██
██
██
██
██
██
██
██
██
██
Ancient Money
for a New World
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
Join the conversation!
██
██
██
██
██
██
██
██
██
██
██

                 ▄████▄▄    ▄
██             ████████████▀
████▄         █████████████▀
▀████████▄▄   █████████████
▄▄█████████████████████████
██████████████████████████
  ▀██████████████████████
   █████████████████████
    ▀█████████████████▀
      ▄█████████████▀
▄▄███████████████▀
   ▀▀▀▀▀▀▀▀▀▀▀

TWITTER


markus124
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
June 15, 2017, 01:23:06 AM
 #38

can i reserve the spanish translation?
tamara163
Legendary
*
Offline Offline

Activity: 1027
Merit: 1000


View Profile
June 15, 2017, 01:32:24 AM
 #39

First pool (working):

http://163.172.104.9/
CPUminer:
./cpuminer -a tribus -o stratum+tcp://163.172.104.9:8533 -u YOUR_WALLET -p d=0.002

GPU:
-a tribus -o stratum+tcp://163.172.104.9:8533 -u YOUR_WALLET

Bounties welcome: DMJ8Ttk5xiV5UXRRHMZ8uHBYgjzRCQfnQK

Explorer: http://163.172.104.9/explorer/DNR


Perfect Smiley I will add your pool to the site and OP, I will send the bounty shortly. We do still need more pools online guys so have at it!

@Kernals - That sucks, I really didn't know someone attempted it before. Sad Oh well, looks like that coin died and it was scrypt garbage anyways. I own denariuscoin.com and denarius.io so we will be good.
what's next?
stop mining?
you will start a new project?
you can probably just change the name of the coin
raven1322
Full Member
***
Offline Offline

Activity: 171
Merit: 105



View Profile
June 15, 2017, 01:36:44 AM
 #40


wow, so is this a resurrected coin then?

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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 ... 225 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!