ObservantOne Posted May 16, 2017 Share Posted May 16, 2017 Okay, so I can see the link to the Jatchili client, which I think is cool. But I am about to install Ubuntu on a fresh HDD and I'd like to have an offline-wallet on this PC. I cannot find a walkthrough regarding what to do AFTER you install Linux. Do i create a Virtual machine and have my wallet on THAT? I am so damn lost! Nor can I find a tutorial on how to transfer XRP to an exchange from the offline-wallet without the offline-wallet EVER touching the internet. Can someone PLEASE write up an article on what to do, step-by-step, so that those of us who need it? I know it would be greatly appreciated. Remember: I know what a cold-wallet is, but I want an offline wallet. Also, I'd like to use my two Ledger nano-s wallets as a backup for my PC wallet. Any help is appreciated! midair77 1 Link to comment Share on other sites More sharing options...
Dsimmo Posted May 16, 2017 Share Posted May 16, 2017 Run the following code in node. You'll have to install ripple-lib using npm first. const RippleAPI = require('ripple-lib').RippleAPI; const api = new RippleAPI({ server: 'wss://s1.ripple.com' // Public rippled server hosted by Ripple, Inc. }); api.on('error', (errorCode, errorMessage) => { console.log(errorCode + ': ' + errorMessage); }); api.on('connected', () => { console.log('connected'); }); api.on('disconnected', (code) => { // code - [close code](https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent) sent by the server // will be 1000 if this was normal closure console.log('disconnected, code:', code); }); api.connect().then(() => { var options = {entropy: []}; for (var i = 0; i<=1023;i++){ options.entropy = Math.floor(255*Math.random()) } console.log( api.generateAddress(options)); }).then(() => { return api.disconnect(); }).catch(console.error); Link to comment Share on other sites More sharing options...
ObservantOne Posted May 16, 2017 Author Share Posted May 16, 2017 Lol, I don't get where there were any steps involved. I am just starting out with Linux AND a wallet. Haven't installed Linux yet as I need to see step-by-step instructions so I don't mess this up. Link to comment Share on other sites More sharing options...
Mercury Posted May 16, 2017 Share Posted May 16, 2017 There are a couple examples now for a Rasberry Pi (a small Linux micro PC) cold wallet Link to comment Share on other sites More sharing options...
JackTheRippler Posted May 16, 2017 Share Posted May 16, 2017 Hope this helps: Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now