An app to execute all stellar transaction at command line
npm install lendledger-cliThis document may concern users which want to access LL platform using command line.
``sh`Check your node version using this command
node --version`sh`Access the CLI application using the below command
npm install -g lendledger-cli
sh
: test/public : Provided during create account.
: Provided during create account.
Create Account
lendledger create -n Create Account from Mnemonic(array of strings) which uses BIP39 protocol.
lendledger mnemonic -n -m -a
Example :- lendledger mnemonic -n test -m "This is an example of mnemonic array of strings" -a 1Login to perform any transaction. Session is valid till 30 minutes.
lendledger login -n -a Logout from current session
lendledger logoutCheck the user currently logged into the system
lendledger whoamiGet Balance for an Account
lendledger balance -n -a Audit Trail for an Account
lendledger audit -n -a Change Trusline for an account to accept asset as currency
lendledger changeTrust -n -f -l -s -a -c -i Issuer issues asset after user has changed trustline to accept asset as currency.
lendledger issueAsset -n -s -a -r -m Account Holder creates or manages offer inorder to buy or sell asset.
lendledger manageOffer -n -s -d -i -b -j -a -p -o Get all offer created by an account-id
lendledger getOffer -n -a Lender lends owned asset to any account holder (Borrower)
lendledger lend -n -s -l -m -a -b Account holder (Borrower) exchanges asset to any fiat(USD/EUR/INR)
lendledger exchange -n -s -e -m -a
``