bb8 icon indicating copy to clipboard operation
bb8 copied to clipboard

a command line interface to Stellar networks

Results 8 bb8 issues
Sort by recently updated
recently updated
newest added

I was looking for a command line tool that could build a stellar transaction * without the use of secret keys * return the xdr I think I found it...

Add the operations streaming feature. Start date can be given : closest cursor is found with dichotomy method & LoadOperations() api endpoint. Deps are vendorised since StreamOperations() is not yet...

The parameter names across different operations for custom assets is somewhat non-standard. In send-payments they are called "token" and "issuer" In change-trust they are called "code" and "issuer_address" The allow-trust,...

discovered by @MikeFair: > _I went to delete a piece of managed_data using bb8 the other day; I tried `{ ... "fieldName": null}` but bb8 didn't want to take it;...

I noticed the ability to manage offers on the DEX was missing. This may or may not apply to allowing path payments; they are rather complicated to submit.

```sh $ bb gen-keys foo --suffix droid ## keys are created and stored in: foo.pub and foo ``` ```sh $ cat foo.pub ## GBVD3T3OYKMWSIOFPUDSCMFGSIXN36U7WI5TGAMIW554OKIOVZ2DROID ```

Every operation creates a transaction header with a source account, sequence, network, etc.. So if a new command such as `new-tx` is added it may be composed with any other...

Allow STDIN to supply the JSON input to bb8 `cat someFileWithChangeTrustOp.js | bb8 change-trust -- ` Also allow the command to come from the JSON itself: ``` { "bb8_cmd":{ "command":"change-trust",...