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

Friday, December 29, 2017

How to mine LBTC - LiteBitcoin by using CPU

Set-up Procedure

# dependencies
 $ sudo apt-get update 
 $ sudo apt-get install git
 $ sudo apt-get install automake
 $ sudo apt-get install gcc
 $ sudo apt-get install g++

 # Compilation dependencies
$ sudo apt-get install libcurl4-openssl-dev
$ sudo apt-get install libssl-dev
  
# Switch to our home directory
$ cd /home/ubuntu/
  
# Download latest source
$ git clone https://github.com/tpruvot/cpuminer-multi
$ cd cpuminer-multi

  
# Compile
~/cpuminer-multi $ ./autogen.sh
~/cpuminer-multi $ ./configure --with-crypto --with-curl
 ~/cpuminer-multi $ make
  
# Test
~/cpuminer-multi $ ./cpuminer --cputest
  
# Run miner
~/cpuminer-multi $ ./cpuminer -a cryptonight -ostratum+tcp://168.235.67.167:3008 -u [Your wallet address] -p x --api-bind 0

# Chek
Here http://168.235.67.167:8081/workers You can search for Your wallet ans see the worker status

Monday, November 20, 2017

Chrome canary want to start

After spending hours to find solutions i'm writing this post.
Chrome canary Version 64.0.3273.3 (Official Build) canary (64-bit) after upgrade want to start at all.
reinstall and window reboot wasn't help.
from debug log the error as following:
[1119/204105.812:ERROR:main_dll_loader_win.cc(134)] Failed to load Chrome DLL from C:\Users\GershonA\AppData\Local\Google\Chrome SxS\Application\64.0.3273.0\chrome.dll: The specified module could not be found. (0x7E)
[1119/204143.885:ERROR:main_dll_loader_win.cc(134)] Failed to load Chrome DLL from C:\Users\GershonA\AppData\Local\Google\Chrome SxS\Application\64.0.3273.0\chrome.dll: The specified module could not be found. (0x7E)
[1119/205239.003:ERROR:main_dll_loader_win.cc(134)] Failed to load Chrome DLL from C:\Users\GershonA\AppData\Local\Google\Chrome SxS\Application\64.0.3273.0\chrome.dll: The specified module could not be found. (0x7E)
[1119/210213.953:ERROR:main_dll_loader_win.cc(134)] Failed to load Chrome DLL from C:\Users\GershonA\AppData\Local\Google\Chrome SxS\Application\64.0.3273.0\chrome.dll: The specified module could not be found. (0x7E)

[1119/224059.389:ERROR:main_dll_loader_win.cc(134)] Failed to load Chrome DLL from C:\Users\GershonA\AppData\Local\Google\Chrome SxS\Application\64.0.3273.0\chrome.dll: The specified module could not be found. (0x7E)

The problem is Windows Defender , after disabling "check apps and file" Chrome canary is started.
But i guess there is more Serious problem , probably malware.