Sha256: 5a3702384dcb60f245116ccbd6a184ccae5bd5fa49f1658bd5f6f4b44058475b

Contents?: true

Size: 1013 Bytes

Versions: 7

Compression:

Stored size: 1013 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]
})

b64    = tx.to_envelope(master).to_xdr(:base64)

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

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
open-core-0.3.0 examples/mid_level_transaction_post.rb
stellar-base-0.3.0 examples/mid_level_transaction_post.rb
stellar-base-0.2.0 examples/mid_level_transaction_post.rb
stellar-base-0.1.4 examples/mid_level_transaction_post.rb
stellar-base-0.1.3 examples/mid_level_transaction_post.rb
stellar-base-0.1.2 examples/mid_level_transaction_post.rb
stellar-base-0.1.1 examples/mid_level_transaction_post.rb