Sha256: 6d5cefdde63299cf3b81c59b1da9f23edd458b4d5466c7c5137e786e6f4520eb

Contents?: true

Size: 1010 Bytes

Versions: 12

Compression:

Stored size: 1010 Bytes

Contents

#!/usr/bin/env ruby

# This is an example of using the higher level "payment" wrapper. Notice
# that we are using KeyPair instead of the raw rbnacl keys and that we need
# not build the entire heirarchy of xdr object manually.
#
# You can see where these helpers are defined in the files underneath /lib,
# which is where we extend the xdrgen generated source files with our higher
# level api.

require 'stellar-base'
require 'faraday'
require 'faraday_middleware'

$server = Faraday.new(url: "http://localhost:39132") do |conn|
  conn.response :json
  conn.adapter Faraday.default_adapter
end

master      = Stellar::KeyPair.from_raw_seed("allmylifemyhearthasbeensearching")
destination = Stellar::KeyPair.from_raw_seed("allmylifemyhearthasbeensearching")

tx = Stellar::Transaction.payment({
  account:     master,
  destination: destination,
  sequence:    1,
  amount:      [:native, 20 * Stellar::ONE]
})

hex    = tx.to_envelope(master).to_xdr(:hex)

result = $server.get('tx', blob: hex)
p result.body

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
stellar-base-0.1.0 examples/mid_level_transaction_post.rb
stellar-base-0.0.20 examples/mid_level_transaction_post.rb
stellar-base-0.0.19 examples/mid_level_transaction_post.rb
stellar-base-0.0.18 examples/mid_level_transaction_post.rb
stellar-base-0.0.17 examples/mid_level_transaction_post.rb
stellar-base-0.0.16 examples/mid_level_transaction_post.rb
stellar-base-0.0.15 examples/mid_level_transaction_post.rb
stellar-base-0.0.14 examples/mid_level_transaction_post.rb
stellar-base-0.0.13 examples/mid_level_transaction_post.rb
stellar-base-0.0.12 examples/mid_level_transaction_post.rb
stellar-base-0.0.11 examples/mid_level_transaction_post.rb
stellar-base-0.0.10 examples/mid_level_transaction_post.rb