stellar-sdk 0.8.0 → 0.9.0.pre2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/{LICENSE.txt → LICENSE} +0 -0
  3. data/README.md +4 -5
  4. data/lib/stellar-sdk.rb +2 -3
  5. data/lib/stellar/account.rb +16 -18
  6. data/lib/stellar/amount.rb +9 -13
  7. data/lib/stellar/client.rb +153 -113
  8. data/lib/stellar/horizon/problem.rb +14 -16
  9. data/lib/stellar/sep10.rb +56 -93
  10. data/lib/stellar/transaction_page.rb +4 -6
  11. data/lib/stellar/version.rb +1 -1
  12. metadata +13 -217
  13. data/.github/CODEOWNERS +0 -2
  14. data/.gitignore +0 -17
  15. data/.travis.yml +0 -20
  16. data/.yardopts +0 -7
  17. data/CONTRIBUTING.md +0 -48
  18. data/Gemfile +0 -14
  19. data/Guardfile +0 -5
  20. data/Rakefile +0 -3
  21. data/examples/01_get_funded.rb +0 -37
  22. data/examples/02_payment.rb +0 -15
  23. data/examples/03_transaction_history.rb +0 -21
  24. data/examples/04_setting_trust.rb +0 -1
  25. data/examples/05_fiat_payment.rb +0 -13
  26. data/examples/06_fund_testnet_friendbot.rb +0 -15
  27. data/examples/07_sep10.rb +0 -125
  28. data/ruby-stellar-sdk.gemspec +0 -35
  29. data/spec/config.yml.sample +0 -12
  30. data/spec/fixtures/vcr_cassettes/Stellar_Account/_lookup/should_handle_404_request_when_performing_federation_lookup.yml +0 -133
  31. data/spec/fixtures/vcr_cassettes/Stellar_Account/_lookup/should_handle_domains_that_are_not_federation_servers.yml +0 -44
  32. data/spec/fixtures/vcr_cassettes/Stellar_Account/_lookup/should_peforms_federation_lookup.yml +0 -85
  33. data/spec/fixtures/vcr_cassettes/Stellar_Client/_account_info/returns_the_current_details_for_the_account.yml +0 -190
  34. data/spec/fixtures/vcr_cassettes/Stellar_Client/_account_merge/merges_source_account_into_destination.yml +0 -714
  35. data/spec/fixtures/vcr_cassettes/Stellar_Client/_change_trust/given_an_asset_described_as_an_array/creates_updates_or_deletes_a_trustline.yml +0 -1156
  36. data/spec/fixtures/vcr_cassettes/Stellar_Client/_create_account/creates_the_account.yml +0 -323
  37. data/spec/fixtures/vcr_cassettes/Stellar_Client/_friendbot/requests_for_XLM_from_a_friendbot.yml +0 -246
  38. data/spec/fixtures/vcr_cassettes/Stellar_Client/_load_account/loads_successfully.yml +0 -226
  39. data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/alphanum12_asset/sends_a_alphanum12_asset_to_the_destination.yml +0 -747
  40. data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/alphanum4_asset/sends_a_alphanum4_asset_to_the_destination.yml +0 -747
  41. data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/memo/accepts_the_memo_attribute.yml +0 -725
  42. data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/native_asset/sends_a_native_payment_to_the_account.yml +0 -562
  43. data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/using_a_payment_channel/sends_a_payment_account_through_a_channel_account.yml +0 -757
  44. data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/using_a_payment_channel/sends_a_payment_when_the_channel_is_the_same_as_from_.yml +0 -642
  45. data/spec/fixtures/vcr_cassettes/Stellar_Client/_transactions/account_transactions/accepts_a_cursor_to_return_less_data.yml +0 -94
  46. data/spec/fixtures/vcr_cassettes/Stellar_Client/_transactions/account_transactions/returns_a_list_of_transaction_for_an_account.yml +0 -94
  47. data/spec/fixtures/vcr_cassettes/Stellar_Client/_transactions/all_transactions/accepts_a_cursor_to_return_less_data.yml +0 -94
  48. data/spec/fixtures/vcr_cassettes/Stellar_Client/_transactions/all_transactions/returns_a_list_of_transactions.yml +0 -94
  49. data/spec/lib/stellar/account_spec.rb +0 -59
  50. data/spec/lib/stellar/amount_spec.rb +0 -70
  51. data/spec/lib/stellar/client_spec.rb +0 -430
  52. data/spec/lib/stellar/sep10_spec.rb +0 -1148
  53. data/spec/spec_helper.rb +0 -14
  54. data/spec/support/config.rb +0 -3
  55. data/spec/support/vcr.rb +0 -10
  56. data/tasks/rspec.rake +0 -6
  57. data/tasks/travis.rake +0 -1
@@ -1,2 +0,0 @@
1
- # Each line is a file pattern followed by one or more owners.
2
- * @ramontayag
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /.ruby-version
4
- /Gemfile.lock
5
- /_yardoc/
6
- /coverage/
7
- /doc/
8
- /pkg/
9
- /spec/reports/
10
- /tmp/
11
- *.bundle
12
- *.so
13
- *.o
14
- *.a
15
- mkmf.log
16
- /spec/config.yml
17
- .vscode
@@ -1,20 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.4.1
4
- - 2.5.1
5
- - 2.6.1
6
- - jruby-9.2.5.0
7
- cache: bundler
8
- addons:
9
- apt:
10
- packages:
11
- - libsodium-dev
12
- before_install:
13
- - gem update --system
14
- - gem install bundler -v 2.0
15
- script: LD_LIBRARY_PATH=lib bundle exec rake travis
16
- before_script:
17
- - cp spec/config.yml.sample spec/config.yml
18
- notifications:
19
- slack:
20
- secure: D1gWWsjE9i9XLRM6Bfw2pu3tTPW025iqjhgwE3KNw1QwP2TrehbCwRpjVR4rrnaju9FhYqM0+eT4rFc9g6itBPf2pfN1WziVf/CVJORYTzR9HbLL1rMOaWhEv4x/+Uwu0kxQon9ThnM9w6XjjD1+NoBfGn4Lcgc/OgmUGw1jAvQ=
data/.yardopts DELETED
@@ -1,7 +0,0 @@
1
- --output-dir doc/generated
2
- --protected
3
- --no-private
4
- --embed-mixin ClassMethods
5
- lib/**/*.rb
6
- -
7
- doc/*.md
@@ -1,48 +0,0 @@
1
- # How to contribute
2
-
3
- Your contributions to the Stellar network will help improve the world’s financial
4
- infrastructure, faster.
5
-
6
- We want to make it as easy as possible to contribute changes that
7
- help the Stellar network grow and thrive. There are a few guidelines that we
8
- ask contributors to follow so that we can merge your changes quickly.
9
-
10
- ## Getting Started
11
-
12
- * Create a GitHub issue for your contribution, assuming one does not already exist.
13
- * Clearly describe the issue including steps to reproduce if it is a bug.
14
- * Fork the repository on GitHub
15
-
16
- ## Making Changes
17
-
18
- * Create a topic branch from where you want to base your work.
19
- * This is usually the master branch.
20
- * Please avoid working directly on the `master` branch.
21
- * Make sure you have added the necessary tests for your changes, and make sure all tests pass.
22
-
23
- ## Submitting Changes
24
-
25
- * <a href="https://docs.google.com/forms/d/1g7EF6PERciwn7zfmfke5Sir2n10yddGGSXyZsq98tVY/viewform?usp=send_form">Sign the Contributor License Agreement</a>
26
- * Push your changes to a topic branch in your fork of the repository.
27
- * Submit a pull request to the corresponding repository in the Stellar organization.
28
- * Include a descriptive [commit message](https://github.com/erlang/otp/wiki/Writing-good-commit-messages).
29
- * Changes contributed via pull request should focus on a single issue at a time.
30
- * Rebase your local changes against the master branch. Resolve any conflicts that arise.
31
-
32
- At this point you're waiting on us. We like to at least comment on pull requests within three
33
- business days. We may suggest some changes or improvements or alternatives.
34
-
35
- # Additional Resources
36
-
37
- * [Bug tracker (Github)](https://github.com/stellar/ruby-stellar-lib/issues)
38
- * <a href="https://docs.google.com/forms/d/1g7EF6PERciwn7zfmfke5Sir2n10yddGGSXyZsq98tVY/viewform?usp=send_form">Contributor License Agreement</a>
39
- * #stellar-dev IRC channel on freenode.org and Slack chat on stellar-public.slack.com
40
-
41
-
42
- This document is inspired by:
43
-
44
- https://github.com/puppetlabs/puppet/blob/master/CONTRIBUTING.md
45
-
46
- https://github.com/thoughtbot/factory_girl_rails/blob/master/CONTRIBUTING.md
47
-
48
- https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md
data/Gemfile DELETED
@@ -1,14 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
4
-
5
- # gem "xdr", git: "git@github.com:stellar/ruby-xdr.git"
6
- # gem "xdr", path: "../ruby-xdr"
7
-
8
- # gem "stellar-base", git: "git@github.com:stellar/ruby-stellar-base.git"
9
- # gem "stellar-base", path: "../ruby-stellar-base"
10
-
11
- group :development do
12
- gem "pry"
13
- end
14
-
data/Guardfile DELETED
@@ -1,5 +0,0 @@
1
- guard :rspec, cmd: 'rspec' do
2
- watch(%r{^spec/.+_spec\.rb$})
3
- watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
4
- watch('spec/spec_helper.rb') { "spec" }
5
- end
data/Rakefile DELETED
@@ -1,3 +0,0 @@
1
- require "bundler/gem_tasks"
2
-
3
- Dir["tasks/**/*.rake"].each{|f| load f}
@@ -1,37 +0,0 @@
1
- require 'stellar-sdk'
2
-
3
- # Reference an account from a secret seed
4
- account = Stellar::Account.from_seed("SBXH4SEH32PENMMB66P4TY6LXUIFMRVFUMX2LJC3P2STHICBJLNQJOH5")
5
-
6
- # Further options
7
- #
8
- # Make a random account
9
- #
10
- # account = Stellar::Account.random()
11
- #
12
- # Reference an account (unauthenticated) from an address
13
- #
14
- # account = Stellar::Account.from_address("gjgPNE2GpySt5iYZaFFo1svCJ4gbHwXxUy8DDqeYTDK6UzsPTs")
15
- #
16
- # Reference an account (unauthenticated) from a federation name
17
- #
18
- # account = Stellar::Account.lookup("nullstyle*stellarfed.org")
19
- # account = Stellar::Account.lookup("nullstyle@gmail.com*stellarfed.org")
20
- #
21
-
22
- # create a connection to the stellar network
23
- client = Stellar::Client.default_testnet()
24
-
25
- # Further options
26
- #
27
- # Connect to the live network (when it is created)
28
- #
29
- # client = Stellar::Client.default
30
- #
31
- # Connect to a specific horizon host
32
- #
33
- # client = Stellar::Client.new(host: "127.0.0.1")
34
-
35
- # Get our friendly friendbot to
36
- # fund your new account
37
- response = client.friendbot(account) # => #<OK>
@@ -1,15 +0,0 @@
1
- require 'stellar-sdk'
2
-
3
- account = Stellar::Account.from_seed("SBXH4SEH32PENMMB66P4TY6LXUIFMRVFUMX2LJC3P2STHICBJLNQJOH5")
4
- client = Stellar::Client.default_testnet()
5
-
6
- # create a random recipients
7
- recipient = Stellar::Account.random
8
-
9
- # make a payment
10
- client.send_payment({
11
- from: account,
12
- to: recipient,
13
- amount: Stellar::Amount.new(100_000_000)
14
- }) # => #<OK>
15
-
@@ -1,21 +0,0 @@
1
- require 'stellar-sdk'
2
-
3
- account = Stellar::Account.from_seed("SBXH4SEH32PENMMB66P4TY6LXUIFMRVFUMX2LJC3P2STHICBJLNQJOH5")
4
- client = Stellar::Client.default_testnet()
5
-
6
- # load the first page of transactions
7
- transactions = client.transactions({
8
- account: account,
9
- order: :chronological
10
- }) # => #<TransactionPage count=50 [...]>
11
-
12
- # TransactionPage implements Enumerable...
13
- transactions.first # => #<Stellar::Transaction ...>
14
- transactions.each{|tx| p tx}
15
- transactions.take(3) # => [...]
16
-
17
- # ...but also has methods to advance pages
18
- newer_transactions = transactions.next_page
19
-
20
- # we can also just advance the current page in place
21
- transactions.next_page!
@@ -1 +0,0 @@
1
- # See the spec for `#change_trust` in `spec/lib/stellar/client_spec.rb`
@@ -1,13 +0,0 @@
1
- require 'stellar-sdk'
2
-
3
- account = Stellar::Account.from_seed("SBXH4SEH32PENMMB66P4TY6LXUIFMRVFUMX2LJC3P2STHICBJLNQJOH5")
4
- client = Stellar::Client.default_testnet()
5
-
6
- issuer = Stellar::Account.lookup("tips*stellarid.io")
7
- asset = Stellar::Asset.alphanum4("USD", issuer)
8
-
9
- client.send({
10
- from: account,
11
- to: recipient,
12
- amount: Stellar::Amount.new(100, asset, issuer)
13
- }) # => #<OK>
@@ -1,15 +0,0 @@
1
- require 'stellar-sdk'
2
-
3
- client = Stellar::Client.default_testnet
4
-
5
- friendbot = Stellar::Account.from_seed("SBXH4SEH32PENMMB66P4TY6LXUIFMRVFUMX2LJC3P2STHICBJLNQJOH5")
6
-
7
- # Give 10 million lumens
8
- client.create_account({
9
- funder: Stellar::Account.master,
10
- account: friendbot,
11
- starting_balance: 10_000_000 * Stellar::ONE,
12
- sequence: 1,
13
- })
14
-
15
- puts friendbot.address
@@ -1,125 +0,0 @@
1
- require 'stellar-sdk'
2
- require 'hyperclient'
3
-
4
- $client = Stellar::Client.default_testnet
5
- $client_master_kp = Stellar::KeyPair.random
6
- $client_signer_kp1 = Stellar::KeyPair.random
7
- $client_signer_kp2 = Stellar::KeyPair.random
8
- $server_kp = Stellar::KeyPair.random
9
-
10
- def setup_multisig
11
- # create funded account
12
- # On mainet there is no friendbot, use Stellar::Client.create_account instead
13
- account = Stellar::Account.from_seed($client_master_kp.seed)
14
- $client.friendbot(account)
15
-
16
- # get account sequence number for next transaction
17
- sequence_number = $client.account_info(account).sequence.to_i + 1
18
-
19
- # build the non-master signers to be added to the account
20
- signer1 = Stellar::Signer.new(
21
- key: Stellar::SignerKey.ed25519($client_signer_kp1),
22
- weight: 1
23
- )
24
- signer2 = Stellar::Signer.new(
25
- key: Stellar::SignerKey.ed25519($client_signer_kp2),
26
- weight: 1
27
- )
28
-
29
- # Stellar::Transaction only has method to construct single-operation
30
- # transactions, so we have to add an operation to add an additional signer.
31
- tx = Stellar::Transaction.set_options({
32
- account: $client_master_kp,
33
- sequence: sequence_number,
34
- signer: signer1,
35
- low_threshold: 1,
36
- med_threshold: 2,
37
- high_threshold: 3,
38
- fee: 100 * 3
39
- })
40
- tx.operations << Stellar::Operation.set_options({ signer: signer2 })
41
-
42
- envelope_xdr = tx.to_envelope($client_master_kp).to_xdr(:base64)
43
- begin
44
- $client.horizon.transactions._post(tx: envelope_xdr)
45
- rescue Faraday::ClientError => e
46
- p e.response
47
- end
48
- end
49
-
50
-
51
- # This function walks throught the steps both the wallet and server would take
52
- # during a SEP-10 challenge verification.
53
- def example_verify_challenge_tx_threshold
54
- # 1. The wallet makes a GET request to /auth,
55
- # 2. The server receives the request, and returns the challenge xdr.
56
- envelope_xdr = Stellar::SEP10.build_challenge_tx(
57
- server: $server_kp,
58
- client: $client_master_kp,
59
- anchor_name: "SDF",
60
- timeout: 600
61
- )
62
- # 3. The wallet recieves the challenge xdr and collects enough signatures from
63
- # the accounts signers to reach the medium threshold on the account.
64
- # `envelope.signatures` already contains the server's signature, so the wallet
65
- # adds to the list.
66
- envelope = Stellar::TransactionEnvelope.from_xdr(envelope_xdr, "base64")
67
- envelope.signatures += [
68
- envelope.tx.sign_decorated($client_master_kp),
69
- envelope.tx.sign_decorated($client_signer_kp1),
70
- envelope.tx.sign_decorated($client_signer_kp2)
71
- ]
72
- envelope_xdr = envelope.to_xdr(:base64)
73
-
74
- # 4. The wallet makes a POST request to /auth containing the signed challenge
75
- # 5. The server verifies the challenge transaction
76
- envelope, client_master_address = Stellar::SEP10.read_challenge_tx(
77
- challenge_xdr: envelope_xdr,
78
- server: $server_kp
79
- )
80
- account = Stellar::Account.from_address(client_master_address)
81
- begin
82
- # Get all signers and thresholds for account
83
- info = $client.account_info(account)
84
- rescue Faraday::ResourceNotFound
85
- # The account doesn't exist yet.
86
- # In this situation, all the server can do is verify that the client master
87
- # keypair has signed the transaction.
88
- begin
89
- Stellar::SEP10.verify_challenge_tx(
90
- challenge_xdr: envelope_xdr, server: $server_kp
91
- )
92
- rescue Stellar::InvalidSep10ChallengeError => e
93
- puts "You should handle possible exceptions:"
94
- puts e
95
- else
96
- puts "Challenge verified by client master key signature"
97
- end
98
- else
99
- # The account exists, so the server should check if the signatures reach the
100
- # medium threshold on the account
101
- begin
102
- signers_found = Stellar::SEP10.verify_challenge_tx_threshold(
103
- challenge_xdr: envelope_xdr,
104
- server: $server_kp,
105
- threshold: info.thresholds["med_threshold"],
106
- signers: Set.new(info.signers)
107
- )
108
- rescue Stellar::InvalidSep10ChallengeError => e
109
- puts "You should handle possible exceptions:"
110
- puts e
111
- else
112
- puts "Challenge signatures and threshold verified!"
113
- total_weight = 0
114
- signers_found.each do |signer|
115
- total_weight += signer['weight']
116
- puts "signer: #{signer['key']}, weight: #{signer['weight']}"
117
- end
118
- puts "Account medium threshold: #{info.thresholds["med_threshold"]}, total signature(s) weight: #{total_weight}"
119
- end
120
- end
121
- end
122
-
123
- # Comment out setup_multisig to execute Stellar::Account.verify_challenge_transaction
124
- setup_multisig
125
- example_verify_challenge_tx_threshold
@@ -1,35 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'stellar/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "stellar-sdk"
8
- spec.version = Stellar::VERSION
9
- spec.authors = ["Scott Fleckenstein"]
10
- spec.email = ["scott@stellar.org"]
11
- spec.summary = %q{Stellar client library}
12
- spec.homepage = "http://github.com/stellar/ruby-stellar-sdk"
13
- spec.license = "Apache-2.0"
14
-
15
- spec.files = `git ls-files -z`.split("\x0")
16
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
- spec.require_paths = ["lib"]
19
-
20
- spec.add_dependency "stellar-base", ">= 0.22.0"
21
- spec.add_dependency "hyperclient", "~> 0.7"
22
- spec.add_dependency "excon", "~> 0.44", ">= 0.44.4"
23
- spec.add_dependency "contracts", "~> 0.16"
24
- spec.add_dependency "activesupport", ">= 5.0"
25
- spec.add_dependency "toml-rb", "~> 1.1", ">= 1.1.1"
26
-
27
- spec.add_development_dependency "bundler", "~> 2.0"
28
- spec.add_development_dependency "rake", "~> 10.0"
29
- spec.add_development_dependency "rspec", "~> 3.1"
30
- spec.add_development_dependency "guard-rspec", "~> 4.7"
31
- spec.add_development_dependency "simplecov", "~> 0.18"
32
- spec.add_development_dependency "yard", "~> 0.9"
33
- spec.add_development_dependency "vcr", "~> 3.0"
34
- spec.add_development_dependency "webmock", "~> 2.3"
35
- end
@@ -1,12 +0,0 @@
1
- ---
2
- # Source must be funded already
3
- # Use https://www.stellar.org/laboratory/#account-creator?network=test
4
- # These ones in the sample are just randomly generated ones; enough for tests
5
- # to pass (as long as we're not re-recording)
6
- source_seed: "SALQBNNRCXWD32E4QKIXKXCMXCPJKWUP34EAK53SP6PNGAUVWSAM5IUQ"
7
- source_address: "GCIDYJRG5HV4WEESRA4LEKIMXLCU46XIKXGZK4PWX5K23PJIATMWR3UE"
8
-
9
- # Channel must be funded as well, but put a real address (not funded is fine)
10
- # so that Travis will still pass
11
- channel_address: "GBLVRKRL4NCY6MBDPRYMH4CQZMYME2CJGCVAD5YSRPDUS74AREQE7QOK"
12
- channel_seed: "SAOS5HRNKGRGFVQQPEZOJN33MHUGHMS6GR3LB7GWFJFKSVSWIFYMQYFM"
@@ -1,133 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://stellarfed.org/.well-known/stellar.toml
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - Faraday v0.14.0
12
- Accept-Encoding:
13
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
- Accept:
15
- - "*/*"
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Tue, 20 Feb 2018 18:58:58 GMT
23
- Content-Type:
24
- - text/plain; charset=utf-8
25
- Transfer-Encoding:
26
- - chunked
27
- Connection:
28
- - keep-alive
29
- Set-Cookie:
30
- - __cfduid=de30e4abf7a551661d3deb92e6e3716011519153138; expires=Wed, 20-Feb-19
31
- 18:58:58 GMT; path=/; domain=.stellarfed.org; HttpOnly; Secure
32
- X-Frame-Options:
33
- - SAMEORIGIN
34
- X-Xss-Protection:
35
- - 1; mode=block
36
- X-Content-Type-Options:
37
- - nosniff
38
- X-Download-Options:
39
- - noopen
40
- X-Permitted-Cross-Domain-Policies:
41
- - none
42
- Referrer-Policy:
43
- - strict-origin-when-cross-origin
44
- Access-Control-Allow-Origin:
45
- - "*"
46
- Etag:
47
- - W/"e00cc6ea5aab41de546253c69965d937"
48
- Cache-Control:
49
- - max-age=0, private, must-revalidate
50
- X-Request-Id:
51
- - 6a387582-adbe-4bfd-836b-eabf658fce22
52
- X-Runtime:
53
- - '0.002500'
54
- Strict-Transport-Security:
55
- - max-age=15552000; includeSubDomains
56
- Via:
57
- - 1.1 vegur
58
- Expect-Ct:
59
- - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
60
- Server:
61
- - cloudflare
62
- Cf-Ray:
63
- - 3f03b34b0e799266-EWR
64
- body:
65
- encoding: ASCII-8BIT
66
- string: FEDERATION_SERVER = "https://stellarfed.org/federation"
67
- http_version:
68
- recorded_at: Tue, 20 Feb 2018 18:58:58 GMT
69
- - request:
70
- method: get
71
- uri: https://stellarfed.org/federation?q=jane@email.com*stellarfed.org&type=name
72
- body:
73
- encoding: US-ASCII
74
- string: ''
75
- headers:
76
- User-Agent:
77
- - Faraday v0.14.0
78
- Accept-Encoding:
79
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
80
- Accept:
81
- - "*/*"
82
- response:
83
- status:
84
- code: 404
85
- message: Not Found
86
- headers:
87
- Date:
88
- - Tue, 20 Feb 2018 18:58:58 GMT
89
- Content-Type:
90
- - application/json; charset=utf-8
91
- Transfer-Encoding:
92
- - chunked
93
- Connection:
94
- - keep-alive
95
- Set-Cookie:
96
- - __cfduid=d164f4eba862038aaf9e96d9ac755d9471519153138; expires=Wed, 20-Feb-19
97
- 18:58:58 GMT; path=/; domain=.stellarfed.org; HttpOnly; Secure
98
- X-Frame-Options:
99
- - SAMEORIGIN
100
- X-Xss-Protection:
101
- - 1; mode=block
102
- X-Content-Type-Options:
103
- - nosniff
104
- X-Download-Options:
105
- - noopen
106
- X-Permitted-Cross-Domain-Policies:
107
- - none
108
- Referrer-Policy:
109
- - strict-origin-when-cross-origin
110
- Access-Control-Allow-Origin:
111
- - "*"
112
- Cache-Control:
113
- - no-cache
114
- X-Request-Id:
115
- - 2b9424e9-6cb3-4cdc-915e-469f8e2123e3
116
- X-Runtime:
117
- - '0.004981'
118
- Strict-Transport-Security:
119
- - max-age=15552000; includeSubDomains
120
- Via:
121
- - 1.1 vegur
122
- Expect-Ct:
123
- - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
124
- Server:
125
- - cloudflare
126
- Cf-Ray:
127
- - 3f03b34bbd5c91d0-EWR
128
- body:
129
- encoding: ASCII-8BIT
130
- string: '{"detail":"no record found"}'
131
- http_version:
132
- recorded_at: Tue, 20 Feb 2018 18:58:58 GMT
133
- recorded_with: VCR 3.0.3