Pages:
Author

Topic: [SKY] Skycoin Launch Announcement - page 56. (Read 381579 times)

jr. member
Activity: 44
Merit: 13
May 08, 2017, 11:19:14 AM
anyone can tell me how to use the meshnet?
jr. member
Activity: 44
Merit: 13
May 08, 2017, 10:54:47 AM
Hi there, is there a way to generate a "cold" wallet? I mean a private/public key combination that I can store in a text file only?


Get client working, generate addresses, then verify that Skycoin transactions are working

For Windows:
   
Install virtual box
get mint with mate desktop
install

Linux:
   
For APT based distributions (Debian, Ubuntu, Mint, ...) type :

sudo apt-get install curl git mercurial make binutils gcc bzr bison libgmp3-dev -y

OSX:
brew install mercurial bzr


Setup Skycoin:

Open a terminal window and type :

git clone https://github.com/skycoin/skycoin.git
cd skycoin
./setup

The last command will install a Go version manager and the current Go version, it will also take care of downloading all the dependencies.
Now it is setup

Generating Addresses, public keys, private keys:

To get help and options for the address generation command type in console :

go run ./cmd/address_gen/address_gen.go --help

To generate 5 addresses deterministically from a password seed :
   
go run ./cmd/address_gen/address_gen.go -seed="passphrase" -n=5

The above command will print the public key, the private key and the address, if you only want to show the addressess put the p and s parameters to false as in :
   
go run ./cmd/address_gen/address_gen.go -seed="passphrase" -n=5 -p=false -s=false
28MZULXF1AdS8AqzDLPvSKCpERuEhMFNXdX
2kRcdyGTH7gUhq1N4S1kvXUYvgVPA8qdXWS
2e7YTGxJAc3GSNYtTY9mRygBSkQ9dnHSc8Z
W5Cw36K3skzr9whCDuMTgxLA4kFrWJn32f
4R6sGi7ktSJyyKNRHuc7izvgRHJwfu6das

Deterministic wallets are good, because you cannot lose the private keys as long as you remember the password. however, you should use a good password, or a random SHA256 hash and write it down somewhere

A good password may be some (more than 12) space separated random words, this is both strong and convenient for storage purposes (printed), it will also be easier to type if required at some point. Please do note that in the example code passphrase is used, but wouldn't be a good password candidate.

Running Skycoin Full Node:
   
go run ./cmd/skycoin/skycoin.go -web-interface=true
then goto: 127.0.0.1:6420
     
./run.sh


also, to generate wallets and pubkeys
go run ./cmd/address_gen

to run wallet (which is probably broken)
./run.sh

API endpoints

...

Troubleshooting FAQ

...


setup.sh:
#!/usr/bin/env bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
pushd "$DIR/compile" >/dev/null
# Install gvm
echo "Installing gvm and go1.4"
./install-gvm.sh
[[ -s "$HOME/.gvm/scripts/gvm" ]] && source "$HOME/.gvm/scripts/gvm"
gvm use go1.4
# Add to $GOPATH
echo "Installing skycoin to \$GOPATH"
./install-to-gopath.sh
# Install dependencies
echo "Installing or updating skycoin dependencies"
./get-dependencies.sh
echo "Done"
echo "Do './run.sh -h' to confirm it is installed. This runs the daemon."
echo "README.md has further instructions for building and running the gui."
popd >/dev/null


Addresses for test coins:
   
    hduEBXBtVcUyWy2iEmZaJ7fghN1ekqufsQ
    wHsKo9wwv2o9P8N3oXgEAKN4ks5RZZVhgZ




By this way, you can get a cold wallet, you just need to generate the address offline, and backup the seed and address.
jr. member
Activity: 44
Merit: 13
May 08, 2017, 10:53:19 AM
Hi there, is there a way to generate a "cold" wallet? I mean a private/public key combination that I can store in a text file only?


Get client working, generate addresses, then verify that Skycoin transactions are working

For Windows:
    
Install virtual box
get mint with mate desktop
install

Linux:
    
For APT based distributions (Debian, Ubuntu, Mint, ...) type :

