Pages:
Author

Topic: [ANN] Denarius [D] - Originator "Tribus" PoW/PoS Hybrid Masternodes, Native Tor - page 5. (Read 12557 times)

sr. member
Activity: 1021
Merit: 324
Kind of annoyed so many of my posts are being deleted, and yet they are very related to Denarius and cryptocurrency in general. Anyone else ever show how to basically interact with an electrumx server using bash, including Bitcoin? A bit over the top censorship admin, as you allow the other guy to make fun of other people's sexuality. So talking about cryptocurrency stuff on this forum is a questionable thing, but calling people names and sexual innuendo towards Developers and community is tolerated. I hope this makes sense to someone else.
sr. member
Activity: 1148
Merit: 417


dPi is coming along! More and more updates!
sr. member
Activity: 1021
Merit: 324
https://mining.cafe is back on yiimp

While putting that back together I also made an input combining script, tested on Denarius compiled daemon and snap daemon. https://bitcointalksearch.org/topic/script-to-autocombine-inputs-per-address-5238747

Denarius took everything from u. It retrieved all that u deemed private from the emptiness of ur head. And from that mesh it absorbed every definition of ur individuality, leaving a shell rid of life and eventfulness. That is the perfect example of how ineptitude is born in a human, influenced by dumb bisexual called carsen klock. Young carsen klokkk is a young fragile female birdie with a velvet covering on its beak starting to fray and vanish.

Carsen can be all of those things, yet blockstream continues the attack, and he is still one of the top cryptocurrency developers. And why would you quote my script that no one has done before to make rawtx's extremely easy on any bitcoin fork, and very tweakable to do extreme wallet control?
sr. member
Activity: 1148
Merit: 417
https://mining.cafe is back on yiimp

While putting that back together I also made an input combining script, tested on Denarius compiled daemon and snap daemon. https://bitcointalksearch.org/topic/script-to-autocombine-inputs-per-address-5238747

Denarius took everything from u. It retrieved all that u deemed private from the emptiness of ur head. And from that mesh it absorbed every definition of ur individuality, leaving a shell rid of life and eventfulness. That is the perfect example of how ineptitude is born in a human, influenced by dumb bisexual called carsen klock. Young carsen klokkk is a young fragile female birdie with a velvet covering on its beak starting to fray and vanish.

What are you even going off about? Buzz contributes heavily to Denarius and does a great job. Take your vile comments elsewhere, no one here cares for them.


We now have a Trello again:

https://trello.com/b/oIPn3IZm/denarius

If you would like to contribute to adding tasks and or helping with any tasks, please PM me.

To the mods: This is a super important announcement relating to Denarius and its development, so please do not flag it as off topic and remove it again.
member
Activity: 180
Merit: 20
https://mining.cafe is back on yiimp

While putting that back together I also made an input combining script, tested on Denarius compiled daemon and snap daemon. https://bitcointalksearch.org/topic/script-to-autocombine-inputs-per-address-5238747

Denarius took everything from u. It retrieved all that u deemed private from the emptiness of ur head. And from that mesh it absorbed every definition of ur individuality, leaving a shell rid of life and eventfulness. That is the perfect example of how ineptitude is born in a human, influenced by dumb bisexual called carsen klock. Young carsen klokkk is a young fragile female birdie with a velvet covering on its beak starting to fray and vanish.
sr. member
Activity: 1021
Merit: 324
https://denarius.pro/ Grafana, is now moved to a new server and added coingecko stats in the process https://denarius.pro/d/jouEBGkGk/coingecko

Generic-seeder is also dockered to play around with.  Trying to make any Dockerfiles as tiny as possible. https://github.com/buzzkillb/docker-generic-seeder  Extremely easy way to setup a dns seeder.
member
Activity: 118
Merit: 10
I think its about time i start getting involved with the Denarius bitcointalk threads. I must say there is ALOT of development going on here, whilst 95% of other alt coins are dead, and will most likely never ever see the light of day.

I am seeing a Dash, Decred type run/coin with Denarius...its a hidden gem

Its only a matter of time
sr. member
Activity: 1148
Merit: 417


Some updates have been made to dPi, it is getting much closer to a release!
sr. member
Activity: 1148
Merit: 417
dPi is currently a work in progress and will be finished soon, for more information check it out here: https://blockforums.org/topic/392-dpi-secondary-layer-and-interface-for-denarius/

