Bitcoin Forum
April 27, 2024, 06:02:21 AM *
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 »  All
  Print  
Author Topic: [ANN] Denarius [D] - Originator "Tribus" PoW/PoS Hybrid Masternodes, Native Tor  (Read 12488 times)
vella85
Hero Member
*****
Offline Offline

Activity: 1862
Merit: 590



View Profile WWW
August 20, 2020, 11:13:04 PM
 #341

I'm still here and staking Denarius as its still one of my long term holds. It will be interesting to see how some staking projects do once ETH starts staking as I do believe that it will bring a long more people into the staking sector of crypto and as Denarius is a long standing project I think it will do well as that's what I think people will be looking for when wanting to buy into staking coins.

I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
"With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
simon_ngo
Newbie
*
Offline Offline

Activity: 68
Merit: 0


View Profile
August 21, 2020, 06:50:24 AM
 #342

Long live Denarius  Cool
buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
August 22, 2020, 06:20:29 PM
 #343

Was looking into oracles with a curiosity to connect them to a Denarius wallet. I knew typing it here would give me a good idea how to interact with the daemon and eth.
buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
August 25, 2020, 03:33:14 AM
 #344


A while back I forked Neo-Oli and switched in an Ubuntu 16.04 to make compiling a little easier on the phone. https://github.com/buzzkillb/termux-ubuntu Also want to add hackers keyboard from the Play Store for this. All can be done without rooting the phone. Compiling the daemon using make -f makefile.arm -j2 worked fine. Then manually installing Kronos to match the default denarius.conf also worked.


This turns out to be an more simple variation of a previous tutorial.

First install termux and hackers keyboard on your Android phone.
https://play.google.com/store/apps/details?id=com.termux
https://play.google.com/store/apps/details?id=org.pocketworkstation.pckeyboard

Switch your keyboard over to hackers keyboard as its just easier to use with the Termux terminal to start inputting commands. I opened a separate web browser on the phone to copy and paste commands in. A little tedious, but this shouldn't take more than 30 minutes max of copy pasta.

Once in Termux run this.

pkg install wget proot
Then lets get the Ubuntu 16.04 image.

Code:
mkdir -p ~/jails/ubuntu
cd ~/jails/ubuntu
wget https://raw.githubusercontent.com/buzzkillb/termux-ubuntu/master/ubuntu16.sh
bash ubuntu16.sh
start-ubuntu.sh
We are now inside of Ubuntu 16.04 inside of Termux inside of Android.

Update, Upgrade, Clone Denarius and Compile using a slight variation of https://denarius.wiki/wallet/compile/#daemon

Code:
sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install -y git unzip build-essential libssl-dev libdb++-dev libboost-all-dev libqrencode-dev libminiupnpc-dev libgmp-dev libevent-dev autogen automake  libtool libcurl4-openssl-dev
git clone https://github.com/carsenk/denarius
cd denarius
cd src
make -f makefile.arm
sudo mv ~/denarius/src/denariusd /usr/local/bin/denariusd
Its a lot easier to grab pichaindata.zip and then start syncing. If you want to sync from block 0, type denariusd. Otherwise lets gets chaindata and unzip. https://denarius.wiki/wallet/chaindata/

Code:
cd ~
mkdir ~/.denarius
cd ~/.denarius
wget https://denarii.cloud/pichaindata.zip
unzip pichaindata.zip
Hopefully your phone or tablet has enough hard drive space to wget and unzip. Now run the daemon to wait for full sync.

Code:
denariusd
To watch the debug.log.

Code:
tail -f ~/.denarius/debug.log

Congratulations, you now have a full blockchain daemon running. But we really want to add Kronos so we have a nice and easy interface to use with this for on the go.


To install Kronos (Word in Progress for Steps)

