Pages:
Author

Topic: Rebranded to Duality Blockchain Solutions - page 43. (Read 129283 times)

hero member
Activity: 490
Merit: 500
CTO - Silk Network
October 05, 2016, 11:25:11 AM
ICO with 50BTC only? enough to buy few lipsticks for hookers Kiss

give it time. this isn't a project based in advertising like we see every day here... and at the begin silk wallet had some problems, maybe that have scared a few investors.

It wasn't Silk that had the issue, it was the DNS seeders.

The DNS seeders had a loop in the code that was driving the CPU usage of Silk through the roof, the DNS seeders are now fixed.

The pre-release version of Silk 1.0.1.0 is also available for Windows and build-able for Linux - https://github.com/silknetwork/silk-core/releases

Also, yes, we are not a hype machine offering vapourware.

Sadly it seems most investors do not read the documentation, information and what is actually being done within a project.

Instead they follow the hype and dump their money into ICO's just because everyone else is and then unsurprisingly make a ridiculous loss, occasionally making a gain/profit.

A comment made by bitcoin.com was that we have a "5 star presentation for investors in terms of information", where else have you seen a balance sheet with all outgoings presented prior to launch?

Read everything, do due diligence in every investment and you will suddenly start to not make such a loss Wink
full member
Activity: 210
Merit: 100
October 05, 2016, 11:11:36 AM
ICO with 50BTC only? enough to buy few lipsticks for hookers Kiss

give it time. this isn't a project based in advertising like we see every day here... and at the begin silk wallet had some problems, maybe that have scared a few investors.
sr. member
Activity: 368
Merit: 250
October 05, 2016, 10:17:57 AM
ICO with 50BTC only? enough to buy few lipsticks for hookers Kiss
hero member
Activity: 490
Merit: 500
CTO - Silk Network
October 05, 2016, 09:38:38 AM
Community work, such good. This project has it all.

Talking wallet today I reached 8 connections and the new pre release wallet versione is working fine.
I wonder when DNS implementation will be ready.

Do you mean the decentralised DNS?

This is already in Silk and will be getting updates to improve its functionality.

DarkSilk will also launch with the decentralised DNS and the improvements coming to Silks.

The dDNS is a integral part of both coins/wallets/networks.
newbie
Activity: 42
Merit: 0
October 05, 2016, 08:03:17 AM
sorted it
sr. member
Activity: 441
Merit: 251
October 05, 2016, 08:00:45 AM
Community work, such good. This project has it all.

Talking wallet today I reached 8 connections and the new pre release wallet versione is working fine.
I wonder when DNS implementation will be ready.

DNS will be ready from launch.

also i've registered a steemit account to see if that attracts some attention.
first publication is the brochure https://steemit.com/silk-network/@orestes/silk-network-stormnode-brochure
For those who are on this platform and would like to upvote, by my guest  Grin
legendary
Activity: 2310
Merit: 1422
October 05, 2016, 07:53:27 AM
Community work, such good. This project has it all.

Talking wallet today I reached 8 connections and the new pre release wallet versione is working fine.
I wonder when DNS implementation will be ready.
newbie
Activity: 42
Merit: 0
October 05, 2016, 05:55:18 AM
newbie
Activity: 42
Merit: 0
October 05, 2016, 04:40:42 AM
Thanks for taking the time to do a write up. Any idea how to get the PIface CAD to show staking report?
newbie
Activity: 10
Merit: 0
October 05, 2016, 03:33:58 AM
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!
legendary
Activity: 2310
Merit: 1422
October 05, 2016, 02:20:42 AM
It's going to be big. Good to have such media exposure as well.

BC: Why is privacy and anonymity important to your team and development?

SL: Privacy limits the overall power of governments and corporation over individuals and builds trust and respect between the users and Silk Network. Anonymity allows users to conduct freedom of speech, social and political activities. These values are really deeply rooted in the team’s personal values as individuals.

I really agree with the above
full member
Activity: 238
Merit: 100
Tripartite of Silk, DarkSilk and Weaver
October 04, 2016, 07:04:11 PM
sr. member
Activity: 441
Merit: 251
October 04, 2016, 06:29:12 PM
Already at 52 signups on Slack, if you haven't make sure you do!
hero member
Activity: 490
Merit: 500
CTO - Silk Network
October 04, 2016, 10:35:26 AM
When I started the 1.0.1.0 wallet, the address I created this morning with a TON of SLK wasn't there.  I was able to recover by simply using the importprivkey command to import the missing address and recover my SLK.

It more than likely was an issue I induced when doing the upgrade but it made me remember all the stories in the past of people posting they had lost their coins when upgrading or even system crashes, but it made me want to remind everyone to take the extra time to make sure you have your private keys.

We all know where SLK and DSLK are going to go..... TAKE THE TIME AND PROTECT YOUR ASSETS


Good reminder, even though, the way I see it that's the first basic rule to learn when starting exploring the crypto world: understanding and managing our private keys. No keys, no control, no money...easy

Indeed, always be in control.

I have Slk on Bittrex how do I go about downloading the wallet and sending it to the wallet?

https://silk.silknetwork.org Wink
member
Activity: 74
Merit: 10
As you sow, so shall you reap.
October 04, 2016, 10:27:35 AM
When I started the 1.0.1.0 wallet, the address I created this morning with a TON of SLK wasn't there.  I was able to recover by simply using the importprivkey command to import the missing address and recover my SLK.

It more than likely was an issue I induced when doing the upgrade but it made me remember all the stories in the past of people posting they had lost their coins when upgrading or even system crashes, but it made me want to remind everyone to take the extra time to make sure you have your private keys.

We all know where SLK and DSLK are going to go..... TAKE THE TIME AND PROTECT YOUR ASSETS


Good reminder, even though, the way I see it that's the first basic rule to learn when starting exploring the crypto world: understanding and managing our private keys. No keys, no control, no money...easy

Indeed, always be in control.

I have Slk on Bittrex how do I go about downloading the wallet and sending it to the wallet?
full member
Activity: 238
Merit: 100
Tripartite of Silk, DarkSilk and Weaver
October 04, 2016, 06:48:19 AM






---DarkSilk(DSLK) ICO---

Time Period: 10PM EST Friday 23rd September - 10PM EST Sunday 23rd October

DARKSILK(DSLK) LAUNCHES ON THE 5TH OF NOVEMBER 2016

To fund further development and innovation by the Silk Network team, there will be a four week long crowdfunding campaign held on Weaver.

Out of a total 4,000,000 DarkSilk(DSLK) initial fund, there will potentially be 1,528,000 available for sale and the price will not be set (fixed).

Instead, the week with the most demand sets the price (volatility sets price) for the whole of the ICO:

MAX(PRICEWEEK(N) ([AMOUNT] BTC x 4 / 1,528,000 DSLK))

After 4 weeks, price is established and for the amount of BTC that has been raised by an investor, DSLK will be issued through Weaver. There will be a minimum and maximum allowable price:

MIN PRICE: 0.25 USD (Capped)
MAX PRICE: 2.50 USD (Capped)

We set these upper and lower limits to protect both the project against low demand
and investors against high demand to take the following two extreme scenarios into consideration.

Insufficient Demand
Price is set at USD 0.25 and a lot of DSLK will remain as collateral in Weaver.
This protects the project in case market value is negatively disproportionate to our estimated value.

Excess Demand
Price is set at USD 2.50 and DSLK will be sold out in Week(n), for this to happen USD 3,533,500 needs to be raised.



We want to reward early contributors, so there will be four tiers of bonuses; one for each week:

Tier 1: contributors during week one will receive a bonus of 15% more DarkSilk.
Tier 2: contributors during week two will receive a bonus of 10% more DarkSilk.
Tier 3: contributors during week three will receive a bonus of 5% more DarkSilk.
Tier 4: contributors during the last week will not receive a bonus.



How to take part:
1. Signup or Login on Weaver
2. Navigate to Main Menu->Wallet->Addresses
3. Deposit BTC to the "Bitcoin (ICO)" address

Your overview page will then update to show the Bitcoin transaction
and the balance within your Bitcoin(ICO) wallet will also reflect your deposit.

Once per hour the Bitcoin from Weaver is transferred to the 4/6 MultiSig CoPay BTC Wallet
4/6 MultiSig Address: 3P5sqo9JmUPL3Xsf3Zbb9wUi9EyCRnYPcV