sudo apt-get install curl git mercurial make binutils gcc bzr bison libgmp3-dev -y

OSX:
brew install mercurial bzr


Setup Skycoin:

Open a terminal window and type :

git clone https://github.com/skycoin/skycoin.git
cd skycoin
./setup

The last command will install a Go version manager and the current Go version, it will also take care of downloading all the dependencies. 
Now it is setup

Generating Addresses, public keys, private keys:

To get help and options for the address generation command type in console :

go run ./cmd/address_gen/address_gen.go --help

To generate 5 addresses deterministically from a password seed :
    
go run ./cmd/address_gen/address_gen.go -seed="passphrase" -n=5

The above command will print the public key, the private key and the address, if you only want to show the addressess put the p and s parameters to false as in :
    
go run ./cmd/address_gen/address_gen.go -seed="passphrase" -n=5 -p=false -s=false
28MZULXF1AdS8AqzDLPvSKCpERuEhMFNXdX
2kRcdyGTH7gUhq1N4S1kvXUYvgVPA8qdXWS
2e7YTGxJAc3GSNYtTY9mRygBSkQ9dnHSc8Z
W5Cw36K3skzr9whCDuMTgxLA4kFrWJn32f
4R6sGi7ktSJyyKNRHuc7izvgRHJwfu6das

Deterministic wallets are good, because you cannot lose the private keys as long as you remember the password. however, you should use a good password, or a random SHA256 hash and write it down somewhere

A good password may be some (more than 12) space separated random words, this is both strong and convenient for storage purposes (printed), it will also be easier to type if required at some point. Please do note that in the example code passphrase is used, but wouldn't be a good password candidate.

Running Skycoin Full Node: 
    
go run ./cmd/skycoin/skycoin.go -web-interface=true
then goto: 127.0.0.1:6420
     
./run.sh


also, to generate wallets and pubkeys
go run ./cmd/address_gen

to run wallet (which is probably broken)
./run.sh

API endpoints

...

Troubleshooting FAQ

...


setup.sh:
#!/usr/bin/env bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
pushd "$DIR/compile" >/dev/null
# Install gvm
echo "Installing gvm and go1.4"
./install-gvm.sh
[[ -s "$HOME/.gvm/scripts/gvm" ]] && source "$HOME/.gvm/scripts/gvm"
gvm use go1.4
# Add to $GOPATH
echo "Installing skycoin to \$GOPATH"
./install-to-gopath.sh
# Install dependencies
echo "Installing or updating skycoin dependencies"
./get-dependencies.sh
echo "Done"
echo "Do './run.sh -h' to confirm it is installed. This runs the daemon."
echo "README.md has further instructions for building and running the gui."
popd >/dev/null


Addresses for test coins:
    
    hduEBXBtVcUyWy2iEmZaJ7fghN1ekqufsQ
    wHsKo9wwv2o9P8N3oXgEAKN4ks5RZZVhgZ

hero member
Activity: 952
Merit: 501
May 08, 2017, 03:38:42 AM
also maybe more exchange platforms?
hero member
Activity: 952
Merit: 501
May 08, 2017, 03:31:27 AM
Can someone explain me how blocks work in Skycoin?

The time between them is so random.





Ask a dev on telegram.

when you have a transactions, then you have a block, otherwise, no block.
hero member
Activity: 1008
Merit: 500
May 07, 2017, 06:57:34 AM
Can someone explain me how blocks work in Skycoin?

The time between them is so random.





There is no POW or POS blocks are only generated when they are needed. Synth can probably explain more.
sr. member
Activity: 369
Merit: 250
May 07, 2017, 03:29:48 AM
Can someone explain me how blocks work in Skycoin?

The time between them is so random.





Ask a dev on telegram.
sr. member
Activity: 422
Merit: 250
May 07, 2017, 02:24:20 AM
Can someone explain me how blocks work in Skycoin?

The time between them is so random.



hero member
Activity: 868
Merit: 1000
May 05, 2017, 02:59:49 PM
Also is it possible to password protect our wallets? I don't see the option.
member
Activity: 81
Merit: 10
May 05, 2017, 07:03:25 AM
Hi there, is there a way to generate a "cold" wallet? I mean a private/public key combination that I can store in a text file only?
legendary
Activity: 1148
Merit: 1000
May 05, 2017, 05:58:39 AM
still one of the most innovative project in crypto world.

should already as high as LTC.

just timing.
member
Activity: 81
Merit: 10
May 05, 2017, 03:28:49 AM
Fasten your seatbelts... I'm going to buy today  Cheesy
hero member
Activity: 868
Merit: 1000
May 04, 2017, 10:04:29 PM
Fuck distribution, moon regardless.

About that...

Developement needs to occur first before we can moon. Also we need a high volume exchange.
legendary
Activity: 1138
Merit: 1001
May 04, 2017, 06:05:04 PM
Fuck distribution, moon regardless.

About that...
sr. member
Activity: 632
Merit: 250
May 04, 2017, 02:47:55 PM
I would love to see skycoin on bittrex.
hero member
Activity: 868
Merit: 1000
May 04, 2017, 02:42:31 PM
Price taking a big hit. 2nd ico investors are at a significant loss now.
legendary
Activity: 2124
Merit: 1013
K-ing®
May 04, 2017, 11:55:29 AM
we need ''better'' exchanges (top ones)

and some PR

We got one of the best coins and dev team, but we need some marketing
jr. member
Activity: 44
Merit: 13
May 04, 2017, 08:40:45 AM
There are too much discussion about the shit distribution, but the devs think there is no better one.
member
Activity: 86
Merit: 10
May 04, 2017, 06:13:41 AM
Submission idea for sky coin..

skywire hours token is used on the network for time on the network

skywire token has a fixed price and fixed supply, only release on future ICO as a bonus

or if the skywire supply= 0

skycoin developer team use skycoin supply as backing coin for the skywire token..


eg. skywire hours fixed price 10cents each= 1 hours of use.
      Skycoin fiat price is a dollar USD

(convert)   one skycoin = 10 skywire hours

So if the price of skycoin decreases the skyteam  would need to pay out more skycoin when the people converting skywire to skycoin..

eg. skycoin at .50 cents and skywire fixed price at 10cents usd..

(convert) 10 skywire tokens = 2 sky coins now..

This method would need skycoin team to lockup skycoin insurance against the variable skycoin price..

They win if skycoin is higher when people converting back to skycoin and loose when it is lower..

ICO raised 5million coin supply, they could airdrop 1 million skywire hours tokens.. and back it with their own supply..



Here is the genius of the ICO.. next following ones could also give the buyers x amount of skywire coins.. but not for the developers being paid skycoin..


next ICO could raise another million skycoin and also give the bonus of skywire coins of 250k...


There was some talk of doing award system in skywire token for holding skycoin... I believe doing so you have just destroy the famous no POS or POW system...


I submit this feature instead and let the running nodes get the rewards for making the network run fast.. a special nodes just for pushing data holding data should get rewards..   again the rich would not win for just hoarding coins..


Additional comment..

question what would be the economics of having a fiat stable  skycoin to a fixed priced token..

skycoin would have a better price because coin would be locked up in skywire hours because when skywire price increases on the market skywire token becomes cheaper then in protecting the value one would would lock in the skycoin pric by converting into skywire wire token..

(skywire would have to have a time lock like steam power for x amount of days..)

This would cause the effect of people not dumping skycoin on a panic sells in the market, and encourage longer term investment..

The only coin that has this function would be only skycoin... If we started to add bitcoin gateway into the mix this would be very bad for skycoin.. I remember STORJ doing something like this...

BTC would need a market price convert into skycoin...

By doing this the market would be confident that skycoin developers are not on a get rich scheme holding onto 90% of the coins..

but backing and risking their own supply by giving investor a price for their skycoin..


Talk is always cheap, actions speak louder then words...


like others I have btc waiting in other coins, good project maybe but a year is long time in the crypto world to wait and see..

our profit is slipping away everyday because loss of confidence of the value of skycoin..












sr. member
Activity: 527
Merit: 250
May 04, 2017, 05:01:34 AM
Lol, based on gnosis price this can still moon  Grin
Pages:
Jump to: