Bartek Nowotarski

Results 62 issues of Bartek Nowotarski

Horizon [0.19.0](https://github.com/stellar/go/releases/tag/horizon-v0.19.0) added `join` parameter that merges transaction data (including memo) into `/payments` response. This will improve loading time of memos in the payments history table.

enhancement
Good first issue

https://github.com/chatch/stellar-hd-wallet

https://github.com/stellar/account-viewer/blob/master/controllers/send-widget.controller.es6 ```js let minimumBalance = 20 + (account.subentry_count) * 10; let nativeBalance = _(account.balances).find(balance => balance.asset_type === 'native').balance; let maxSend = new BigNumber(nativeBalance).minus(minimumBalance); if (maxSend.lt(this.amount)) { throw new BasicClientError('InsufficientBalanceError', {maxSend});...

help wanted

I think it should return [`202 Accepted`](https://httpstatuses.com/202) instead. Developer would have to resubmit a transaction to check it's status.

help wanted

https://github.com/stellar/horizon/issues/253

help wanted

Try to run a following code: ``` js var server = new StellarSdk.Server({hostname:'horizon-testnet.stellar.org', secure:true, port:443}); var count = 0; server.accounts() .stream({ onmessage: function(msg) { console.log('msg '+(++count)); }, onerror: function(err) {...

https://sentry.io/stellarorg/stellar-horizon/issues/353240589

```go // Inflate expands a problem with contextal information. // At present it adds the request's id as the problem's Instance, if available. func Inflate(ctx context.Context, p *P) { //TODO:...

One of docker containers timeouts when making `POST /transactions` request. Transaction, however, is successfully added to the ledger. Would be great to have more log entries in this procedure to...

@johansten in https://github.com/stellar/js-stellar-base/issues/66: This would be an API breaking change, but can you please take a look at how you handle assets? Seriously, assets are delivered as: source_asset_type source_asset_code source_asset_issuer...