ANNOUNCEMENT

Starting the 2nd week of the DarkSilk(DSLK) ICO we will be accepting Silk(SLK) payments at a 25:1 conversion rate.
Having monitored the reception of the DarkSilk(DSLK) ICO and the opening of the Silk(SLK) market on Bittrex we came to the following conclusions:

• The sell pressure in Silk(SLK) has been significant at a $0.01 rate.
• DarkSilk (DSLK) demand reaffirms a $0.25 price point.

To reduce excess Silk(SLK) liquidity on the market and to stabilise its price we will allow for Silk(SLK) payments to be made for the DarkSilk(DSLK) ICO. Greater DarkSilk(DSLK) distribution at a fair price is a welcome benefit. Silk(SLK) payments will not be eligible for bonus receivables.

The process for SLK payments will be the same as for BTC payments.

COMMUNITY INVOLVEMENT

We Want You!
Join us on slack, get involved!



Consumer privacy is an increasingly important subject in the world today. DarkSilk(DSLK) offers its user-base the ability to send digital cash anonymously and instantly. With in-wallet features such as Sandstorm and Stealth Addresses, mixing coins and secure anonymity has never been easier.

The importance of a stable economy is known to us all. The value of DarkSilk will be kept in check using a stabilisation method via Weaver. DarkSilk is balanced by an advanced algorithm that transfers high price impact and price fluctuations to Silk. This method dampens price oscillations by managing DarkSilk supply and using Silk(SLK) as a security asset.

DarkSilk utilises Stormnodes as the 2nd tier of security for the network. Stormnodes pay 0.382DSLK per reward allowing for significant ROI to be achieved. For example, a Stormnode count of 500 nodes would result in a 37.7% ROI. Stormnodes also allow users to propose and vote on budgets. Each month a budgeting block gets distributed to the highest voted proposals. The size of the budgeting block is 10,000DSLK which is a welcoming amount to those projects in need of funding.

If you have any questions, please do not hesitate to ask.









Silk Network White Paper
sr. member
Activity: 441
Merit: 251
October 04, 2016, 05:31:54 AM
When I started the 1.0.1.0 wallet, the address I created this morning with a TON of SLK wasn't there.  I was able to recover by simply using the importprivkey command to import the missing address and recover my SLK.

It more than likely was an issue I induced when doing the upgrade but it made me remember all the stories in the past of people posting they had lost their coins when upgrading or even system crashes, but it made me want to remind everyone to take the extra time to make sure you have your private keys.

We all know where SLK and DSLK are going to go..... TAKE THE TIME AND PROTECT YOUR ASSETS


Good reminder, even though, the way I see it that's the first basic rule to learn when starting exploring the crypto world: understanding and managing our private keys. No keys, no control, no money...easy

Indeed, always be in control.
newbie
Activity: 9
Merit: 0
October 04, 2016, 03:09:38 AM
DARKSILK market performance should be more explosive than the XMR, the participation of ICO in advance
legendary
Activity: 2310
Merit: 1422
October 04, 2016, 02:27:28 AM
When I started the 1.0.1.0 wallet, the address I created this morning with a TON of SLK wasn't there.  I was able to recover by simply using the importprivkey command to import the missing address and recover my SLK.

It more than likely was an issue I induced when doing the upgrade but it made me remember all the stories in the past of people posting they had lost their coins when upgrading or even system crashes, but it made me want to remind everyone to take the extra time to make sure you have your private keys.

We all know where SLK and DSLK are going to go..... TAKE THE TIME AND PROTECT YOUR ASSETS


Good reminder, even though, the way I see it that's the first basic rule to learn when starting exploring the crypto world: understanding and managing our private keys. No keys, no control, no money...easy
hero member
Activity: 490
Merit: 500
CTO - Silk Network
October 03, 2016, 09:53:33 PM
Telegram User?

If not, you should be, download Telegram here - https://telegram.org/

Come & Join Us - https://telegram.me/SilkNetwork

Get the Silk Network Sticker Pack for Telegram - https://telegram.me/addstickers/SNetwork
Pages:
Jump to: