stellar-sdk 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +6 -9
- data/CHANGELOG.md +13 -0
- data/README.md +7 -1
- data/lib/stellar/account.rb +48 -1
- data/lib/stellar/amount.rb +6 -6
- data/lib/stellar/client.rb +12 -10
- data/lib/stellar/version.rb +1 -1
- data/ruby-stellar-sdk.gemspec +5 -2
- data/spec/config.yml.sample +10 -0
- data/spec/fixtures/vcr_cassettes/Stellar_Account/_lookup/should_handle_404_request_when_performing_federation_lookup.yml +133 -0
- data/spec/fixtures/vcr_cassettes/Stellar_Account/_lookup/should_handle_domains_that_are_not_federation_servers.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Stellar_Account/_lookup/should_peforms_federation_lookup.yml +85 -0
- data/spec/fixtures/vcr_cassettes/Stellar_Client/_create_account/creates_the_account.yml +323 -0
- data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/alphanum12_asset/sends_a_alphanum12_asset_to_the_destination.yml +448 -0
- data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/alphanum4_asset/sends_a_alphanum4_asset_to_the_destination.yml +448 -0
- data/spec/fixtures/vcr_cassettes/Stellar_Client/_send_payment/native_asset/sends_a_native_payment_to_the_account.yml +469 -0
- data/spec/lib/stellar/account_spec.rb +22 -0
- data/spec/lib/stellar/amount_spec.rb +70 -0
- data/spec/lib/stellar/client_spec.rb +115 -4
- data/spec/spec_helper.rb +2 -1
- data/spec/support/config.rb +3 -0
- data/spec/support/vcr.rb +10 -0
- data/tasks/travis.rake +1 -9
- metadata +75 -7
@@ -0,0 +1,448 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://horizon-testnet.stellar.org/
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.9.2
|
12
|
+
Accept:
|
13
|
+
- application/hal+json,application/problem+json,application/json
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
Content-Type:
|
20
|
+
- application/hal+json; charset=utf-8
|
21
|
+
Date:
|
22
|
+
- Sun, 26 Mar 2017 07:29:04 GMT
|
23
|
+
X-Ratelimit-Limit:
|
24
|
+
- '72000'
|
25
|
+
X-Ratelimit-Remaining:
|
26
|
+
- '71940'
|
27
|
+
X-Ratelimit-Reset:
|
28
|
+
- '2141'
|
29
|
+
Content-Length:
|
30
|
+
- '1366'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
body:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: |-
|
36
|
+
{
|
37
|
+
"_links": {
|
38
|
+
"account": {
|
39
|
+
"href": "https://horizon-testnet.stellar.org/accounts/{account_id}",
|
40
|
+
"templated": true
|
41
|
+
},
|
42
|
+
"account_transactions": {
|
43
|
+
"href": "https://horizon-testnet.stellar.org/accounts/{account_id}/transactions{?cursor,limit,order}",
|
44
|
+
"templated": true
|
45
|
+
},
|
46
|
+
"friendbot": {
|
47
|
+
"href": "https://horizon-testnet.stellar.org/friendbot{?addr}",
|
48
|
+
"templated": true
|
49
|
+
},
|
50
|
+
"metrics": {
|
51
|
+
"href": "https://horizon-testnet.stellar.org/metrics"
|
52
|
+
},
|
53
|
+
"order_book": {
|
54
|
+
"href": "https://horizon-testnet.stellar.org/order_book{?selling_asset_type,selling_asset_code,selling_issuer,buying_asset_type,buying_asset_code,buying_issuer}",
|
55
|
+
"templated": true
|
56
|
+
},
|
57
|
+
"self": {
|
58
|
+
"href": "https://horizon-testnet.stellar.org/"
|
59
|
+
},
|
60
|
+
"transaction": {
|
61
|
+
"href": "https://horizon-testnet.stellar.org/transactions/{hash}",
|
62
|
+
"templated": true
|
63
|
+
},
|
64
|
+
"transactions": {
|
65
|
+
"href": "https://horizon-testnet.stellar.org/transactions{?cursor,limit,order}",
|
66
|
+
"templated": true
|
67
|
+
}
|
68
|
+
},
|
69
|
+
"horizon_version": "v0.10.0-3-g50eda21",
|
70
|
+
"core_version": "v0.6.1-2-g12a1603",
|
71
|
+
"history_latest_ledger": 124863,
|
72
|
+
"history_elder_ledger": 1,
|
73
|
+
"core_latest_ledger": 124863,
|
74
|
+
"core_elder_ledger": 1,
|
75
|
+
"network_passphrase": "Test SDF Network ; September 2015",
|
76
|
+
"protocol_version": 4
|
77
|
+
}
|
78
|
+
http_version:
|
79
|
+
recorded_at: Sun, 26 Mar 2017 07:29:03 GMT
|
80
|
+
- request:
|
81
|
+
method: get
|
82
|
+
uri: https://horizon-testnet.stellar.org/accounts/[destination_address]
|
83
|
+
body:
|
84
|
+
encoding: US-ASCII
|
85
|
+
string: ''
|
86
|
+
headers:
|
87
|
+
User-Agent:
|
88
|
+
- Faraday v0.9.2
|
89
|
+
Accept:
|
90
|
+
- application/hal+json,application/problem+json,application/json
|
91
|
+
response:
|
92
|
+
status:
|
93
|
+
code: 200
|
94
|
+
message: OK
|
95
|
+
headers:
|
96
|
+
Content-Type:
|
97
|
+
- application/hal+json; charset=utf-8
|
98
|
+
Date:
|
99
|
+
- Sun, 26 Mar 2017 07:29:06 GMT
|
100
|
+
X-Ratelimit-Limit:
|
101
|
+
- '72000'
|
102
|
+
X-Ratelimit-Remaining:
|
103
|
+
- '71939'
|
104
|
+
X-Ratelimit-Reset:
|
105
|
+
- '2139'
|
106
|
+
Connection:
|
107
|
+
- keep-alive
|
108
|
+
body:
|
109
|
+
encoding: UTF-8
|
110
|
+
string: |-
|
111
|
+
{
|
112
|
+
"_links": {
|
113
|
+
"self": {
|
114
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]"
|
115
|
+
},
|
116
|
+
"transactions": {
|
117
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/transactions{?cursor,limit,order}",
|
118
|
+
"templated": true
|
119
|
+
},
|
120
|
+
"operations": {
|
121
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/operations{?cursor,limit,order}",
|
122
|
+
"templated": true
|
123
|
+
},
|
124
|
+
"payments": {
|
125
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/payments{?cursor,limit,order}",
|
126
|
+
"templated": true
|
127
|
+
},
|
128
|
+
"effects": {
|
129
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/effects{?cursor,limit,order}",
|
130
|
+
"templated": true
|
131
|
+
},
|
132
|
+
"offers": {
|
133
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/offers{?cursor,limit,order}",
|
134
|
+
"templated": true
|
135
|
+
},
|
136
|
+
"trades": {
|
137
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/trades{?cursor,limit,order}",
|
138
|
+
"templated": true
|
139
|
+
},
|
140
|
+
"data": {
|
141
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/data/{key}",
|
142
|
+
"templated": true
|
143
|
+
}
|
144
|
+
},
|
145
|
+
"id": "[destination_address]",
|
146
|
+
"paging_token": "",
|
147
|
+
"account_id": "[destination_address]",
|
148
|
+
"sequence": "534727723319299",
|
149
|
+
"subentry_count": 2,
|
150
|
+
"thresholds": {
|
151
|
+
"low_threshold": 0,
|
152
|
+
"med_threshold": 0,
|
153
|
+
"high_threshold": 0
|
154
|
+
},
|
155
|
+
"flags": {
|
156
|
+
"auth_required": false,
|
157
|
+
"auth_revocable": false
|
158
|
+
},
|
159
|
+
"balances": [
|
160
|
+
{
|
161
|
+
"balance": "0.0000000",
|
162
|
+
"limit": "922337203685.4775807",
|
163
|
+
"asset_type": "credit_alphanum12",
|
164
|
+
"asset_code": "LONGNAME",
|
165
|
+
"asset_issuer": "[source_address]"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"balance": "300.0000000",
|
169
|
+
"limit": "922337203685.4775807",
|
170
|
+
"asset_type": "credit_alphanum4",
|
171
|
+
"asset_code": "BTC",
|
172
|
+
"asset_issuer": "[source_address]"
|
173
|
+
},
|
174
|
+
{
|
175
|
+
"balance": "9999.9999700",
|
176
|
+
"asset_type": "native"
|
177
|
+
}
|
178
|
+
],
|
179
|
+
"signers": [
|
180
|
+
{
|
181
|
+
"public_key": "[destination_address]",
|
182
|
+
"weight": 1,
|
183
|
+
"key": "[destination_address]",
|
184
|
+
"type": "ed25519_public_key"
|
185
|
+
}
|
186
|
+
],
|
187
|
+
"data": {}
|
188
|
+
}
|
189
|
+
http_version:
|
190
|
+
recorded_at: Sun, 26 Mar 2017 07:29:05 GMT
|
191
|
+
- request:
|
192
|
+
method: get
|
193
|
+
uri: https://horizon-testnet.stellar.org/accounts/[source_address]
|
194
|
+
body:
|
195
|
+
encoding: US-ASCII
|
196
|
+
string: ''
|
197
|
+
headers:
|
198
|
+
User-Agent:
|
199
|
+
- Faraday v0.9.2
|
200
|
+
Accept:
|
201
|
+
- application/hal+json,application/problem+json,application/json
|
202
|
+
response:
|
203
|
+
status:
|
204
|
+
code: 200
|
205
|
+
message: OK
|
206
|
+
headers:
|
207
|
+
Content-Type:
|
208
|
+
- application/hal+json; charset=utf-8
|
209
|
+
Date:
|
210
|
+
- Sun, 26 Mar 2017 07:29:07 GMT
|
211
|
+
X-Ratelimit-Limit:
|
212
|
+
- '72000'
|
213
|
+
X-Ratelimit-Remaining:
|
214
|
+
- '71938'
|
215
|
+
X-Ratelimit-Reset:
|
216
|
+
- '2138'
|
217
|
+
Connection:
|
218
|
+
- keep-alive
|
219
|
+
body:
|
220
|
+
encoding: UTF-8
|
221
|
+
string: |-
|
222
|
+
{
|
223
|
+
"_links": {
|
224
|
+
"self": {
|
225
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]"
|
226
|
+
},
|
227
|
+
"transactions": {
|
228
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/transactions{?cursor,limit,order}",
|
229
|
+
"templated": true
|
230
|
+
},
|
231
|
+
"operations": {
|
232
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/operations{?cursor,limit,order}",
|
233
|
+
"templated": true
|
234
|
+
},
|
235
|
+
"payments": {
|
236
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/payments{?cursor,limit,order}",
|
237
|
+
"templated": true
|
238
|
+
},
|
239
|
+
"effects": {
|
240
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/effects{?cursor,limit,order}",
|
241
|
+
"templated": true
|
242
|
+
},
|
243
|
+
"offers": {
|
244
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/offers{?cursor,limit,order}",
|
245
|
+
"templated": true
|
246
|
+
},
|
247
|
+
"trades": {
|
248
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/trades{?cursor,limit,order}",
|
249
|
+
"templated": true
|
250
|
+
},
|
251
|
+
"data": {
|
252
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/data/{key}",
|
253
|
+
"templated": true
|
254
|
+
}
|
255
|
+
},
|
256
|
+
"id": "[source_address]",
|
257
|
+
"paging_token": "",
|
258
|
+
"account_id": "[source_address]",
|
259
|
+
"sequence": "346973227974696",
|
260
|
+
"subentry_count": 0,
|
261
|
+
"thresholds": {
|
262
|
+
"low_threshold": 0,
|
263
|
+
"med_threshold": 0,
|
264
|
+
"high_threshold": 0
|
265
|
+
},
|
266
|
+
"flags": {
|
267
|
+
"auth_required": false,
|
268
|
+
"auth_revocable": false
|
269
|
+
},
|
270
|
+
"balances": [
|
271
|
+
{
|
272
|
+
"balance": "4399.9998500",
|
273
|
+
"asset_type": "native"
|
274
|
+
}
|
275
|
+
],
|
276
|
+
"signers": [
|
277
|
+
{
|
278
|
+
"public_key": "[source_address]",
|
279
|
+
"weight": 1,
|
280
|
+
"key": "[source_address]",
|
281
|
+
"type": "ed25519_public_key"
|
282
|
+
}
|
283
|
+
],
|
284
|
+
"data": {}
|
285
|
+
}
|
286
|
+
http_version:
|
287
|
+
recorded_at: Sun, 26 Mar 2017 07:29:06 GMT
|
288
|
+
- request:
|
289
|
+
method: post
|
290
|
+
uri: https://horizon-testnet.stellar.org/transactions
|
291
|
+
body:
|
292
|
+
encoding: UTF-8
|
293
|
+
string: tx=AAAAAKEiSt7wL8zHIfwsJF5PvoI%2FqW7Epb2ihhiW7lxPpHJCAAAAZAABO5IAAAApAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAA8RA%2BPteVWFSF0ebzR9MQD1xUygu9t%2BQcKZWQYBZAumAAAAABQlRDAAAAAAChIkre8C%2FMxyH8LCReT76CP6luxKW9ooYYlu5cT6RyQgAAAABZaC8AAAAAAAAAAAFPpHJCAAAAQN59VbAYLZ5QTP%2FPgRKodGuAWDdIb5UKgI03ujYL%2FaS640wSVnxDWARvqYhcnc3epkBkV%2B%2Bgpfeq%2B%2B6uuNXD0AI%3D
|
294
|
+
headers:
|
295
|
+
User-Agent:
|
296
|
+
- Faraday v0.9.2
|
297
|
+
Accept:
|
298
|
+
- application/hal+json,application/problem+json,application/json
|
299
|
+
Content-Type:
|
300
|
+
- application/x-www-form-urlencoded
|
301
|
+
response:
|
302
|
+
status:
|
303
|
+
code: 200
|
304
|
+
message: OK
|
305
|
+
headers:
|
306
|
+
Content-Type:
|
307
|
+
- application/hal+json; charset=utf-8
|
308
|
+
Date:
|
309
|
+
- Sun, 26 Mar 2017 07:29:11 GMT
|
310
|
+
X-Ratelimit-Limit:
|
311
|
+
- '72000'
|
312
|
+
X-Ratelimit-Remaining:
|
313
|
+
- '71937'
|
314
|
+
X-Ratelimit-Reset:
|
315
|
+
- '2137'
|
316
|
+
Content-Length:
|
317
|
+
- '1039'
|
318
|
+
Connection:
|
319
|
+
- keep-alive
|
320
|
+
body:
|
321
|
+
encoding: UTF-8
|
322
|
+
string: |-
|
323
|
+
{
|
324
|
+
"_links": {
|
325
|
+
"transaction": {
|
326
|
+
"href": "https://horizon-testnet.stellar.org/transactions/538e77af044e06bc1392c8b202165894c068e10d019f6d953ad9ad79689e4ce1"
|
327
|
+
}
|
328
|
+
},
|
329
|
+
"hash": "538e77af044e06bc1392c8b202165894c068e10d019f6d953ad9ad79689e4ce1",
|
330
|
+
"ledger": 124865,
|
331
|
+
"envelope_xdr": "AAAAAKEiSt7wL8zHIfwsJF5PvoI/qW7Epb2ihhiW7lxPpHJCAAAAZAABO5IAAAApAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAA8RA+PteVWFSF0ebzR9MQD1xUygu9t+QcKZWQYBZAumAAAAABQlRDAAAAAAChIkre8C/MxyH8LCReT76CP6luxKW9ooYYlu5cT6RyQgAAAABZaC8AAAAAAAAAAAFPpHJCAAAAQN59VbAYLZ5QTP/PgRKodGuAWDdIb5UKgI03ujYL/aS640wSVnxDWARvqYhcnc3epkBkV++gpfeq++6uuNXD0AI=",
|
332
|
+
"result_xdr": "AAAAAAAAAGQAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAA=",
|
333
|
+
"result_meta_xdr": "AAAAAAAAAAEAAAACAAAAAwAB564AAAABAAAAAPEQPj7XlVhUhdHm80fTEA9cVMoLvbfkHCmVkGAWQLpgAAAAAUJUQwAAAAAAoSJK3vAvzMch/CwkXk++gj+pbsSlvaKGGJbuXE+kckIAAAAAstBeAH//////////AAAAAQAAAAAAAAAAAAAAAQAB58EAAAABAAAAAPEQPj7XlVhUhdHm80fTEA9cVMoLvbfkHCmVkGAWQLpgAAAAAUJUQwAAAAAAoSJK3vAvzMch/CwkXk++gj+pbsSlvaKGGJbuXE+kckIAAAABDDiNAH//////////AAAAAQAAAAAAAAAA"
|
334
|
+
}
|
335
|
+
http_version:
|
336
|
+
recorded_at: Sun, 26 Mar 2017 07:29:10 GMT
|
337
|
+
- request:
|
338
|
+
method: get
|
339
|
+
uri: https://horizon-testnet.stellar.org/accounts/[destination_address]
|
340
|
+
body:
|
341
|
+
encoding: US-ASCII
|
342
|
+
string: ''
|
343
|
+
headers:
|
344
|
+
User-Agent:
|
345
|
+
- Faraday v0.9.2
|
346
|
+
Accept:
|
347
|
+
- application/hal+json,application/problem+json,application/json
|
348
|
+
response:
|
349
|
+
status:
|
350
|
+
code: 200
|
351
|
+
message: OK
|
352
|
+
headers:
|
353
|
+
Content-Type:
|
354
|
+
- application/hal+json; charset=utf-8
|
355
|
+
Date:
|
356
|
+
- Sun, 26 Mar 2017 07:29:12 GMT
|
357
|
+
X-Ratelimit-Limit:
|
358
|
+
- '72000'
|
359
|
+
X-Ratelimit-Remaining:
|
360
|
+
- '71936'
|
361
|
+
X-Ratelimit-Reset:
|
362
|
+
- '2133'
|
363
|
+
Connection:
|
364
|
+
- keep-alive
|
365
|
+
body:
|
366
|
+
encoding: UTF-8
|
367
|
+
string: |-
|
368
|
+
{
|
369
|
+
"_links": {
|
370
|
+
"self": {
|
371
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]"
|
372
|
+
},
|
373
|
+
"transactions": {
|
374
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/transactions{?cursor,limit,order}",
|
375
|
+
"templated": true
|
376
|
+
},
|
377
|
+
"operations": {
|
378
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/operations{?cursor,limit,order}",
|
379
|
+
"templated": true
|
380
|
+
},
|
381
|
+
"payments": {
|
382
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/payments{?cursor,limit,order}",
|
383
|
+
"templated": true
|
384
|
+
},
|
385
|
+
"effects": {
|
386
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/effects{?cursor,limit,order}",
|
387
|
+
"templated": true
|
388
|
+
},
|
389
|
+
"offers": {
|
390
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/offers{?cursor,limit,order}",
|
391
|
+
"templated": true
|
392
|
+
},
|
393
|
+
"trades": {
|
394
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/trades{?cursor,limit,order}",
|
395
|
+
"templated": true
|
396
|
+
},
|
397
|
+
"data": {
|
398
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[destination_address]/data/{key}",
|
399
|
+
"templated": true
|
400
|
+
}
|
401
|
+
},
|
402
|
+
"id": "[destination_address]",
|
403
|
+
"paging_token": "",
|
404
|
+
"account_id": "[destination_address]",
|
405
|
+
"sequence": "534727723319299",
|
406
|
+
"subentry_count": 2,
|
407
|
+
"thresholds": {
|
408
|
+
"low_threshold": 0,
|
409
|
+
"med_threshold": 0,
|
410
|
+
"high_threshold": 0
|
411
|
+
},
|
412
|
+
"flags": {
|
413
|
+
"auth_required": false,
|
414
|
+
"auth_revocable": false
|
415
|
+
},
|
416
|
+
"balances": [
|
417
|
+
{
|
418
|
+
"balance": "0.0000000",
|
419
|
+
"limit": "922337203685.4775807",
|
420
|
+
"asset_type": "credit_alphanum12",
|
421
|
+
"asset_code": "LONGNAME",
|
422
|
+
"asset_issuer": "[source_address]"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"balance": "450.0000000",
|
426
|
+
"limit": "922337203685.4775807",
|
427
|
+
"asset_type": "credit_alphanum4",
|
428
|
+
"asset_code": "BTC",
|
429
|
+
"asset_issuer": "[source_address]"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"balance": "9999.9999700",
|
433
|
+
"asset_type": "native"
|
434
|
+
}
|
435
|
+
],
|
436
|
+
"signers": [
|
437
|
+
{
|
438
|
+
"public_key": "[destination_address]",
|
439
|
+
"weight": 1,
|
440
|
+
"key": "[destination_address]",
|
441
|
+
"type": "ed25519_public_key"
|
442
|
+
}
|
443
|
+
],
|
444
|
+
"data": {}
|
445
|
+
}
|
446
|
+
http_version:
|
447
|
+
recorded_at: Sun, 26 Mar 2017 07:29:11 GMT
|
448
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,469 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://horizon-testnet.stellar.org/
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.9.2
|
12
|
+
Accept:
|
13
|
+
- application/hal+json,application/problem+json,application/json
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
Content-Type:
|
20
|
+
- application/hal+json; charset=utf-8
|
21
|
+
Date:
|
22
|
+
- Sun, 26 Mar 2017 07:28:49 GMT
|
23
|
+
X-Ratelimit-Limit:
|
24
|
+
- '72000'
|
25
|
+
X-Ratelimit-Remaining:
|
26
|
+
- '71946'
|
27
|
+
X-Ratelimit-Reset:
|
28
|
+
- '2156'
|
29
|
+
Content-Length:
|
30
|
+
- '1366'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
body:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: |-
|
36
|
+
{
|
37
|
+
"_links": {
|
38
|
+
"account": {
|
39
|
+
"href": "https://horizon-testnet.stellar.org/accounts/{account_id}",
|
40
|
+
"templated": true
|
41
|
+
},
|
42
|
+
"account_transactions": {
|
43
|
+
"href": "https://horizon-testnet.stellar.org/accounts/{account_id}/transactions{?cursor,limit,order}",
|
44
|
+
"templated": true
|
45
|
+
},
|
46
|
+
"friendbot": {
|
47
|
+
"href": "https://horizon-testnet.stellar.org/friendbot{?addr}",
|
48
|
+
"templated": true
|
49
|
+
},
|
50
|
+
"metrics": {
|
51
|
+
"href": "https://horizon-testnet.stellar.org/metrics"
|
52
|
+
},
|
53
|
+
"order_book": {
|
54
|
+
"href": "https://horizon-testnet.stellar.org/order_book{?selling_asset_type,selling_asset_code,selling_issuer,buying_asset_type,buying_asset_code,buying_issuer}",
|
55
|
+
"templated": true
|
56
|
+
},
|
57
|
+
"self": {
|
58
|
+
"href": "https://horizon-testnet.stellar.org/"
|
59
|
+
},
|
60
|
+
"transaction": {
|
61
|
+
"href": "https://horizon-testnet.stellar.org/transactions/{hash}",
|
62
|
+
"templated": true
|
63
|
+
},
|
64
|
+
"transactions": {
|
65
|
+
"href": "https://horizon-testnet.stellar.org/transactions{?cursor,limit,order}",
|
66
|
+
"templated": true
|
67
|
+
}
|
68
|
+
},
|
69
|
+
"horizon_version": "v0.10.0-3-g50eda21",
|
70
|
+
"core_version": "v0.6.1-2-g12a1603",
|
71
|
+
"history_latest_ledger": 124860,
|
72
|
+
"history_elder_ledger": 1,
|
73
|
+
"core_latest_ledger": 124860,
|
74
|
+
"core_elder_ledger": 1,
|
75
|
+
"network_passphrase": "Test SDF Network ; September 2015",
|
76
|
+
"protocol_version": 4
|
77
|
+
}
|
78
|
+
http_version:
|
79
|
+
recorded_at: Sun, 26 Mar 2017 07:28:48 GMT
|
80
|
+
- request:
|
81
|
+
method: get
|
82
|
+
uri: https://horizon-testnet.stellar.org/accounts/[source_address]
|
83
|
+
body:
|
84
|
+
encoding: US-ASCII
|
85
|
+
string: ''
|
86
|
+
headers:
|
87
|
+
User-Agent:
|
88
|
+
- Faraday v0.9.2
|
89
|
+
Accept:
|
90
|
+
- application/hal+json,application/problem+json,application/json
|
91
|
+
response:
|
92
|
+
status:
|
93
|
+
code: 200
|
94
|
+
message: OK
|
95
|
+
headers:
|
96
|
+
Content-Type:
|
97
|
+
- application/hal+json; charset=utf-8
|
98
|
+
Date:
|
99
|
+
- Sun, 26 Mar 2017 07:28:50 GMT
|
100
|
+
X-Ratelimit-Limit:
|
101
|
+
- '72000'
|
102
|
+
X-Ratelimit-Remaining:
|
103
|
+
- '71945'
|
104
|
+
X-Ratelimit-Reset:
|
105
|
+
- '2155'
|
106
|
+
Connection:
|
107
|
+
- keep-alive
|
108
|
+
body:
|
109
|
+
encoding: UTF-8
|
110
|
+
string: |-
|
111
|
+
{
|
112
|
+
"_links": {
|
113
|
+
"self": {
|
114
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]"
|
115
|
+
},
|
116
|
+
"transactions": {
|
117
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/transactions{?cursor,limit,order}",
|
118
|
+
"templated": true
|
119
|
+
},
|
120
|
+
"operations": {
|
121
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/operations{?cursor,limit,order}",
|
122
|
+
"templated": true
|
123
|
+
},
|
124
|
+
"payments": {
|
125
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/payments{?cursor,limit,order}",
|
126
|
+
"templated": true
|
127
|
+
},
|
128
|
+
"effects": {
|
129
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/effects{?cursor,limit,order}",
|
130
|
+
"templated": true
|
131
|
+
},
|
132
|
+
"offers": {
|
133
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/offers{?cursor,limit,order}",
|
134
|
+
"templated": true
|
135
|
+
},
|
136
|
+
"trades": {
|
137
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/trades{?cursor,limit,order}",
|
138
|
+
"templated": true
|
139
|
+
},
|
140
|
+
"data": {
|
141
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/data/{key}",
|
142
|
+
"templated": true
|
143
|
+
}
|
144
|
+
},
|
145
|
+
"id": "[source_address]",
|
146
|
+
"paging_token": "",
|
147
|
+
"account_id": "[source_address]",
|
148
|
+
"sequence": "346973227974694",
|
149
|
+
"subentry_count": 0,
|
150
|
+
"thresholds": {
|
151
|
+
"low_threshold": 0,
|
152
|
+
"med_threshold": 0,
|
153
|
+
"high_threshold": 0
|
154
|
+
},
|
155
|
+
"flags": {
|
156
|
+
"auth_required": false,
|
157
|
+
"auth_revocable": false
|
158
|
+
},
|
159
|
+
"balances": [
|
160
|
+
{
|
161
|
+
"balance": "4749.9998600",
|
162
|
+
"asset_type": "native"
|
163
|
+
}
|
164
|
+
],
|
165
|
+
"signers": [
|
166
|
+
{
|
167
|
+
"public_key": "[source_address]",
|
168
|
+
"weight": 1,
|
169
|
+
"key": "[source_address]",
|
170
|
+
"type": "ed25519_public_key"
|
171
|
+
}
|
172
|
+
],
|
173
|
+
"data": {}
|
174
|
+
}
|
175
|
+
http_version:
|
176
|
+
recorded_at: Sun, 26 Mar 2017 07:28:49 GMT
|
177
|
+
- request:
|
178
|
+
method: post
|
179
|
+
uri: https://horizon-testnet.stellar.org/transactions
|
180
|
+
body:
|
181
|
+
encoding: UTF-8
|
182
|
+
string: tx=AAAAAKEiSt7wL8zHIfwsJF5PvoI%2FqW7Epb2ihhiW7lxPpHJCO5rKAAABO5IAAAAnAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAA3EVejc%2BkLyLyCCoS3V6dhSxNnPdQkAV2zvUkRTyAdLsAAAAAO5rKAAAAAAAAAAABT6RyQgAAAEBMVplDCKfB%2FOZaf%2FLGaOI3pLL00YzE%2FI%2Fyvsnmy5Y3oPNCHmIwkUDgTC5Eob7cXqGVpy92VdwjoMXeUz5Imz4E
|
183
|
+
headers:
|
184
|
+
User-Agent:
|
185
|
+
- Faraday v0.9.2
|
186
|
+
Accept:
|
187
|
+
- application/hal+json,application/problem+json,application/json
|
188
|
+
Content-Type:
|
189
|
+
- application/x-www-form-urlencoded
|
190
|
+
response:
|
191
|
+
status:
|
192
|
+
code: 200
|
193
|
+
message: OK
|
194
|
+
headers:
|
195
|
+
Content-Type:
|
196
|
+
- application/hal+json; charset=utf-8
|
197
|
+
Date:
|
198
|
+
- Sun, 26 Mar 2017 07:28:56 GMT
|
199
|
+
X-Ratelimit-Limit:
|
200
|
+
- '72000'
|
201
|
+
X-Ratelimit-Remaining:
|
202
|
+
- '71944'
|
203
|
+
X-Ratelimit-Reset:
|
204
|
+
- '2154'
|
205
|
+
Content-Length:
|
206
|
+
- '915'
|
207
|
+
Connection:
|
208
|
+
- keep-alive
|
209
|
+
body:
|
210
|
+
encoding: UTF-8
|
211
|
+
string: |-
|
212
|
+
{
|
213
|
+
"_links": {
|
214
|
+
"transaction": {
|
215
|
+
"href": "https://horizon-testnet.stellar.org/transactions/4e61a390afc10a26f6fe64470cff4f8b7e58a6dd237743d2e674343ae4edcf53"
|
216
|
+
}
|
217
|
+
},
|
218
|
+
"hash": "4e61a390afc10a26f6fe64470cff4f8b7e58a6dd237743d2e674343ae4edcf53",
|
219
|
+
"ledger": 124862,
|
220
|
+
"envelope_xdr": "AAAAAKEiSt7wL8zHIfwsJF5PvoI/qW7Epb2ihhiW7lxPpHJCO5rKAAABO5IAAAAnAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAA3EVejc+kLyLyCCoS3V6dhSxNnPdQkAV2zvUkRTyAdLsAAAAAO5rKAAAAAAAAAAABT6RyQgAAAEBMVplDCKfB/OZaf/LGaOI3pLL00YzE/I/yvsnmy5Y3oPNCHmIwkUDgTC5Eob7cXqGVpy92VdwjoMXeUz5Imz4E",
|
221
|
+
"result_xdr": "AAAAADuaygAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAA=",
|
222
|
+
"result_meta_xdr": "AAAAAAAAAAEAAAACAAAAAAAB574AAAAAAAAAANxFXo3PpC8i8ggqEt1enYUsTZz3UJAFds71JEU8gHS7AAAAADuaygAAAee+AAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAQAB574AAAAAAAAAAKEiSt7wL8zHIfwsJF5PvoI/qW7Epb2ihhiW7lxPpHJCAAAACpgC4YgAATuSAAAAJwAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAA"
|
223
|
+
}
|
224
|
+
http_version:
|
225
|
+
recorded_at: Sun, 26 Mar 2017 07:28:55 GMT
|
226
|
+
- request:
|
227
|
+
method: get
|
228
|
+
uri: https://horizon-testnet.stellar.org/accounts/[source_address]
|
229
|
+
body:
|
230
|
+
encoding: US-ASCII
|
231
|
+
string: ''
|
232
|
+
headers:
|
233
|
+
User-Agent:
|
234
|
+
- Faraday v0.9.2
|
235
|
+
Accept:
|
236
|
+
- application/hal+json,application/problem+json,application/json
|
237
|
+
response:
|
238
|
+
status:
|
239
|
+
code: 200
|
240
|
+
message: OK
|
241
|
+
headers:
|
242
|
+
Content-Type:
|
243
|
+
- application/hal+json; charset=utf-8
|
244
|
+
Date:
|
245
|
+
- Sun, 26 Mar 2017 07:28:58 GMT
|
246
|
+
X-Ratelimit-Limit:
|
247
|
+
- '72000'
|
248
|
+
X-Ratelimit-Remaining:
|
249
|
+
- '71943'
|
250
|
+
X-Ratelimit-Reset:
|
251
|
+
- '2147'
|
252
|
+
Connection:
|
253
|
+
- keep-alive
|
254
|
+
body:
|
255
|
+
encoding: UTF-8
|
256
|
+
string: |-
|
257
|
+
{
|
258
|
+
"_links": {
|
259
|
+
"self": {
|
260
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]"
|
261
|
+
},
|
262
|
+
"transactions": {
|
263
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/transactions{?cursor,limit,order}",
|
264
|
+
"templated": true
|
265
|
+
},
|
266
|
+
"operations": {
|
267
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/operations{?cursor,limit,order}",
|
268
|
+
"templated": true
|
269
|
+
},
|
270
|
+
"payments": {
|
271
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/payments{?cursor,limit,order}",
|
272
|
+
"templated": true
|
273
|
+
},
|
274
|
+
"effects": {
|
275
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/effects{?cursor,limit,order}",
|
276
|
+
"templated": true
|
277
|
+
},
|
278
|
+
"offers": {
|
279
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/offers{?cursor,limit,order}",
|
280
|
+
"templated": true
|
281
|
+
},
|
282
|
+
"trades": {
|
283
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/trades{?cursor,limit,order}",
|
284
|
+
"templated": true
|
285
|
+
},
|
286
|
+
"data": {
|
287
|
+
"href": "https://horizon-testnet.stellar.org/accounts/[source_address]/data/{key}",
|
288
|
+
"templated": true
|
289
|
+
}
|
290
|
+
},
|
291
|
+
"id": "[source_address]",
|
292
|
+
"paging_token": "",
|
293
|
+
"account_id": "[source_address]",
|
294
|
+
"sequence": "346973227974695",
|
295
|
+
"subentry_count": 0,
|
296
|
+
"thresholds": {
|
297
|
+
"low_threshold": 0,
|
298
|
+
"med_threshold": 0,
|
299
|
+
"high_threshold": 0
|
300
|
+
},
|
301
|
+
"flags": {
|
302
|
+
"auth_required": false,
|
303
|
+
"auth_revocable": false
|
304
|
+
},
|
305
|
+
"balances": [
|
306
|
+
{
|
307
|
+
"balance": "4549.9998600",
|
308
|
+
"asset_type": "native"
|
309
|
+
}
|
310
|
+
],
|
311
|
+
"signers": [
|
312
|
+
{
|
313
|
+
"public_key": "[source_address]",
|
314
|
+
"weight": 1,
|
315
|
+
"key": "[source_address]",
|
316
|
+
"type": "ed25519_public_key"
|
317
|
+
}
|
318
|
+
],
|
319
|
+
"data": {}
|
320
|
+
}
|
321
|
+
http_version:
|
322
|
+
recorded_at: Sun, 26 Mar 2017 07:28:57 GMT
|
323
|
+
- request:
|
324
|
+
method: post
|
325
|
+
uri: https://horizon-testnet.stellar.org/transactions
|
326
|
+
body:
|
327
|
+
encoding: UTF-8
|
328
|
+
string: tx=AAAAAKEiSt7wL8zHIfwsJF5PvoI%2FqW7Epb2ihhiW7lxPpHJCAAAAZAABO5IAAAAoAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAA3EVejc%2BkLyLyCCoS3V6dhSxNnPdQkAV2zvUkRTyAdLsAAAAAAAAAAFloLwAAAAAAAAAAAU%2BkckIAAABAtkN4J57xCr%2BBdg5TvYnp%2FC8LZBzFT891v%2BIKb8Cmq0gEHw79gVDWTY1%2FCZU4IhZ00v5nluViECmJ%2FDPnX0JTAQ%3D%3D
|
329
|
+
headers:
|
330
|
+
User-Agent:
|
331
|
+
- Faraday v0.9.2
|
332
|
+
Accept:
|
333
|
+
- application/hal+json,application/problem+json,application/json
|
334
|
+
Content-Type:
|
335
|
+
- application/x-www-form-urlencoded
|
336
|
+
response:
|
337
|
+
status:
|
338
|
+
code: 200
|
339
|
+
message: OK
|
340
|
+
headers:
|
341
|
+
Content-Type:
|
342
|
+
- application/hal+json; charset=utf-8
|
343
|
+
Date:
|
344
|
+
- Sun, 26 Mar 2017 07:29:01 GMT
|
345
|
+
X-Ratelimit-Limit:
|
346
|
+
- '72000'
|
347
|
+
X-Ratelimit-Remaining:
|
348
|
+
- '71942'
|
349
|
+
X-Ratelimit-Reset:
|
350
|
+
- '2146'
|
351
|
+
Content-Length:
|
352
|
+
- '1051'
|
353
|
+
Connection:
|
354
|
+
- keep-alive
|
355
|
+
body:
|
356
|
+
encoding: UTF-8
|
357
|
+
string: |-
|
358
|
+
{
|
359
|
+
"_links": {
|
360
|
+
"transaction": {
|
361
|
+
"href": "https://horizon-testnet.stellar.org/transactions/116d0ba7bd66f7d50141db0a78f2c8fe13a4bc87a47eeb1ec331fb5a0a347521"
|
362
|
+
}
|
363
|
+
},
|
364
|
+
"hash": "116d0ba7bd66f7d50141db0a78f2c8fe13a4bc87a47eeb1ec331fb5a0a347521",
|
365
|
+
"ledger": 124863,
|
366
|
+
"envelope_xdr": "AAAAAKEiSt7wL8zHIfwsJF5PvoI/qW7Epb2ihhiW7lxPpHJCAAAAZAABO5IAAAAoAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAA3EVejc+kLyLyCCoS3V6dhSxNnPdQkAV2zvUkRTyAdLsAAAAAAAAAAFloLwAAAAAAAAAAAU+kckIAAABAtkN4J57xCr+Bdg5TvYnp/C8LZBzFT891v+IKb8Cmq0gEHw79gVDWTY1/CZU4IhZ00v5nluViECmJ/DPnX0JTAQ==",
|
367
|
+
"result_xdr": "AAAAAAAAAGQAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAA=",
|
368
|
+
"result_meta_xdr": "AAAAAAAAAAEAAAADAAAAAQAB578AAAAAAAAAAKEiSt7wL8zHIfwsJF5PvoI/qW7Epb2ihhiW7lxPpHJCAAAACj6asiQAATuSAAAAKAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAwAB574AAAAAAAAAANxFXo3PpC8i8ggqEt1enYUsTZz3UJAFds71JEU8gHS7AAAAADuaygAAAee+AAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAQAB578AAAAAAAAAANxFXo3PpC8i8ggqEt1enYUsTZz3UJAFds71JEU8gHS7AAAAAJUC+QAAAee+AAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAA"
|
369
|
+
}
|
370
|
+
http_version:
|
371
|
+
recorded_at: Sun, 26 Mar 2017 07:29:00 GMT
|
372
|
+
- request:
|
373
|
+
method: get
|
374
|
+
uri: https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247
|
375
|
+
body:
|
376
|
+
encoding: US-ASCII
|
377
|
+
string: ''
|
378
|
+
headers:
|
379
|
+
User-Agent:
|
380
|
+
- Faraday v0.9.2
|
381
|
+
Accept:
|
382
|
+
- application/hal+json,application/problem+json,application/json
|
383
|
+
response:
|
384
|
+
status:
|
385
|
+
code: 200
|
386
|
+
message: OK
|
387
|
+
headers:
|
388
|
+
Content-Type:
|
389
|
+
- application/hal+json; charset=utf-8
|
390
|
+
Date:
|
391
|
+
- Sun, 26 Mar 2017 07:29:02 GMT
|
392
|
+
X-Ratelimit-Limit:
|
393
|
+
- '72000'
|
394
|
+
X-Ratelimit-Remaining:
|
395
|
+
- '71941'
|
396
|
+
X-Ratelimit-Reset:
|
397
|
+
- '2142'
|
398
|
+
Connection:
|
399
|
+
- keep-alive
|
400
|
+
body:
|
401
|
+
encoding: UTF-8
|
402
|
+
string: |-
|
403
|
+
{
|
404
|
+
"_links": {
|
405
|
+
"self": {
|
406
|
+
"href": "https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247"
|
407
|
+
},
|
408
|
+
"transactions": {
|
409
|
+
"href": "https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247/transactions{?cursor,limit,order}",
|
410
|
+
"templated": true
|
411
|
+
},
|
412
|
+
"operations": {
|
413
|
+
"href": "https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247/operations{?cursor,limit,order}",
|
414
|
+
"templated": true
|
415
|
+
},
|
416
|
+
"payments": {
|
417
|
+
"href": "https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247/payments{?cursor,limit,order}",
|
418
|
+
"templated": true
|
419
|
+
},
|
420
|
+
"effects": {
|
421
|
+
"href": "https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247/effects{?cursor,limit,order}",
|
422
|
+
"templated": true
|
423
|
+
},
|
424
|
+
"offers": {
|
425
|
+
"href": "https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247/offers{?cursor,limit,order}",
|
426
|
+
"templated": true
|
427
|
+
},
|
428
|
+
"trades": {
|
429
|
+
"href": "https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247/trades{?cursor,limit,order}",
|
430
|
+
"templated": true
|
431
|
+
},
|
432
|
+
"data": {
|
433
|
+
"href": "https://horizon-testnet.stellar.org/accounts/GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247/data/{key}",
|
434
|
+
"templated": true
|
435
|
+
}
|
436
|
+
},
|
437
|
+
"id": "GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247",
|
438
|
+
"paging_token": "",
|
439
|
+
"account_id": "GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247",
|
440
|
+
"sequence": "536278206513152",
|
441
|
+
"subentry_count": 0,
|
442
|
+
"thresholds": {
|
443
|
+
"low_threshold": 0,
|
444
|
+
"med_threshold": 0,
|
445
|
+
"high_threshold": 0
|
446
|
+
},
|
447
|
+
"flags": {
|
448
|
+
"auth_required": false,
|
449
|
+
"auth_revocable": false
|
450
|
+
},
|
451
|
+
"balances": [
|
452
|
+
{
|
453
|
+
"balance": "250.0000000",
|
454
|
+
"asset_type": "native"
|
455
|
+
}
|
456
|
+
],
|
457
|
+
"signers": [
|
458
|
+
{
|
459
|
+
"public_key": "GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247",
|
460
|
+
"weight": 1,
|
461
|
+
"key": "GDOEKXUNZ6SC6IXSBAVBFXK6TWCSYTM465IJABLWZ32SIRJ4QB2LW247",
|
462
|
+
"type": "ed25519_public_key"
|
463
|
+
}
|
464
|
+
],
|
465
|
+
"data": {}
|
466
|
+
}
|
467
|
+
http_version:
|
468
|
+
recorded_at: Sun, 26 Mar 2017 07:29:01 GMT
|
469
|
+
recorded_with: VCR 3.0.3
|