Post
Topic
Board Beginners & Help
Re: Guide for using wallets in command line for linux/ubuntu
by
jseverson
on 28/03/2018, 15:20:04 UTC
Thanks I'm running haven https://havenprotocol.com/  on ubuntu, I have the daemon running and wallet setup but I can't figure out how to run commands like getinfo to show if wallet has synced

How do i run commands via cli?

Didn't it come with a guide? I don't think there are really any universal commands for command line wallets, so you would have to find that specifically for what you're using. You typically have to type the program name first, so something like

Code:
haven getinfo

...should work, assuming that haven is the correct program name, and that getinfo is a valid command for it. You may need a few more arguments for it though.

Alternatively, you could try and see if it has a manual to see its commands by typing

Code:
man haven

...again, assuming that haven is the correct program name.

Hope this helped!