Class: Zold::Pay
- Inherits:
-
Object
- Object
- Zold::Pay
- Includes:
- ThreadBadge
- Defined in:
- lib/zold/commands/pay.rb
Overview
Money sending command
Instance Method Summary collapse
-
#initialize(wallets:, remotes:, copies:, log: Log::NULL) ⇒ Pay
constructor
A new instance of Pay.
-
#run(args = []) ⇒ Object
Sends a payment and returns the transaction just created in the paying wallet, an instance of Zold::Txn.
Constructor Details
Instance Method Details
#run(args = []) ⇒ Object
Sends a payment and returns the transaction just created in the paying wallet, an instance of Zold::Txn
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/zold/commands/pay.rb', line 50 def run(args = []) opts = Slop.parse(args, help: true, suppress_errors: true) do |o| o. = "Usage: zold pay wallet target amount [details] [options] Where: 'wallet' is the sender's wallet ID 'target' is the beneficiary (either wallet ID or invoice number)' 'amount' is the amount to pay, for example: '14.95Z' (in ZLD) or '12345z' (in zents) 'details' is the optional text to attach to the payment Available options:" o.string '--private-key', 'The location of RSA private key (default: ~/.ssh/id_rsa)', require: true, default: File.('~/.ssh/id_rsa') o.string '--network', 'The name of the network we work in', default: 'test' o.bool '--force', 'Ignore all validations', default: false o.string '--time', "Time of transaction (default: #{Time.now.utc.iso8601})", default: Time.now.utc.iso8601 o.string '--keygap', 'Keygap, if the private RSA key is not complete', default: '' o.bool '--tolerate-edges', 'Don\'t fail if only "edge" (not "master" ones) nodes have the wallet', default: false o.integer '--tolerate-quorum', 'The minimum number of nodes required for a successful fetch (default: 4)', default: 4 o.bool '--ignore-nodes-absence', 'Don\'t complain if there are not enough nodes in the network to pay taxes', default: false o.bool '--ignore-score-weakness', 'Don\'t complain when their score is too weak (when paying taxes)', default: false o.bool '--ignore-score-size', 'Don\'t complain when their score is too small (when paying taxes)', default: false o.bool '--dont-pay-taxes', 'Don\'t pay taxes even if the wallet is in debt', default: false o.bool '--pay-taxes-anyway', 'Pay taxes even if the wallet is not in debt', default: false o.bool '--skip-propagate', 'Don\'t propagate the paying wallet after successful pay', default: false o.bool '--help', 'Print instructions' end mine = Args.new(opts, @log).take || return raise 'Payer wallet ID is required as the first argument' if mine[0].nil? id = Id.new(mine[0]) raise 'Recepient\'s invoice or wallet ID is required as the second argument' if mine[1].nil? invoice = mine[1] unless invoice.include?('@') require_relative 'invoice' invoice = Invoice.new(wallets: @wallets, remotes: @remotes, copies: @copies, log: @log).run( ['invoice', invoice, "--tolerate-quorum=#{Shellwords.escape(opts['tolerate-quorum'])}"] + ["--network=#{Shellwords.escape(opts['network'])}"] + (opts['tolerate-edges'] ? ['--tolerate-edges'] : []) ) end raise 'Amount is required (in ZLD) as the third argument' if mine[2].nil? amount = amount(mine[2].strip) details = mine[3] || '-' taxes(id, opts) txn = @wallets.acq(id, exclusive: true) do |from| pay(from, invoice, amount, details, opts) end return if opts['skip-propagate'] require_relative 'propagate' Propagate.new(wallets: @wallets, log: @log).run(['propagate', id.to_s]) txn end |