forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
432 lines (377 loc) · 17.2 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/*
Package horizonclient provides client access to a Horizon server, allowing an application to post transactions and look up ledger information.
This library provides an interface to the Stellar Horizon service. It supports the building of Go applications on
top of the Stellar network (https://www.stellar.org/). Transactions may be constructed using the sister package to
this one, txnbuild (https://github.com/stellar/go/tree/master/txnbuild), and then submitted with this client to any
Horizon instance for processing onto the ledger. Together, these two libraries provide a complete Stellar SDK.
For more information and further examples, see https://www.stellar.org/developers/go/reference/index.html.
*/
package horizonclient
import (
"context"
"errors"
"net/http"
"net/url"
"sync"
"time"
hProtocol "github.com/stellar/go/protocols/horizon"
"github.com/stellar/go/protocols/horizon/effects"
"github.com/stellar/go/protocols/horizon/operations"
"github.com/stellar/go/support/clock"
"github.com/stellar/go/support/render/problem"
"github.com/stellar/go/txnbuild"
)
// cursor represents `cursor` param in queries
type cursor string
// limit represents `limit` param in queries
type limit uint
// Order represents `order` param in queries
type Order string
// assetCode represets `asset_code` param in queries
type assetCode string
// assetIssuer represents `asset_issuer` param in queries
type assetIssuer string
// includeFailed represents `include_failed` param in queries
type includeFailed bool
// AssetType represents `asset_type` param in queries
type AssetType string
// join represents `join` param in queries
type join string
const (
// OrderAsc represents an ascending order parameter
OrderAsc Order = "asc"
// OrderDesc represents an descending order parameter
OrderDesc Order = "desc"
// AssetType4 represents an asset type that is 4 characters long
AssetType4 AssetType = "credit_alphanum4"
// AssetType12 represents an asset type that is 12 characters long
AssetType12 AssetType = "credit_alphanum12"
// AssetTypeNative represents the asset type for Stellar Lumens (XLM)
AssetTypeNative AssetType = "native"
// accountRequiresMemo is the base64 encoding of "1".
// SEP 29 uses this value to define transaction memo requirements for incoming payments.
accountRequiresMemo = "MQ=="
)
// Error struct contains the problem returned by Horizon
type Error struct {
Response *http.Response
Problem problem.P
}
var (
// ErrResultCodesNotPopulated is the error returned from a call to
// ResultCodes() against a `Problem` value that doesn't have the
// "result_codes" extra field populated when it is expected to be.
ErrResultCodesNotPopulated = errors.New("result_codes not populated")
// ErrEnvelopeNotPopulated is the error returned from a call to
// Envelope() against a `Problem` value that doesn't have the
// "envelope_xdr" extra field populated when it is expected to be.
ErrEnvelopeNotPopulated = errors.New("envelope_xdr not populated")
// ErrResultNotPopulated is the error returned from a call to
// Result() against a `Problem` value that doesn't have the
// "result_xdr" extra field populated when it is expected to be.
ErrResultNotPopulated = errors.New("result_xdr not populated")
// ErrAccountRequiresMemo is the error returned from a call to checkMemoRequired
// when any of the destination accounts required a memo in the transaction.
ErrAccountRequiresMemo = errors.New("destination account requires a memo in the transaction")
// HorizonTimeout is the default number of nanoseconds before a request to horizon times out.
HorizonTimeout = 60 * time.Second
// MinuteResolution represents 1 minute used as `resolution` parameter in trade aggregation
MinuteResolution = time.Duration(1 * time.Minute)
// FiveMinuteResolution represents 5 minutes used as `resolution` parameter in trade aggregation
FiveMinuteResolution = time.Duration(5 * time.Minute)
// FifteenMinuteResolution represents 15 minutes used as `resolution` parameter in trade aggregation
FifteenMinuteResolution = time.Duration(15 * time.Minute)
// HourResolution represents 1 hour used as `resolution` parameter in trade aggregation
HourResolution = time.Duration(1 * time.Hour)
// DayResolution represents 1 day used as `resolution` parameter in trade aggregation
DayResolution = time.Duration(24 * time.Hour)
// WeekResolution represents 1 week used as `resolution` parameter in trade aggregation
WeekResolution = time.Duration(168 * time.Hour)
)
// HTTP represents the HTTP client that a horizon client uses to communicate
type HTTP interface {
Do(req *http.Request) (resp *http.Response, err error)
Get(url string) (resp *http.Response, err error)
PostForm(url string, data url.Values) (resp *http.Response, err error)
}
// UniversalTimeHandler is a function that is called to return the UTC unix time in seconds.
// This handler is used when getting the time from a horizon server, which can be used to calculate
// transaction timebounds.
type UniversalTimeHandler func() int64
// Client struct contains data for creating a horizon client that connects to the stellar network.
type Client struct {
// URL of Horizon server to connect
HorizonURL string
// HTTP client to make requests with
HTTP HTTP
// AppName is the name of the application using the horizonclient package
AppName string
// AppVersion is the version of the application using the horizonclient package
AppVersion string
horizonTimeout time.Duration
isTestNet bool
// clock is a Clock returning the current time.
clock *clock.Clock
}
// SubmitTxOpts represents the submit transaction options
type SubmitTxOpts struct {
SkipMemoRequiredCheck bool
}
// ClientInterface contains methods implemented by the horizon client
type ClientInterface interface {
Accounts(request AccountsRequest) (hProtocol.AccountsPage, error)
AccountDetail(request AccountRequest) (hProtocol.Account, error)
AccountData(request AccountRequest) (hProtocol.AccountData, error)
Effects(request EffectRequest) (effects.EffectsPage, error)
Assets(request AssetRequest) (hProtocol.AssetsPage, error)
Ledgers(request LedgerRequest) (hProtocol.LedgersPage, error)
LedgerDetail(sequence uint32) (hProtocol.Ledger, error)
FeeStats() (hProtocol.FeeStats, error)
Offers(request OfferRequest) (hProtocol.OffersPage, error)
OfferDetails(offerID string) (offer hProtocol.Offer, err error)
Operations(request OperationRequest) (operations.OperationsPage, error)
OperationDetail(id string) (operations.Operation, error)
SubmitTransactionXDR(transactionXdr string) (hProtocol.Transaction, error)
SubmitFeeBumpTransactionWithOptions(transaction *txnbuild.FeeBumpTransaction, opts SubmitTxOpts) (hProtocol.Transaction, error)
SubmitTransactionWithOptions(transaction *txnbuild.Transaction, opts SubmitTxOpts) (hProtocol.Transaction, error)
SubmitFeeBumpTransaction(transaction *txnbuild.FeeBumpTransaction) (hProtocol.Transaction, error)
SubmitTransaction(transaction *txnbuild.Transaction) (hProtocol.Transaction, error)
Transactions(request TransactionRequest) (hProtocol.TransactionsPage, error)
TransactionDetail(txHash string) (hProtocol.Transaction, error)
OrderBook(request OrderBookRequest) (hProtocol.OrderBookSummary, error)
Paths(request PathsRequest) (hProtocol.PathsPage, error)
Payments(request OperationRequest) (operations.OperationsPage, error)
TradeAggregations(request TradeAggregationRequest) (hProtocol.TradeAggregationsPage, error)
Trades(request TradeRequest) (hProtocol.TradesPage, error)
Fund(addr string) (hProtocol.Transaction, error)
StreamTransactions(ctx context.Context, request TransactionRequest, handler TransactionHandler) error
StreamTrades(ctx context.Context, request TradeRequest, handler TradeHandler) error
StreamEffects(ctx context.Context, request EffectRequest, handler EffectHandler) error
StreamOperations(ctx context.Context, request OperationRequest, handler OperationHandler) error
StreamPayments(ctx context.Context, request OperationRequest, handler OperationHandler) error
StreamOffers(ctx context.Context, request OfferRequest, handler OfferHandler) error
StreamLedgers(ctx context.Context, request LedgerRequest, handler LedgerHandler) error
StreamOrderBooks(ctx context.Context, request OrderBookRequest, handler OrderBookHandler) error
Root() (hProtocol.Root, error)
NextAccountsPage(hProtocol.AccountsPage) (hProtocol.AccountsPage, error)
NextAssetsPage(hProtocol.AssetsPage) (hProtocol.AssetsPage, error)
PrevAssetsPage(hProtocol.AssetsPage) (hProtocol.AssetsPage, error)
NextLedgersPage(hProtocol.LedgersPage) (hProtocol.LedgersPage, error)
PrevLedgersPage(hProtocol.LedgersPage) (hProtocol.LedgersPage, error)
NextEffectsPage(effects.EffectsPage) (effects.EffectsPage, error)
PrevEffectsPage(effects.EffectsPage) (effects.EffectsPage, error)
NextTransactionsPage(hProtocol.TransactionsPage) (hProtocol.TransactionsPage, error)
PrevTransactionsPage(hProtocol.TransactionsPage) (hProtocol.TransactionsPage, error)
NextOperationsPage(operations.OperationsPage) (operations.OperationsPage, error)
PrevOperationsPage(operations.OperationsPage) (operations.OperationsPage, error)
NextPaymentsPage(operations.OperationsPage) (operations.OperationsPage, error)
PrevPaymentsPage(operations.OperationsPage) (operations.OperationsPage, error)
NextOffersPage(hProtocol.OffersPage) (hProtocol.OffersPage, error)
PrevOffersPage(hProtocol.OffersPage) (hProtocol.OffersPage, error)
NextTradesPage(hProtocol.TradesPage) (hProtocol.TradesPage, error)
PrevTradesPage(hProtocol.TradesPage) (hProtocol.TradesPage, error)
HomeDomainForAccount(aid string) (string, error)
NextTradeAggregationsPage(hProtocol.TradeAggregationsPage) (hProtocol.TradeAggregationsPage, error)
PrevTradeAggregationsPage(hProtocol.TradeAggregationsPage) (hProtocol.TradeAggregationsPage, error)
}
// DefaultTestNetClient is a default client to connect to test network.
var DefaultTestNetClient = &Client{
HorizonURL: "https://horizon-testnet.stellar.org/",
HTTP: http.DefaultClient,
horizonTimeout: HorizonTimeout,
isTestNet: true,
}
// DefaultPublicNetClient is a default client to connect to public network.
var DefaultPublicNetClient = &Client{
HorizonURL: "https://horizon.stellar.org/",
HTTP: http.DefaultClient,
horizonTimeout: HorizonTimeout,
}
// HorizonRequest contains methods implemented by request structs for horizon endpoints.
type HorizonRequest interface {
BuildURL() (string, error)
}
// AccountsRequest struct contains data for making requests to the accounts endpoint of a horizon server.
// Either "Signer" or "Asset" fields should be set when retrieving Accounts.
// At the moment, you can't use both filters at the same time.
type AccountsRequest struct {
Signer string
Asset string
Order Order
Cursor string
Limit uint
}
// AccountRequest struct contains data for making requests to the show account endpoint of a horizon server.
// "AccountID" and "DataKey" fields should both be set when retrieving AccountData.
// When getting the AccountDetail, only "AccountID" needs to be set.
type AccountRequest struct {
AccountID string
DataKey string
}
// EffectRequest struct contains data for getting effects from a horizon server.
// "ForAccount", "ForLedger", "ForOperation" and "ForTransaction": Not more than one of these
// can be set at a time. If none are set, the default is to return all effects.
// The query parameters (Order, Cursor and Limit) are optional. All or none can be set.
type EffectRequest struct {
ForAccount string
ForLedger string
ForOperation string
ForTransaction string
Order Order
Cursor string
Limit uint
}
// AssetRequest struct contains data for getting asset details from a horizon server.
// If "ForAssetCode" and "ForAssetIssuer" are not set, it returns all assets.
// The query parameters (Order, Cursor and Limit) are optional. All or none can be set.
type AssetRequest struct {
ForAssetCode string
ForAssetIssuer string
Order Order
Cursor string
Limit uint
}
// LedgerRequest struct contains data for getting ledger details from a horizon server.
// The query parameters (Order, Cursor and Limit) are optional. All or none can be set.
type LedgerRequest struct {
Order Order
Cursor string
Limit uint
forSequence uint32
}
type feeStatsRequest struct {
endpoint string
}
// OfferRequest struct contains data for getting offers made by an account from a horizon server.
// The query parameters (Order, Cursor and Limit) are optional. All or none can be set.
type OfferRequest struct {
OfferID string
ForAccount string
Selling string
Seller string
Buying string
Order Order
Cursor string
Limit uint
}
// OperationRequest struct contains data for getting operation details from a horizon server.
// "ForAccount", "ForLedger", "ForTransaction": Only one of these can be set at a time. If none
// are provided, the default is to return all operations.
// The query parameters (Order, Cursor, Limit and IncludeFailed) are optional. All or none can be set.
type OperationRequest struct {
ForAccount string
ForClaimableBalance string
ForLedger uint
ForTransaction string
forOperationID string
Order Order
Cursor string
Limit uint
IncludeFailed bool
Join string
endpoint string
}
type submitRequest struct {
endpoint string
transactionXdr string
}
// TransactionRequest struct contains data for getting transaction details from a horizon server.
// "ForAccount", "ForClaimableBalance", "ForLedger": Only one of these can be set at a time.
// If none are provided, the default is to return all transactions.
// The query parameters (Order, Cursor, Limit and IncludeFailed) are optional. All or none can be set.
type TransactionRequest struct {
ForAccount string
ForClaimableBalance string
ForLedger uint
forTransactionHash string
Order Order
Cursor string
Limit uint
IncludeFailed bool
}
// OrderBookRequest struct contains data for getting the orderbook for an asset pair from a horizon server.
// Limit is optional. All other parameters are required.
type OrderBookRequest struct {
SellingAssetType AssetType
SellingAssetCode string
SellingAssetIssuer string
BuyingAssetType AssetType
BuyingAssetCode string
BuyingAssetIssuer string
Limit uint
}
// PathsRequest struct contains data for getting available strict receive path payments from a horizon server.
// All the Destination related parameters are required and you need to include either
// SourceAccount or SourceAssets.
// See https://www.stellar.org/developers/horizon/reference/endpoints/path-finding-strict-receive.html
type PathsRequest struct {
DestinationAccount string
DestinationAssetType AssetType
DestinationAssetCode string
DestinationAssetIssuer string
DestinationAmount string
SourceAccount string
SourceAssets string
}
// StrictSendPathsRequest struct contains data for getting available strict send path payments from a horizon server.
// All the Source related parameters are required and you need to include either
// DestinationAccount or DestinationAssets.
// See https://www.stellar.org/developers/horizon/reference/endpoints/path-finding-strict-send.html
type StrictSendPathsRequest struct {
DestinationAccount string
DestinationAssets string
SourceAssetType AssetType
SourceAssetCode string
SourceAssetIssuer string
SourceAmount string
}
// TradeRequest struct contains data for getting trade details from a horizon server.
// "ForAccount", "ForOfferID": Only one of these can be set at a time. If none are provided, the
// default is to return all trades.
// All other query parameters are optional. All or none can be set.
type TradeRequest struct {
ForOfferID string
ForAccount string
BaseAssetType AssetType
BaseAssetCode string
BaseAssetIssuer string
CounterAssetType AssetType
CounterAssetCode string
CounterAssetIssuer string
Order Order
Cursor string
Limit uint
}
// TradeAggregationRequest struct contains data for getting trade aggregations from a horizon server.
// The query parameters (Order and Limit) are optional. All or none can be set.
// All other parameters are required.
type TradeAggregationRequest struct {
StartTime time.Time
EndTime time.Time
Resolution time.Duration
Offset time.Duration
BaseAssetType AssetType
BaseAssetCode string
BaseAssetIssuer string
CounterAssetType AssetType
CounterAssetCode string
CounterAssetIssuer string
Order Order
Limit uint
}
// ClaimableBalanceRequest contains data about claimable balances.
// The filters are optional (all added except Asset)
type ClaimableBalanceRequest struct {
ID string
Asset string
Sponsor string
Claimant string
}
// ServerTimeRecord contains data for the current unix time of a horizon server instance, and the local time when it was recorded.
type ServerTimeRecord struct {
ServerTime int64
LocalTimeRecorded int64
}
// ServerTimeMap holds the ServerTimeRecord for different horizon instances.
var ServerTimeMap = make(map[string]ServerTimeRecord)
var serverTimeMapMutex = &sync.Mutex{}