apocket-cli

0.9.7 • Public • Published

<<<<<<< HEAD

aPocket CLI

A simple Command Line Interface Wallet using aPocket API Service and its official client lib, apocket-lib] (https://github.com/arisebank/apocket-api)

aPocket-CLI

A simple Command Line Interface Wallet using aPocket API and its official client lib, apocket-lib] (https://github.com/arisebank/apocket-lib)

2691289ed699f8fcc3b14f4548418aa021e7b155

Quick Guide

# Use -h or APWS_HOST to setup the APWS URL (defaults to localhost:3001) 
# 
# Start a local APWS instance be doing: 
# git clone https://github.com/arisebank/apocket-api.git apws 
# cd apws; npm install; npm start 
 
cd bin
 
# Create a 2-of-2 wallet (~/.wallet.dat is the default filename where the wallet critical data will be stored) 
# 
# TIP: add -t for testnet, and -p to encrypt the credentials file 
wallet create 'my wallet' 2-2
  * Secret to share:
    JevjEwaaxW6gdAZjqgWcimL525DR8zQsAXf4cscWDa8u1qKTN5eFGSFssuSvT1WySu4YYLYMUPT
 
# Check the status of your wallet 
wallet status
 
  * Wallet my wallet [livenet]: 2-of-2 pending
    Missing pocketeers: 1
 
# Use -f or WALLET_FILE to setup the wallet data file 
 
# Join the wallet as another pocketeer (add -p to encrypt credentials file) 
wallet -f pete.dat join JevjEwaaxW6gdAZjqgWcimL525DR8zQsAXf4cscWDa8u1qKTN5eFGSFssuSvT1WySu4YYLYMUPT
 
export WALLET_FILE=pete.dat
wallet status
 
# Generate addresses to receive money 
wallet address
  * New Address 3xxxxxx
 
# Check your balance 
wallet balance
 
# Spend coins. Amount can be specified in btc, bit or sat (default) 
wallet send 1xxxxx 1000bit "1000 bits to mother"
  * Tx created: ID 01425517364314b9ac6017-e97d-46d5-a12a-9d4e5550abef [pending]
    RequiredSignatures: 2
 
# You can use 1000bit or 0.0001btc or 100000sat. (Set BIT_UNIT to btc/sat/bit to select output unit). 
 
# List pending TX Proposals 
wallet txproposals
  * TX Proposals:
    abef ["1000 bits to mother" by pete] 1,000 bit => 1xxxxx
      Missing signatures: 2
 
# Sign or reject TXs from other pocketeers 
wallet -f pete.dat reject <id>
wallet -f pete.dat sign <id>
 
# List transaction history 
wallet history
  a few minutes ago: => sent 1,000 bit ["1000 bits to mother" by pete] (1 confirmations)
  a day ago: <= received 1,400 bit (48 confirmations)
  a day ago: <= received 300 bit (62 confirmations)
 
# List all commands: 
wallet --help
 
 

Password protection

It is possible (and recommeded) to encrypt the wallet's credentials (.dat file). this is done be adding the -p parameter to join or create or genkey. The password will be asked interactively. Following commands that use the crendetials will require the password to work.

Password-based key derication function 2 (http://en.wikipedia.org/wiki/PBKDF2) is used to derive the key to encrypt the data. AES is used to do the actual encryption, using the implementation of SJCL (https://bitwiseshiftleft.github.io/sjcl/).

Airgapped Operation

Air gapped (non connected) devices are supported. This setup can be useful if maximum security is needed, to prevent private keys from being compromised. In this setup, a device is installed without network access, and transactions are signed off-line. Transactions can be pulled from APWS using a proxy device, then downloaded to a pendrive to be moved to the air-gapped device, signed there, and then moved back the proxy device to be sent back to APWS. Note that Private keys are generated off-line in the airgapped device.

 
# On the Air-gapped device 
 
# Generate extended private key (add -t for testnet) 
airgapped$ wallet genkey
  * Livenet Extended Private Key Created.
 
airgapped$ wallet export -o toproxy --nosign
  * Wallet data saved at toproxy without signing capability.
 
 
# On the proxy machine 
proxy$ wallet import toproxy
  * Wallet Imported without signing capability.
proxy$ wallet join <secret>    # Or wallet create 
proxy$ wallet address
proxy$ wallet balance
 
# It is not possible to sign transactions from the proxy device 
proxy$ wallet sign
  [Error: You do not have the required keys to sign transactions]
 
# Export pending transaction to be signed offline 
proxy$ wallet txproposals -o txproposals.dat
 
## Back to air-gapped device 
 
# Sign them 
airgapped$ wallet airsign txproposals.dat -o signatures.dat
 
# NOTE: To allow the airgapped device to check the transaction proposals being signed, the public keys of the pocketeers will be imported from the txproposals archive. That information is exported automatically by the proxy machine, and encrypted using pocketeer's xpriv derivatives. 
 
## Back to proxy machine 
 
# Send signatures to APWS 
proxy$ wallet sign -i signatures.dat
  Transaction 014255.... signed by you.
 

Package Sidebar

Install

npm i apocket-cli

Weekly Downloads

1

Version

0.9.7

License

none

Last publish

Collaborators

  • arisebank