horizon icon indicating copy to clipboard operation
horizon copied to clipboard

This repository has moved to the go monorepo: https://github.com/stellar/go/tree/master/services/horizon

Results 54 horizon issues
Sort by recently updated
recently updated
newest added

The only trade related effect I've seen in the ledger is 'trade'. None of the others show up.

I am starting a docker with stellar/quickstart image docker run --rm -it -p "8000:8000" --name stellar stellar/quickstart --testnet The response, I get from the friendbot is a redirect For example,...

When I call `curl https://horizon.stellar.org/assets?cursor=ACT_GBANK7OKSC2AVD6HQM65XRBHBH3F76PYDHJCWLVUDR5JBVWFGLVQMPZA_credit_alphanum4&limit=10&order=desc` it does not give me correct list of previous assets. Instead of giving list of last 10 (as per limit), I guess it just goes...

when I call this api ` curl https://horizon.stellar.org/assets?cursor=abdt_GDZURZR6RZKIQVOWZFWPVAUBMLLBQGXP2K5E5G7PEOV75IYPDFA36WK4_credit_alphanum4&limit=3&order=asc` it gives me list of 10 records instead of 3.

Being able to request a specific amount from the friendbot would be quite handy. Is there any reason for the constant amount? Restricting the amount to

Consider this snippet (via js-stellar-sdk) for attaching to an account's effects stream: ``` var futurePayments = Remote.getServer().effects().forAccount(accountId); var paymentsCloseHandle = futurePayments.stream({ onmessage: function (effect) { effectHandler(effect); // process the new...

The default `limit` parameter affects streams, meaning that a stream is closed when 10 events are reached. I would expect such a stream to remain open indefinitely; the concept of...

I didn't set INGEST=true at the beginning and now I wanted to import all historical data from stellar-core. I did "horizon db reingest", but accounts, assets and effects data was...

The zero prices are a result of migrating the db without re-ingesting

Hey guys, I've been getting this error while trying to get trade history and trade aggregations (both using SDK and Stellar labs) and I want to know if it's just...