Wednesday, December 12, 2018

How to convert private key to mnemonic ethereum

The easy way is to use medooza wallet .
Go to the ETH and press on "Export"

Enter the wallet password
Unlock and Print


Thursday, November 29, 2018

How to easily store and transfer Aurora DAO token with medooza wallet

How to easily store and transfer Aurora DAO token with medooza wallet

Following is simple steps to store ,manage and transfer Aurora Coins. I found a quick and safe way to hold outside off IDEX 
  1. Sign up to medooza wallet https://wallet.medooza.network - this wallet is secure , since no privet keys stored on that wallet.This means You need to keep keys at your own secure place:
  2. Now , go to "add wallet"
  3. Then "create custom ERC20token"
  4. According to Etherscan , the Aurora DAO tocken is 
    https://etherscan.io/address/0xcdcfc0f66c522fd086a1b725ea3c0eeb9f9e8814 . 
  5. Copy paste the contract address , if all valid , You will see all other fields filed automatically with all relevant data
  6. Now , you can import you own or create new one, send or receive foodcoin with medooza wallet.
  7.  Simple , fast , secure.

How to easily store and transfer Funfair coin with medooza wallet

Following is simple steps to store ,manage and transfer Funfair Coins.

  1. Sign up to medooza wallet https://wallet.medooza.network - this wallet is secure , since no privet keys stored on that wallet.This means You need to keep keys at your own secure place:
  2. Now , go to "add wallet"
  3. In the search , type "fun"
  4. Now , You can create new one 
  5. or import exists by using Recovery Phrase , Private key or json file 
  6. send or receive Funfair coin with medooza wallet at lowest fee.
  7.  Simple , fast , secure.

Friday, November 23, 2018

Universal crypto web wallet for WePower (WPR) token

Following is simple steps to store ,manage and transfer WePower (WPR) token.

  1. Sign up to medooza wallet https://wallet.medooza.network - this wallet is secure , since no privet keys stored on that wallet.This means You need to keep keys at your own secure place:
  2. Now , go to "add wallet"
  3. Then "create custom ERC20token"
  4. We need the WePower (WPR) token smart contract address: https://etherscan.io/address/0x4CF488387F035FF08c371515562CBa712f9015d4 , copy paste the contract address , if all valid , You will see all other fields filed automatically with all relevant data
  5. Now , you can import you own or create new one, send or receive WePower (WPR) token with medooza wallet.
  6.  Simple , fast , secure and very low transaction fee.

Tuesday, November 20, 2018

How to easily store and transfer FoodCoins with medooza wallet

Following is simple steps to store ,manage and transfer FoodCoins.

  1. Sign up to medooza wallet https://wallet.medooza.network - this wallet is secure , since no privet keys stored on that wallet.This means You need to keep keys at your own secure place:
  2. Now , go to "add wallet"
  3. Then "create custom ERC20token"
  4. According to FoodCoins site https://www.foodcoin.io/contract-help , copy paste the contract address , if all valid , You will see all other fields filed automatically with all relevant data
  5. Now , you can import you own or create new one, send or receive foodcoin with medooza wallet.
  6.  Simple , fast , secure.

Wednesday, June 27, 2018

How to add FEDERATION_SERVER to stellar.toml

The important to define the FEDERATION_SERVER  before any others sections
# stellar.toml example asset
# Federation service provided by StellarID.io
FEDERATION_SERVER="https://stellarid.io/federation/"
[[CURRENCIES]]
code="GERSH"
issuer="GD5NE236O2MQTHADAU3T5JNDKAEV2HCCR75MBISLNMG6IRTKI3M26UCK"
display_decimals=8
name="Gershon Test"
desc="1 GERSH token entitles you to a share of revenue from Elkins Goat Farm."
conditions="There will only ever be 200000000 GERSH tokens in existence. The 100000000 will be distributed as 2500000 accross 5 years"
image="https://crypto-il.club/crypto_il-logo.png"

Wednesday, June 20, 2018

Node.js redis over SSL Connection Examples

var redis = require('redis');
var tls = require('tls');
var fs = require('fs');

var ssl = {
key: fs.readFileSync("private.key",encoding='ascii'),
cert: fs.readFileSync("user.crt",encoding='ascii'),
ca: [ fs.readFileSync("ca.pem",encoding='ascii') ],
rejectUnauthorized: false
};
var options = {
tls: ssl,
password:'xxxxxx'
};

var client = redis.createClient([the redis port], '[The redis url]', options);

try {
client.on('connect', function() {
console.log('Connected to Redis');
});
}
catch (e) {
console.log('1' + e)
}
console.log('here')

try{
client.set("foo", "bar", redis.print);
}
catch (e){
console.log('2' + e)
}
try{
client.get("foo", function (err, reply) {
if (err) throw err;
console.log(reply.toString());
});}
catch (e) {
console.log('3' + e)
}

try{
client.on('reconnecting', function() {
console.log('Connected to Redis');
});
}
catch (e) {
console.log('4' + e)
}

Thursday, June 14, 2018

Error when installing electron wallet on windows

The firs step is define the missing elements:
# npm list

npm ERR! peer dep missing: electron-builder-lib@~20.15.0, required by electron-builder-squirrel-windows@20.15.0
then install the missing
# npm install electron-builder-lib