Bitcoin Forum
May 28, 2024, 05:15:57 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: December 12, 2017, 02:56:23 PM
can you release a guide to DIY skycoin miner.

The bitcoin price is too high, some people cant afford it, but they like skycoin and want to run the miner.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: December 12, 2017, 02:55:00 PM
Hey,

are people using skycoin desktop wallet for windows?? how good is it? Is it good place to keep your coins? And is it possible to store wallet for the external hardware??
Sory, im new in these things... What happens if i loose my computer or it goes broken, is there a change to still have my coins somehow or are they lost forever??



Smiley Yeah, this project seems to be very interesting..  Im looking forward to see what this brings to the world Smiley Hopefully more freedom for the people Smiley Greetings from finland.

Smiley



please store your private key or seed safely
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: November 27, 2017, 12:12:10 PM
Update:

The Skycoin mobile wallet is finally up


but where to download it?

4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: May 08, 2017, 04:19:14 PM
anyone can tell me how to use the meshnet?
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: May 08, 2017, 03:54:47 PM
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.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: May 08, 2017, 03:53:19 PM
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

7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: May 04, 2017, 01:40:45 PM
There are too much discussion about the shit distribution, but the devs think there is no better one.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: March 05, 2016, 01:27:31 AM
各位中国skycoin爱好者,

前几天我们中国的skycoin群被群主莫名解散,为方便大家讨论交流skycoin及类似新币,本人(微博:演闻先生)重新建一QQ群,群号538010045

个人建议:多做 技术前景 及 商业前景讨论,不要过度沉迷于价格涨跌

本人是长期虚拟货币爱好者,随时等待各位网友交流讨论(QQ:397660685)
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: December 21, 2015, 12:52:34 PM
When can we see the code?
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: February 11, 2015, 10:23:32 AM

@Dev: Will we get at least a comment?


He is the man of few words :-))) he doesn't like to talk a lot.

Anyway, I have been reading his updates, reports and observations for a year in this thread and I think the Skycoin dev is one of the best in crypto. He is easily in the league of Vitalik Buterin, Peter Todd or Dan Larimar (BitShares).

Personally for me is not about for the possible return and profit from the IPO, ICO or whatever the fuck is this - I am just happy to support the development on a crowd funding basis. If he deliver just 10% of the tech he promises then crypto will gain a lot from this project, so I think all crypto enthusiasts could support this project, without any worries.

I hope the wanna be rich high school brigade and similar caliber and mentality investors that want to get rich quickly by investing their 1-2 BTC lunch money and then pathetically waiting the pump - as we witnessed it with many coins in the past - will stay away from this coin and give time/peace for the dev to deliver.

I cant agree with you any more
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: February 05, 2015, 01:30:34 AM
How about the IPO date? So many delays.

I am waiting for Bitcoin to hit $200.

what do you really need? skycoin? Bitcoin? USD?
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: January 21, 2015, 12:40:53 AM
My address is :

3LDSoCqJegCiQ6ajPVHokHdzw1vWHc7Yvr
afuVH3bhjnjnu3zywCTsrVV5Dtg928QxFb
2SdVJeJdarx7cxkeyenPtZAcG4HF3rGSA7C
D3VgbUcS8YYBZZuAqEzBB4Lu4RmEuS8yBg
7iotbfpdZUH2GsSZVE3ofp7uhwAG8sikcf


When Can I test?
13  Alternate cryptocurrencies / Altcoin Discussion / Re: Untraceable cryptocurrency ( Poll ) on: December 25, 2014, 11:40:45 AM
DarknetSpace
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BXSX] BOUNTYSHARES - Created For Merchants, Developers And Bounty Hunters... on: December 25, 2014, 01:49:13 AM
where is the community?
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BXSX] BOUNTYSHARES - Created For Merchants, Developers And Bounty Hunters... on: December 24, 2014, 12:26:41 PM
Is the community decentralized or not?
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: December 24, 2014, 11:57:55 AM
Why not use Counterparty
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: December 13, 2014, 02:11:44 PM
why not push the new code to github
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: December 03, 2014, 02:27:55 PM
# command-line-arguments
cmd/skycoin/skycoin.go:202: cannot use "github.com/skycoin/skycoin/src/cipher".MustPubKeyFromHex("02b0333bd8f1910663b8b1f60fb2e154b70436a2c19efb79cdbdf09bf9bb2056dc") (type "github.com/skycoin/skycoin/src/cipher".PubKey) as type string in field value
cmd/skycoin/skycoin.go:203: unknown Config field 'BlockchainSeckey' in struct literal
cmd/skycoin/skycoin.go:412: cannot use c.BlockchainPubkey (type string) as type "github.com/skycoin/skycoin/src/cipher".PubKey in argument to "github.com/skycoin/skycoin/src/cipher".AddressFrom
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN][GEMS]| SOCIAL MESSAGING APP THAT REWARDS ITS USERS |Gems public sale| on: November 24, 2014, 02:10:07 PM
is the IM decentralised?Huh?
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: November 24, 2014, 08:35:09 AM
when the alpha testing start?
I like the distributed market idea
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!