Search content
Sort by

Showing 9 of 9 results by beralt
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Silk Network: Silk(SLK), DarkSilk(DSLK) and Weaver
by
beralt
on 06/10/2016, 22:06:00 UTC
Has anyone else compiled the wallet on Rpi3 ? It is working and showing new blocks downloaded and peers etc but doesn't seem to stake the coins. I think I got one stake in a day, but on ubuntu was getting 2 SLK an hour.

Do I have to unlock it or something? Or have my wallet unlocked on my laptop as well, which I guess not as it defeats the purpose.

Maybe this is just a fluctuation. Have you had your inputs split on the pi? Are you using exactly the same addreses than on your Ubuntu machine?
I have the feeling that staking rate might be lower on a RPi than on my laptop, but I wouldn't know why. As I understand how the staking works, there shouldn't be a difference. I will do some more testing on that, though.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Silk Network: Silk(SLK), DarkSilk(DSLK) and Weaver
by
beralt
on 05/10/2016, 21:59:24 UTC
sorted it
Thanks for pointing out the mistake. I corrected the tutorial. happy staking!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Silk Network: Silk(SLK), DarkSilk(DSLK) and Weaver
by
beralt
on 05/10/2016, 07:33:58 UTC
Hello everyone,

I have some progress to report on setting up a staker on the raspberry-pi. Silk runs pretty smoothly with  about 9.7% memory use and between 15-30% cpu usage on my raspberry-pi 2. I also installed it on my model 1, and it seems also to be working well. Staking works and my machine earned me some SLK over night Smiley
I know @prometheusX has posted a tutorial already, but there were still some steps left out.
So here is my raspberry-pi staker building instructions that should be quite accessible for everyone.


Raspberry PI SILK STAKER


Preparing the raspberry-pi
* Get the latest raspbian-lite image from the Raspbian download page
* Flash SD card according to the official intructions
* Insert SD card into pi, connect LAN, power raspberry pi
* Find IP address of raspberry
*
Code:
ssh
into your raspberry
Code:
ssh pi@
The standard password is "raspberry"
* Configure your raspbery by running
Code:
sudo raspi-config
:
 * Expand filesystem
 * Change password for the user pi
 * Overclock to your likings (useful for compilation, see below, but not really required for running the very slick silk client)
 * Under "Advanced options", you can set the shared memory for the GPU to only 16MB. We won't be running any graphical applications in any case
* Edit swap file size to 512MB (see also this guide)
 *
Code:
sudo nano /etc/dphys-swapfile
* Change the default value of
Code:
CONF_SWAPSIZE=100
to
Code:
CONF_SWAPSIZE=512
* Reboot the pi

Installing the prerequisistes
* After reboot, login again and install the basic dependencies needed for Silk. All details are on the SilkNetwork github page
* Refresh the list of repositories, and upgrade (you can get a cup of tea in the meanwhile)
Code:
sudo apt-get update
Code:
sudo apt-get upgrade
Code:
sudo apt-get dist-upgrade
* Install the basic packages
Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libcrypto++-dev libdb++-dev libboost-all-dev
* Install git
Code:
sudo apt-get install git
* Set root password
Code:
sudo passwd root

Build Berkeley DB 4.8
* Pick some path to install Berkeley DB4.8 (DBD). Here, we just install it a folder called "BDB4.8"
Code:
mkdir BDB4.8
Code:
cd BDB4.8
* Now that we are in the directory where we will build BDB, let's define an environement variable that we will use later
Code:
BDB_PREFIX=$(pwd)
* Fetch the source and verify that it is not tampered with
Code:
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
Code:
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
Code:
tar -xzvf db-4.8.30.NC.tar.gz
* Build the library and install to our prefix (get a small cup of tea)
Code:
cd db-4.8.30.NC/build_unix/
Code:
../dist/configure --prefix=$BDB_PREFIX --enable-cxx --with-pic
* Build and install (I had no problems with sudo, contrary to the other tutorial posted)
Code:
make
Code:
sudo make install

Build Silk-Core
* Clone Silk-Core using git
Code:
git clone https://github.com/SilkNetwork/Silk-Core.git
Code:
cd Silk-Core
* Generate installation files
Code:
./autogen.sh
* Configure installation
Code:
./configure --without-gui --disable-tests LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/"
* Compile and install
Code:
make
Code:
sudo make install