sr. member
Activity: 1021
Merit: 324
I have started to put together a bash rpc thingamabob together. https://github.com/buzzkillb/bash-denariusrpc

The goal is to get most of the curl RPC commands working through the Denarius wallet. For now I got the listunspent, create sign and send raw transactions to work with the deduster in the examples directory. Also a basic fortunastake / masternode monitor that can restart from the collateral wallet if the FS/MN drops off.


Whos buzzing huh? Lets cut that off and do something thats gonna be appreciated. Remove doubt from equation of ur life. Treat your issues with a smirk on your big gremlin face as if you judge yourself from the inside of your auxiliary personality. Big lapses you would do when you stop crouching. Working on the wallet was something you started with. Now its your choice to decide whether you wanna circle back to your wallet or hit really big.

Carsen is the Denarius creator. I am just learning more about how cryptocurrencies work, which is why I was making the bash-rpc thing, as anyone can do a lot of wallet control with that on any bitcoin fork.

As to the wallet being worked on, here is a visualization of that, and who has done what. https://youtu.be/BPr33qspOM0

To wrap that up, Denarius is still chugging away at new and innovative features, which may have a larger impact than anyone realizes in this space. Oh yeah I am not Carsen, blockstream.



How I inserted letsencrypt certbot standalone keys into docker electrumx server. https://blockforums.org/topic/282-electrumx-server-setup-guide-docker/?do=findComment&comment=3116

Too much to retype but basically you tell docker to look for the generated keys instead of using self signed.

Code:
docker run \
  --name=electrumx \
  --net=host \
  --ulimit nofile=5120:5120 \
  -t -d \
  -v ~/electrumx:/data \
  -e DAEMON_URL=http://rpcusername:[email protected]:32369 \
  -e COIN=Denarius \
  -e DB_ENGINE=rocksdb \
  -v /etc/letsencrypt/live/electrumx1.denarius.pro/fullchain.pem:/data/fullchain.pem \
  -v /etc/letsencrypt/live/electrumx1.denarius.pro/privkey.pem:/data/privkey.pem \
  -e SSL_CERTFILE=/data/fullchain.pem \
  -e SSL_KEYFILE=/data/privkey.pem \
  -e REPORT_SERVICES=ssl://electrumx1.denarius.pro:50002 \
  -e SERVICES=tcp://:50001,ssl://:50002,wss://:50004,rpc:// \
  -p 50001:50001 \
  -p 50002:50002 \
  buzzkillb/docker-electrumx:latest

Again a huge thank you to Luke Childs for making this docker.

edit: use latest tag
edit2: report_services the TLS connection and also add services to environmental variable



I will retype this out fully on here once I get the basic concept working completely. The idea is to first use just bash script to talk to an electrumx server. I don't want to run a wallet as my only device will eventually be a pi zero w for cheapest wallet control possible. The initial steps explain how to convert an Address into scripthash and then get a balance from an electrumx server. Might be interesting to anyone wondering how to work the steps backwards at the most basic way possible. Next to see how to create a rawtx from what I can pull off the server.
https://blockforums.org/topic/367-bash-client-to-electrumx-server-welcome-to-the-beginning/



joe@exor was kind enough to update his generic seeder to work with Denarius. Here's his thread https://bitcointalksearch.org/topic/dns-seeder-setup-guide-using-the-generic-seeder-5239304 and here is how I set it up https://blockforums.org/topic/368-generic-seeder-dns-seeds/

[moderator's note: consecutive posts merged]
sr. member
Activity: 1148
Merit: 417
I have started to put together a bash rpc thingamabob together. https://github.com/buzzkillb/bash-denariusrpc

The goal is to get most of the curl RPC commands working through the Denarius wallet. For now I got the listunspent, create sign and send raw transactions to work with the deduster in the examples directory. Also a basic fortunastake / masternode monitor that can restart from the collateral wallet if the FS/MN drops off.


Whos buzzing huh? Lets cut that off and do something thats gonna be appreciated. Remove doubt from equation of ur life. Treat your issues with a smirk on your big gremlin face as if you judge yourself from the inside of your auxiliary personality. Big lapses you would do when you stop crouching. Working on the wallet was something you started with. Now its your choice to decide whether you wanna circle back to your wallet or hit really big.

What are you talking about?

This post makes literally zero sense, "Ive Gone Parabolic"

Buzz has never worked on the wallet really, he has been learning other langs and always working on external Denarius features and tools...Which by the way his bash tool is awesome! He also made https://encourage.denarius.pro a fun little app that increases random block TX fees for PoW miner rewards.
member
Activity: 180
Merit: 20
I have started to put together a bash rpc thingamabob together. https://github.com/buzzkillb/bash-denariusrpc

The goal is to get most of the curl RPC commands working through the Denarius wallet. For now I got the listunspent, create sign and send raw transactions to work with the deduster in the examples directory. Also a basic fortunastake / masternode monitor that can restart from the collateral wallet if the FS/MN drops off.


Whos buzzing huh? Lets cut that off and do something thats gonna be appreciated. Remove doubt from equation of ur life. Treat your issues with a smirk on your big gremlin face as if you judge yourself from the inside of your auxiliary personality. Big lapses you would do when you stop crouching. Working on the wallet was something you started with. Now its your choice to decide whether you wanna circle back to your wallet or hit really big.
sr. member
Activity: 1020
Merit: 391



Article:

https://steemit.com/denarius/@eddyc/denarius-a-cryptocurrency-designed-for-success


I hope you enjoy the article and that it motivates you to be part of this great project and your community.


sr. member
Activity: 1148
Merit: 417
Little cool history video of Denarius with gource

Visualization of the Github from 2017-2020

https://www.youtube.com/watch?v=BPr33qspOM0
sr. member
Activity: 1021
Merit: 324
A guide for one way to create a 1/2 multisig address using 2 separate QT wallets. https://blockforums.org/topic/230-multisig-qt-wallet/
sr. member
Activity: 1021
Merit: 324
I have started to put together a bash rpc thingamabob together. https://github.com/buzzkillb/bash-denariusrpc

The goal is to get most of the curl RPC commands working through the Denarius wallet. For now I got the listunspent, create sign and send raw transactions to work with the deduster in the examples directory. Also a basic fortunastake / masternode monitor that can restart from the collateral wallet if the FS/MN drops off.

The deduster is something I was trying to tweak further to first check if an address has more than 1 input, and then take all those inputs and send them back to that address. It scrolls one by one through the wallet finding anything that matches the criteria and creates the raw transaction. Right now for instance Denarius POW blocks are mostly 0.00000000 D, so a fortunastake could get a lot of 0 inputs in a single address over time. This can clear those up. Someone could also tweak that script to send 1 by 1 of those addresses into a single address like coinomi or another QT. Or could also getnewaddress each time and send 1 by 1 to a new address each time. Lots of things can be automated with wallet control.

I also started to make this in a way that should be able to work on other bitcoin forks by changing the rpcport in the bashrpc config.conf, from that most of the commands should be the same through bitcoin forks.

And because its bash, a Windows 10 user could enable linux subsystem in Windows Features On/Off, go to cmd.exe and type bash, run this, and the Windows QT will be called through RPC.

Basically change the config.conf to your settings. The functions are all in rpc.sh and then make whatever scripts using those functions. There is no logic at all to any of this, so things can error or break, but so far what I posted all seems to work. At the moment this is meant to be tested on a wallet with no password as I don't know if there is a good way to keep the wallet password a secret in the config file, or maybe just prompt for the password when its needed.
sr. member
Activity: 1021
Merit: 324
https://mining.cafe is back on yiimp

While putting that back together I also made an input combining script, tested on Denarius compiled daemon and snap daemon. https://bitcointalksearch.org/topic/script-to-autocombine-inputs-per-address-5238747
sr. member
Activity: 1148
Merit: 417
just added Monero,Waves & USDT as base market for Denarius



DDDDDope  Grin Grin Grin

THAT ...

Is giving it the 'D' Wink

Nice work so far Carsen. Pity it is PoS only now. I really enjoyed mining this coin.

#crysx

PoW is still going and will forever. PoW never ended. Just block rewards, PoW blocks can net you transaction fees still.

Which are what mate? ...

#crysx

Depends on the amount of transactions and fees in a block. Typically network fees are at 0.00001 D
legendary
Activity: 2912
Merit: 1091
--- ChainWorks Industries ---
just added Monero,Waves & USDT as base market for Denarius



DDDDDope  Grin Grin Grin

THAT ...

Is giving it the 'D' Wink

Nice work so far Carsen. Pity it is PoS only now. I really enjoyed mining this coin.

#crysx

PoW is still going and will forever. PoW never ended. Just block rewards, PoW blocks can net you transaction fees still.

Which are what mate? ...

#crysx
Pages:
Jump to: