keybase.txt

==================================================================
https://keybase.io/melea
——————————————————————–

I hereby claim:

* I am an admin of https://meleatrust.com
* I am melea (https://keybase.io/melea) on keybase.
* I have a public key ASBIAn_ObTnHzDdOLzitj0-xU7n48S5qhuMBU3fsanEYPQo

To do so, I am signing this object:

{
“body”: {
“key”: {
“eldest_kid”: “012048027fce6d39c7cc374e2f38ad8f4fb153b9f8f12e6a86e3015377ec6a71183d0a”,
“host”: “keybase.io”,
“kid”: “012048027fce6d39c7cc374e2f38ad8f4fb153b9f8f12e6a86e3015377ec6a71183d0a”,
“uid”: “8f910701e4b0c56b9114352403b7b919”,
“username”: “melea”
},
“merkle_root”: {
“ctime”: 1529419088,
“hash”: “fb784a15c249b30661dba1c2c4a65aa7739b6070ba5bc3170f55fd185fca965757d825111ecbb8c07236f8d0e93fc2ee19a7dfa7c881f04ac22698361973f9ee”,
“hash_meta”: “f99f5b2e8a98c393b691a974d464f32bfbd872bd2fd94483a3356b5be1df5036”,
“seqno”: 3104415
},
“service”: {
“entropy”: “5pyG7ES2dm2hDyJiTO5Vu+lt”,
“hostname”: “meleatrust.com”,
“protocol”: “https:”
},
“type”: “web_service_binding”,
“version”: 2
},
“client”: {
“name”: “keybase.io go client”,
“version”: “1.0.49”
},
“ctime”: 1529419115,
“expire_in”: 504576000,
“prev”: “97b1972936c6a61b043e484e269f4cbb936f9c94cacff13ef1e9ab9714cfade3”,
“seqno”: 37,
“tag”: “signature”
}

which yields the signature:

hKRib2R5hqhkZXRhY2hlZMOpaGFzaF90eXBlCqNrZXnEIwEgSAJ/zm05x8w3Ti84rY9PsVO5+PEuaobjAVN37GpxGD0Kp3BheWxvYWTESpcCJcQgl7GXKTbGphsEPkhOJp9Mu5NvnJTKz/E+8emrlxTPrePEINImiFnmdLmzpxfdqzyyhzXeeq3nd+/nK8x+Haj/dKrtAgHCo3NpZ8RAWkVBgepGULcOYYj8FrYAGfBcQdXAbIVW37TWcNrJw2rBTCWTx5/1hT1j0+UaWFaM/lX6NAAo7NFIS9vH8BS5CKhzaWdfdHlwZSCkaGFzaIKkdHlwZQildmFsdWXEIDy8e4z+rucaNyn5aT1FDslcoiM6EQTViJWj1Z3WPL8vo3RhZ80CAqd2ZXJzaW9uAQ==

And finally, I am proving ownership of this host by posting or
appending to this document.

View my publicly-auditable identity here: https://keybase.io/melea

==================================================================

Cosmos Tuto

Screenshot from 2018-06-09 21-02-45.png

Cosmos Testnest Gaia-6002 its alive,

Screenshot from 2018-06-10 03-36-00.png

Come to enjoy the testnet and run your own Node in the Cosmos Blockchain and build one Validator Node.

Official info about, Cosmos

https://cosmos.network/intro

https://twitter.com/cosmos_hq

https://twitter.com/cosmosvalidator

Later i cant edit this post, for that remember for update go to official Cosmos Repo or my web if was deprecated.

http://melea.es/cosmos-tuto/
https://github.com/cosmos/cosmos-sdk/tree/master/cmd/gaia/testnets

Ok, now you have clear what is Cosmos, and you know is going to be huge, maybe you want to run your node and if you have the skills and the time for be a Validator, try to be one of the list. I am in the list.

Screenshot from 2018-06-07 01-47-40.png

If you only want explore your skills you can run your node in home.

If your intentions is going to be one day one Validator, rent a server in one data center.
The node need high security and 24x7x365 days support.

Is not a game, is a serious job. Become a Validator. Have a lot responsabilitis, please red the Fac.

https://cosmos.network/validators/faq

Are you ready?

lest do it.

Talking in what you need for build your Own node.

Hardware for your Server:

2 Cores
2mb Ram
20 Gb Disc

Software
Ubuntu 16.04

Can start with one VPS and when the chain grow changed for one dedicated server and more.

I recommended for your server

Create new sudo user
Changed the ssh port from 22 to another port.
Block ROOT in ssh
active Firewall Open port 46656, 46657, and the port you choice for the SSH.


Now you are connected to your ubuntu server with the new user no like ROOT, and have connected in other port different to 22 if you don’t gonna get REKT.

Ok, Now time to build.

First you need install Golang and some tools.

sudo apt update

sudo apt upgrade -y

sudo apt-get install screen vim make wget git

wget -c 'https://dl.google.com/go/go1.10.3.linux-amd64.tar.gz' -O go1.10.3.linux-amd64.tar.gz

sudo tar -C /usr/local -xzf go1.10.3.linux-amd64.tar.gz

sudo rm -Rf go1.10.3.linux-amd64.tar.gz


go version
The program 'go' is currently not installed. You can install it by typing:
sudo apt install golang-go

#BEWARE Is installed but you need firts

Set GOPATH

go for

vi $HOME/.profile

Screenshot from 2018-06-09 22-16-41.png

Add this lines to your file:
PATH="$PATH:/usr/local/go/bin"
GOPATH="$HOME/go"
PATH="$PATH:$GOROOT/bin:$GOPATH/bin"

Like

Screenshot from 2018-06-09 22-24-25.png

Safe your file

reload your profile setup

source $HOME/.profile


go version
go version go1.10.3 linux/amd64

Now you can run Golang commands in your server. 😉

Time to Build Cosmos Node

Screenshot from 2018-06-09 19-19-24.png

Install Gaia

go get github.com/cosmos/cosmos-sdk

git checkout v0.19.0

make get_tools

make get_vendor_deps

make install

gaiad version 
0.19.0-c671181

gaiacli version

0.19.0-c671181

#Gaia is install, now is time to update the genesis file for gaia-6001

mkdir -p $HOME/.gaiad/config

gaiad init --name <WRITE-HERE-ONE-NAME-FOR-YOUR-VALIDATOR>

rm $HOME/.gaiad/config/genesis.json

cp -a go/src/github.com/cosmos/cosmos-sdk/cmd/gaia/testnets/gaia-6002/genesis.json $HOME/.gaiad/config/genesis.json


sudo vi .gaiad/config/config.toml

Write one name for your Validator Node

A custom human readable name for this node

moniker = “Write-validator-name”

Screenshot from 2018-06-09 23-48-01.png

add this persistent_peers

persistent_peers = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6002.coinculture.net:46656,80a35a46ce09cfb31ee220c8141a25e73e0b239b@seed.cosmos.cryptium.ch:46656,80a35a46ce09cfb31ee220c8141a25e73e0b239b@35.198.166.171:46656,032fa56301de335d835057fb6ad9f7ce2242a66d@165.227.236.213:46656"

.

Like

Screenshot from 2018-06-10 00-27-37.png

Now open one screen

screen -S cosmosvalidator

gaiad start

Screenshot from 2018-06-10 00-29-47.png

This is your node synchronizing the blockchain

open new windows with screen command

(Ctrl + a + c)

gaiacli status

Screenshot from 2018-06-10 00-31-28.png

this show the last block your node is sync true, because is not ready yet. see the time in last block and wait sync: false.

When the node is sync:false is time to open your account in Cosmos

gaiacli keys add <write-one-name-for-your-account> =<key_name>

Example

gaiacli keys add meleatuto

Check your private keys

  gaiacli keys show meleatuto

All your available keys

  gaiacli keys list

Save your address and pubkey to environment variables for later use:

MYADDR=<your_newly_generated_address>
MYPUBKEY=<your_newly_generated_public_key>

Screenshot from 2018-06-10 00-36-53.png

ok, now safe this data in one paper or where do you think is safe for the future of your family.

this is Your Cosmos testnets address

cosmosaccaddr14tn99z33qa3hc36zcux3lk4dwd7psdxwfghld4

Go to

https://faucetcosmos.network/

Claim some free steaks (steak is the token in testnet)

Screenshot from 2018-06-10 00-42-35.png

Check the balanced in your account now

gaiacli account cosmosaccaddr14tn99z33qa3hc36zcux3lk4dwd7psdxwfghld4

Screenshot from 2018-06-10 00-52-20.png

Now you have 1 steak in your balance and 10 FaucetToken

Congratulations your node is working and your account too.

Send Tokens

gaiacli send --amount=1steak --chain-id=<name_of_testnet_chain> --name=<key_name> --to=<destination_address>

Now maybe you want to run one Validator Node

Screenshot from 2018-06-10 05-24-19.png

Upgrade account to Validator

Screenshot from 2018-06-10 02-11-16.png

gaiad tendermint show_validator = (-pubkey=<your_node_pubkey>)

cosmosvalpub1zcjduc3q7gtarxhztvtwlke52ja44s6jzhgg6eh0usftsv6es25ruksy9v6s39r2jr


gaiacli stake create-validator --amount=1steak --pubkey=<your_node_pubkey> --address-candidate=<your_address> --moniker=satoshi --chain-id=<name_of_the_testnet_chain> --sequence=1 --name=<key_name>

Write your own data like

gaiacli stake create-validator --amount=1steak --pubkey=cosmosvalpub1zcjduc3q7gtarxhztvtwlke52ja44s6jzhgg6eh0usftsv6es25ruksy9v6s39r2jr --address-validator=cosmosaccaddr14tn99z33qa3hc36zcux3lk4dwd7psdxwfghld4 --moniker=meleatuto --chain-id=gaia-6001 --sequence=0 --name=meleatuto

You can add more information to the validator, such as–website, –keybase-sig, or –details. Here’s how:

gaiacli stake edit-validator --details="To the cosmos !" --website="https://cosmos.network"

Screenshot from 2018-06-10 01-44-45.png

#Delegate your tokens and Active your Validator

Bond Tokens

On the testnet, we delegate steak instead of atom. Here’s how you can bond tokens to a testnet validator:

gaiacli stake delegate --amount=10steak --address-delegator=<your_address> --address-validator=<bonded_validator_address> --name=<key_name> --chain-id=<name_of_testnet_chain>

While tokens are bonded, they are pooled with all the other bonded tokens in the network. Validators and delegators obtain a percentage of shares that equal their stake in this pool.

Unbond Tokens

If for any reason the validator misbehaves, or you want to unbond a certain amount of tokens, use this following command. You can unbond a specific amount ofshares(eg:12.1) or all of them (MAX).

gaiacli stake unbond --address-delegator=<your_address> --address-validator=<bonded_validator_address> --shares=MAX --name=<key_name> --chain-id=<name_of_testnet_chain>

You can check your balance and your stake delegation to see that the unbonding went through successfully.

gaiacli account <your_address>
gaiacli stake delegation –address-delegator=<your_address> –address-validator=<bonded_validator_address> –chain-id=<name_of_testnet_chain>

View the validator’s information with this command:

gaiacli stake validator --address-validator=<your_address> --chain-id=<name_of_the_testnet_chain>

To check that the validator is active, look for it here:

gaiacli advanced tendermint validator-set

Congratulations, Now you have your Validator running and need go to Validator Official chat and present yourself and your intentions in the Cosmos Blockchain

https://riot.im/app/#/room/#cosmos_validators:matrix.org

Remember that it is a testnet network, prior to the launch of the real network. you must be connected to the official chat to be able to make the updates and the necessary changes in your server. The next post will be how to update the software when the new version comes out.

Well

I hope you can be a good validator fo the Cosmos Blockchain.

My Cosmos Validator infrastructure

http://cosmos-trust.com/

NOTED:
Later i cant edit this post for the new testnets go to
Here the Tuto is update,

http://melea.es/cosmos-tuto/

Happy Validating

http://melea.es/contac/

$PPI is not $PPY

#Peerplays $PPY is not $PPI

#Crypto Trade $PPY on Rudex

https://market.rudex.org/#/market/PPY_BTS

Rudex is DEX no need KYC or any verifications. You hold your coins not the exchange.

Trade on DEX and be Happy. Support works 100×100. I recommended and trust in Rudex.

https://coinmarketcap.com/currencies/peerplays-ppy/

Happy trades.

melea

Litecoin on Bitstamp it’s alive ” LTC/BTC – LTC/USD – LTC/EUR “

Steemit Post Clic here

 

Since June 19 the LTC trading is available on the platform Bitstamp, one of my favorites exchanges and where I buy my firsts BTC. In  Bitstamp you can buy or deposit with your credit card if it is available in your  country of residence  or the usual deposit methods, and make withdrawals to your Dedit Card Master  Card, direct from the exchange or the usual withdrawals.

 

 I recommend Bitstamp without any doubt.

Litecoin; You are welcome!

melea = trust

Happy Trades!

Btc Segwit vs VB twitter