Running a Silk-Node
* Start the Silk Daemon
Code:
silkd
. This will be always running in the background, and you will interact with it via sending rpc commands from using
Code:
silk-cli
. Running this for the first time will generate the hidden folder
Code:
~/.silk
Code:
silkd --daemon
* You will receive an error message, telling you that you have to change some values in the (automatically generated) file
Code:
~/.silk/silk.conf
Code:
nano ~/.silk/silk.conf
* Now change
Code:
listen=1
to
Code:
listen=0
(and, if you want, you can change the rpcuser and its password) and safe the file (
Code:
+o
)
* Try to start the dameon again. This time, it should work.
Code:
silkd --deamon
* Now you are ready to interact with the daemon using
Code:
silk-cli

Interacting with the Daemon
* For an overview of commands use
Code:
silk-cli help
* Check the status
Code:
silk-cli getinfo
* If you see an error "wallet loading" then don't worry: you were simply too fast and the wallet file is still building. Give it two minutes and try again

Staking
* On your main machine, create a new address that you want to use for staking. If you want, use the splitcoin feature to generate this address already with a multitude of inputs.
* Now on the QT-Wallet on you main machine, go to Tools/Debug Console and get the private key of this staking address (Note: Wallet needs to be unlocked for that)
Code:
dumpprivkey "
"
* Write down/copy the the private key
* Go to your Raspberry and import the private key (you can optionally provide a label for this address in the wallet)
Code:
silk-cli importprivkey ""


Happy staking!
That should be all. If you have questions, message me or answer. I will be posting some proper benchmarks later. @Devs: if you want this guide for the docs, I am happy to provide. @fellow silkers: If you find this helpful (and especially, if you have succeeded in setting up your staker), consider buying me a beer or a cup of tea:
SLK: ScyJtVwAbQKJuxcrxtvwhnB3wi9Tx5GSQQ
BTC: 1HFKhsyR4Mbr1v2YRC5cJc6biC8pNK4cnB

Keep On Marching!
Post
Topic
Board Altcoins (Deutsch)
Re: [ANN] [ICO] [HONG] Blockchain Venture Capitalism für jedermann
by
beralt
on 01/10/2016, 11:40:20 UTC
Leider muessen wir euch mitteilen, dass Projekt HONG zunaechst eingestellt wird. Investoren koennen ihre Investion zurueckerhalten:
https://medium.com/@hongcoin/how-to-get-refund-from-hong-3498672db6fb#.a3kix8p5y

Vielen Dank fuer das Vertrauen. Wir melden uns bald wieder mit einem neuen Projekt.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Silk Network: Silk(SLK), DarkSilk(DSLK) and Weaver
by
beralt
on 25/09/2016, 14:50:38 UTC
Has anyone had any luck with setting up a Raspberry Pi 3 to run the wallet as a staking unit? I tried on ubuntu mate but had no luck, or will the wallet just not run on the arm chip even if I get 'real' ubuntu onto my raspberry?

Hi,

I'm working on it on my RPi 2, but compiling takes a long time. If it works, I'll post a tutorial Smiley
So long
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Silk Network: DarkSilk(DSLK) ICO
by
beralt
on 24/09/2016, 22:22:46 UTC
Hi guys,

I have a question regarding the ICO:
I think I understand how the price will be pegged (from the plain English statement in the main thread), but the formula

MAX(PRICEWEEK(N) ([AMOUNT] BTC x 4 / 1,528,000 DSLK)
is not really clear.

Is what you mean that the price for one DSLK (in BTC) will be
Code:
DSLK_PRICE = max( WEEKLY_ICO_FUNDING_VOLUME_IN_BTC ) * 4 / 1,528,000
?

Cheers, and good luck with the ICO
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Silk Network: Silk(SLK), DarkSilk(DSLK) and Weaver
by
beralt
on 19/09/2016, 15:24:52 UTC

@beralt, Thank you for the input.  We will try to convert our base58 prefixes to use a std::vector instead of list_of().  If you have time, please add it to our issues list:  https://github.com/SilkNetwork/Silk-Core/issues

Did it: https://github.com/SilkNetwork/Silk-Core/issues/16
Hope it helps.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Silk Network: Silk(SLK), DarkSilk(DSLK) and Weaver
by
beralt
on 19/09/2016, 15:02:54 UTC
Hi people,

I am quite new here, but still having something to contribute:
I just managed to compile silk-core from scratch (on arch linux), after having some troubles (?due to a too recent c++ version?).

In any case, I managed to modify the 'src/chainparams.cpp ' similar to this fix:
https://github.com/ShapeShifter499/clams/commit/833dbdabb9fdc6befc608e9ee49a7327d48e5ff0
and it compiled.

Now I have the client running, and after properly adding the nodes to my silk.conf it seems to be running.
However, I have no SLK and do not even know how to get some before bittrex starts listing them, of someone has some change so I can play around, my receiving address is:
ScyJtVwAbQKJuxcrxtvwhnB3wi9Tx5GSQQ

In any case, following this closely Smiley

Cheers,
B
Post
Topic
Board Altcoins (Deutsch)
Topic OP
[ANN] [ICO] [HONG] Blockchain Venture Capitalism für jedermann
by
beralt
on 15/09/2016, 10:35:21 UTC
Orginal Diskussionsthread auf Bitcointalk: https://bitcointalk.org/index.php?topic=1563423.

HONG:Blockchain VC für jedermann

ICO beginnt am 29. August 2016

Mehr Informationen ueber unseren ICO und wie ihr daran teilnehmen koennt findet ihr auf unserer Homepage http://www.hongcoin.org/.

Cryptocurrency kann ein Teil unseres realen Leben seins: als Bestandteil des Programmcodes von Smart Devices, als Schnittstelle zu Geschaeftsmodellen und generall als Allgemeingut. Dass der menschliche Faktor nicht zu vernachlaessigen ist, zeigt uns die Erfahrung der ersten dezentraliserten autonomen Organisation (the DAO), dessen Ziel es war, Investitionen allein durch maschinellen Code zu verwalten. Trotz der besten Anstrengungen der DAO-Entwickler musste man feststellen, dass Maschinen allein nicht anpassungsfaehig genug sind, um der Komplexitaet der echten Welt gerecht zu werden.

Um ein erfolgreiches und lebendiges System zu gewaehrleisten, sollten Mensch und Maschine deswegen so zusammenarbeiten, dass die jeweiligen Vorteile optimal ausgenutzt werden, anstatt vor einander in die Knie zu gehen. Menschen sollten sich um die menschliche Arbeit kuemmern, waehrend Computer und Code Maschinenarbeit leisten.

Project HONG wurde in diesem Geiste geschaffen: als die Venture Capital (VC) Plattform für das Blockchain Zeitalter. Ihr Ziel ist es, sowohl Krypto-Enthusiasten als auch gewöhnlichen Menschen einen einfachen Zugang in diesen neuen Wirtschaftzweig zu ermöglichen. HONG will so einen Beitrag zur allgemeinen Verbreitung dieser disruptiven Technologie leisten. Das Startkapital von HONG ergibt sich durch den verkauf von HONG tokens (Ħ). HONG tokens stellen Fondanteile dar und ermöglichen es Investoren, die Strategie und Betrieb des Fonds durch Abstimmung zu beeinflussen.
Mit diesem design kann HONG Leistung auf hoechstem Niveau liefern und liefert zugleich ein nie zuvor dagewesene Mass an Sicherheit, Verwaltbarkeit und Transparenz.

Wir glauben daran, dass Cryptocurrency in Zukunft unsere Gesellschaft naeher zueinander bringen kann. Wir laden euch alle ein, unserer Community beizutreten und zusammen einen neuen Start zu wagen.


Einführungsvideo bei Youtube(https://www.youtube.com/watch?v=dr1dwKkSu7k) (Englisch)
HONG’s  Whitepaper: https://medium.com/@hongcoin/hong-coin-a-post-dao-organization-on-blockchain-cf88605cede5#.5eeowajbh (Englisch)
Mehr Information gibt es in unserem Slack Channel: http://slack.hongcoin.org/

Wie funktioniert das genau?
HONG basiert auf einem neuen Konzept: Die Kollaboration von Mensch und Maschine.
Die HONG Anteilseigner stimmen gemeinsam darüber ab, welche Projekte zu welchen Konditionen unterstützt werden. Ein professionelles Management-Team ist dafür verantwortlich, die so getroffenen Entscheidungen umzusetzen. Alle finanziellen Transaktionen (z.B. Kapitalaquise und Investment) werden durch sogenannte "Smart Contracts" abgewickelt, welche für jedermann einsehbar auf der Ethereum-Blockchain ausgeführt werden.  HONG ist eine dezentralisierte Organisation (DO), welche aus guten Gründen jedoch nicht komplett autonom agiert.

Projekte, welche eine Finanzierung durch den HONG Fond suchen, werden der HONG Community präsentiert. Falls innerhalb von 15 Tagen mindestens 20% der HONG-Anteilseigner zugestimmt haben, nimmt das Management-Team eine sorgfältige Risikoprüfung vor und arbeitet einen Investitionsplan aus. Das Management-Team wird durch die HONG Anteilseigner bestimmt. Es erhält eine jährliche Vergütung von 2% des ursprünglichen Fondvolumens. Die HONG Anteilseigner können darüber abstimmen, ob das Management-Team geändert oder ersetzt wird.

Mehr information findet sich auf unserem GitHub Wiki: https://github.com/hongcoin/DO/wiki.

Für welche Projekte interessiert sich HONG?
Im HONG Whitepaper werden drei Hauptkategorien genannt: Zukunftstechnologien, kreative Arbeiten und Bildung. Wir glaube daran, dass Blockchaintechnologie in diese Bereichen den grössten positiven Einfluss auf unsere Gesellschaft haben kann. Im allgemeinen ist HONG an allen Projekten interessiert, welche einen echten Mehrwert für jedermann generieren können.

Wie werde ich ein HONG Anteilseigner?
HONG's ICO (Initial Coin Offering) begann am 29. August 2016 and wird, je nach Fortschritt, bis maximal zum 28. Oktober 2016 dauern. Jeder kann bei mitmachen, indem er Ether an einen "Smart Contract" auf der Ethereum-Blockchain überweist, und dafür HONG Anteile erhält. Ein Schritt-für-Schritt-Anleitung findest du hier: https://medium.com/@hongcoin/how-to-participate-ico-of-hong-a2829aedef83#.e6azb5yy4.
Der HONG Smart Contract ist unter der Ethereum-Addresse 0x9Fa8fA61A10Ff892E4EBCeB7f4e0FC684C2ce0a9 zu finden.
Hier ist die entsprechende JSON Datei: http://www.hongcoin.org/download/hong.json.
Den Quellcode und unser Wiki gibt es auf Github: https://github.com/hongcoin/.

Die Preise für HONG-Anteile (repräsentiert durch HONG-Tokens) richten sich nach der Anzahl bereits verkaufter Tokens. Eine Preisklasse beinhaltet 50 Millionen HONG Tokens:
1. Phase — 1.00 ETH für 100 Hong Tokens, (total 50M tokens)
2. Phase — 1.05 ETH für 100 Hong Tokens, (total 50M tokens)
3. Phase — 1.10 ETH für 100 Hong Tokens, (total 50M tokens)
4. Phase — 1.15 ETH für 100 Hong Tokens, (total 50M tokens)
5. Phase — 1.20 ETH für 100 Hong Tokens, (total 50M tokens)

Während der gesamten Dauer des ICO kann jeder HONG Anteilseigner seine Anteile zurückgeben und damit seine Einlagen zurückerhalten. Während der dreijährigen Laufzeit des Fonds ist eine Rückerstattung nicht möglich, es sei denn, die Anteilseigner einigen sich darauf den Fond "einzufrieren". Im vierten (fiskalischen) Jahr werden werden Ausstiegstrategien verwirklicht, und HONG Anteilseigner erhalten ihre Rendite proportional zur Anzahl der HONG Tokens in ihrem Besitz.

HONG Design-Team

http://hongcoin.org/team

Isaac Mao: Visionary, Chief Architect
#Sharism Enthusiast, ehemals Board Director für das Tor Project

Payne Huang: Business Director
Experte für Telekommunikation, Finanz, Einzelhandel,  Blockchain

William Lau: Technical Lead
Tech-Experte, leidenschaftlich an der Zukunft von Kryptowährungen interessiert


Nützliche Links:
Website:https://www.hongcoin.org/
FAQ:https://www.hongcoin.org/faq
GitHub:https://github.com/hongcoin/DO
Slack:http://slack.hongcoin.org/
Twitter:https://twitter.com/hongcoins
Medium:https://medium.com/@hongcoin
Youtube:https://www.youtube.com/channel/UCfPwvDLNFgJ8n70RI65hwKA