Code:
cd ~
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
Exit Ubuntu terminal and open a new Ubuntu terminal then do this
source ~/.nvm/nvm.sh
source ~/.profile
source ~/.bashrc
nvm install v12
nvm use v12
npm install -g npm
cd ~/kronos
npm install
npm start
ctrl+c

Then we want to match the premade denarius.conf rpcuser and rpcpassword.

Code:
cat ~/.denarius/denarius.conf
I copied the rpcuser first and then paste into here.

Code:
cd ~/kronos
nano .env
Do this for both rpcuser and rpcpassword, as the .env file needs to be able to talk to the Denarius daemon.

Now stop your daemon if you haven't as we need to modify the denarius.conf too.

Code:
denariusd stop
cd ~/.denarius
nano denarius.conf
And add this line to the bottom.

Code:
walletnotify=curl http://127.0.0.1:3000/walletnotify -d "txid=%s"
If all went well we can now start Kronos.

Code:
cd ~/kronos
npm start
From your phone / tablet browser go to 127.0.0.1:3000 create a user with password and see if it worked.

kingcarsen
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
August 26, 2020, 04:42:27 PM
 #345


A while back I forked Neo-Oli and switched in an Ubuntu 16.04 to make compiling a little easier on the phone. https://github.com/buzzkillb/termux-ubuntu Also want to add hackers keyboard from the Play Store for this. All can be done without rooting the phone. Compiling the daemon using make -f makefile.arm -j2 worked fine. Then manually installing Kronos to match the default denarius.conf also worked.


This turns out to be an more simple variation of a previous tutorial.

First install termux and hackers keyboard on your Android phone.
https://play.google.com/store/apps/details?id=com.termux
https://play.google.com/store/apps/details?id=org.pocketworkstation.pckeyboard

Switch your keyboard over to hackers keyboard as its just easier to use with the Termux terminal to start inputting commands. I opened a separate web browser on the phone to copy and paste commands in. A little tedious, but this shouldn't take more than 30 minutes max of copy pasta.

Once in Termux run this.

pkg install wget proot
Then lets get the Ubuntu 16.04 image.

Code:
mkdir -p ~/jails/ubuntu
cd ~/jails/ubuntu
wget https://raw.githubusercontent.com/buzzkillb/termux-ubuntu/master/ubuntu16.sh
bash ubuntu16.sh
start-ubuntu.sh
We are now inside of Ubuntu 16.04 inside of Termux inside of Android.

Update, Upgrade, Clone Denarius and Compile using a slight variation of https://denarius.wiki/wallet/compile/#daemon

Code:
sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install -y git unzip build-essential libssl-dev libdb++-dev libboost-all-dev libqrencode-dev libminiupnpc-dev libgmp-dev libevent-dev autogen automake  libtool libcurl4-openssl-dev
git clone https://github.com/carsenk/denarius
cd denarius
cd src
make -f makefile.arm
sudo mv ~/denarius/src/denariusd /usr/local/bin/denariusd
Its a lot easier to grab pichaindata.zip and then start syncing. If you want to sync from block 0, type denariusd. Otherwise lets gets chaindata and unzip. https://denarius.wiki/wallet/chaindata/

Code:
cd ~
mkdir ~/.denarius
cd ~/.denarius
wget https://denarii.cloud/pichaindata.zip
unzip pichaindata.zip
Hopefully your phone or tablet has enough hard drive space to wget and unzip. Now run the daemon to wait for full sync.

Code:
denariusd
To watch the debug.log.

Code:
tail -f ~/.denarius/debug.log

Congratulations, you now have a full blockchain daemon running. But we really want to add Kronos so we have a nice and easy interface to use with this for on the go.


To install Kronos (Word in Progress for Steps)

Code:
cd ~
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
Exit Ubuntu terminal and open a new Ubuntu terminal then do this
source ~/.nvm/nvm.sh
source ~/.profile
source ~/.bashrc
nvm install v12
nvm use v12
npm install -g npm
cd ~/kronos
npm install
npm start
ctrl+c

Then we want to match the premade denarius.conf rpcuser and rpcpassword.

Code:
cat ~/.denarius/denarius.conf
I copied the rpcuser first and then paste into here.

Code:
cd ~/kronos
nano .env
Do this for both rpcuser and rpcpassword, as the .env file needs to be able to talk to the Denarius daemon.

Now stop your daemon if you haven't as we need to modify the denarius.conf too.

Code:
denariusd stop
cd ~/.denarius
nano denarius.conf
And add this line to the bottom.

Code:
walletnotify=curl http://127.0.0.1:3000/walletnotify -d "txid=%s"
If all went well we can now start Kronos.

Code:
cd ~/kronos
npm start
From your phone / tablet browser go to 127.0.0.1:3000 create a user with password and see if it worked.



I am amazed at the silence in this thread, people if you are reading this, give some feedback, give some input, show your support!
Gash
Full Member
***
Offline Offline

Activity: 652
Merit: 123


View Profile
August 29, 2020, 12:55:26 PM
 #346

Anybody build any solutions based on oraclized data, etc. IOT devices, spyware that steals and includes logged data into the blockchain, surveillance cameras and kindred stuff? Denarius is ideal for things mentioned. I imagine we can use oracles to connect blockchains to highly sophisticated devices which are currently in demand (sell very fast) which gets you access to and sway over data of billions of people.
kingcarsen
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
August 31, 2020, 04:53:34 PM
 #347

Anybody build any solutions based on oraclized data, etc. IOT devices, spyware that steals and includes logged data into the blockchain, surveillance cameras and kindred stuff? Denarius is ideal for things mentioned. I imagine we can use oracles to connect blockchains to highly sophisticated devices which are currently in demand (sell very fast) which gets you access to and sway over data of billions of people.

Kronos seems to be heading that direction but in its own way, Jupiter/Proof of Data will be available soon through it, allowing you to timestamp and upload data.
kingcarsen
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
September 07, 2020, 06:50:34 AM
 #348

Denarius Mandatory Update to v3.3.9.8!

Denarius Release Notes:

Code:
Protocol Bump to 33933 (All nodes will need to update)
Jupiter IPFS now has PeerID and PubKey Support (If using jupiterlocal=1)
Include Vout TX Hex Data with asm in Transactions
Added Transaction Sizes to RPC
Update to FortunaStakes
Improved FS Status Information
Updated getinfo and other RPC Commands to return more information
Updated other RPC commands for use with Kronos (https://github.com/carsenk/kronos)
Added burn RPC command (Credits to @CircuitBreaker88)
New EUR Balance in QT Overview (Credits to @CircuitBreaker88)
Random updates, fixes, and improvements to Denarius overall
Credits to @buzzkillb for being so kind and hosting our chaindata at https://denarii.cloud

If you are running Denarius via Snap, Snap will automatically upgrade you, simply restart your Denarius node and verify you are running version 3.3.9.8

Latest version is available in our master branch on the Github

Get v3.3.9.8 for Windows and macOS: https://github.com/carsenk/denarius/releases/tag/v3.3.9.8

This includes updates to D that improve it for use with its new secondary interface Kronos: https://github.com/carsenk/kronos
buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
September 09, 2020, 08:15:41 PM
 #349

Seeders updated to only look for wallets with blocks above the update. Electrumx Servers updated. x64 and ARM chaindatas updated. https://mining.cafe back up on a fast US server. Going to add a lot more stat tracking to https://denarius.pro  Cool
buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
September 11, 2020, 04:49:57 PM
 #350

Messing around on IPFS seeing how a very very very basic block explorer could work. https://explorer.denarius.pro/
kingcarsen
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
September 13, 2020, 04:29:24 AM
 #351

Kronos will be eventually progressed into featuring a decentralized exchange swap supporting ETH/Tokens, and then any cryptocurrency chain supporting CLTV and ElectrumX.
vella85
Hero Member
*****
Offline Offline

Activity: 1862
Merit: 590



View Profile WWW
September 16, 2020, 11:41:09 PM
 #352

@kingcarsen

I liked your tweet about exchanges yesterday and I do agree with you as they are greedy for money when it comes to listing coins. Denarius is a great project which does deserve to be listed on one of the major exchanges but the fees are crazy high. Just keep doing what you have been doing mate and hopefully in time we'll see D listed on a big exchange.

I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
kingcarsen
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
September 17, 2020, 06:26:13 PM
 #353

@kingcarsen

I liked your tweet about exchanges yesterday and I do agree with you as they are greedy for money when it comes to listing coins. Denarius is a great project which does deserve to be listed on one of the major exchanges but the fees are crazy high. Just keep doing what you have been doing mate and hopefully in time we'll see D listed on a big exchange.

Yup staying away from paying any of them. We have two solid exchanges that do some volume SouthX and TradeOgre. Kronos Swaps coming could really make things interesting.

Kronos App running natively on Windows:
buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
September 17, 2020, 06:36:21 PM
 #354

https://denarius.pro now running fully behind cloudflare TLS strict mode, latest nginx, a virus scanner, and login page removed. Fascinating test of running docker containers.
vella85
Hero Member
*****
Offline Offline

Activity: 1862
Merit: 590



View Profile WWW
September 17, 2020, 10:52:28 PM
 #355

@kingcarsen

I liked your tweet about exchanges yesterday and I do agree with you as they are greedy for money when it comes to listing coins. Denarius is a great project which does deserve to be listed on one of the major exchanges but the fees are crazy high. Just keep doing what you have been doing mate and hopefully in time we'll see D listed on a big exchange.

Yup staying away from paying any of them. We have two solid exchanges that do some volume SouthX and TradeOgre. Kronos Swaps coming could really make things interesting.

Kronos App running natively on Windows:


Looks like Kronos is coming along nicely mate, I think it will make things very interesting and a lot better for us who want an easy way to swap. I also just saw that Binance listed UNI with no listing fees what so ever and they listed that crap Sushi as well a few weeks ago but they then want huge amounts of BTC to list other projects. Its just greed on their part.

I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
TillKoeln
Legendary
*
Offline Offline

Activity: 2282
Merit: 1051

unnamed.Exchange, join the Cool Kids!!!


View Profile WWW
October 18, 2020, 02:14:06 PM
 #356

[D] #Denarius out of Maintenance
Client updated to v3.3.9.8  !Mandatory!
github/carsenk/denarius/tree/v3.3.9.8

and missing trade pairs added for Monero & Tether
https://unnamed.exchange/MarketInfo

buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
October 24, 2020, 07:46:36 PM
 #357

[D] #Denarius out of Maintenance
Client updated to v3.3.9.8  !Mandatory!
github/carsenk/denarius/tree/v3.3.9.8

and missing trade pairs added for Monero & Tether
https://unnamed.exchange/MarketInfo

Master (Main) branch compiled should be at v3.3.9.9 currently, same as snap daemon/QT.
buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
October 24, 2020, 07:51:35 PM
 #358

Denarius BLOCK service node is now running. Come and atomic swap on the BlockDX DEX with Denarius or your favorite coin they support. XLite wallet allows for Lite (SPV) Bitcoin, Litecoin and some other larger blockchain wallets as well. Direct daemon to daemon trading is looking good.

https://blockdx.com/listings/

buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
November 03, 2020, 03:59:59 PM
 #359

Kronos now has anonymous chat along with being able to send Denarius, Denarii token and Ethereum. Come join us for beta testing and try out Simple mode for chat.

https://github.com/carsenk/kronos

kingcarsen
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 369



View Profile WWW
November 14, 2020, 07:00:08 PM
 #360

https://github.com/carsenk/kronos/releases Kronos binaries are now available!
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 [18] 19 20 »  All
  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!