Phoenix
Phoenix
The SPA Listings link in the [README file](https://github.com/mmikowski/urianchor#example-implementation) links to https://github.com/mmikowski/urianchor/blob/master/10 which does not appear to exist.
Example markdown: `````` 1. List Item ``` # Code Block # With Newlines ``` `````` Renders like this in Github: 1. List Item ``` # Code Block # With Newlines...
**Important:** Co-ordinate this change with the other IOTA API libraries, to ensure behaviour remains consistent. If there are no transactions for the generated addresses (e.g., after a snapshot), `get_account_data()` always...
When `StrictIota.__init__` is invoked, permit the developer to specify `testnet=None`. In this case, the API instance will issue a `getNodeInfo` command and detect the IRI version automatically. Requirements: - Convert...
Remove the following symbols from `iota/transaction/__init__.py`: ```python # Import symbols to package namespace, for backwards-compatibility with # PyOTA 1.1.x. from .base import * from .creation import * from .types import...
Many of PyOTA's unit test rely on heavy use of mocks, which reduces the value of the test coverage significantly. A more robust approach would be to set up automated...
Once an invalid transaction gets broadcast, it is very difficult to remove it from the Tangle. This can effectively prevent a client from using the `get_account_data()` command (see #178 )....
Implement an adapter wrapper that, given a collection of `AdapterSpec` objects will route each API request to a random node. If a connection failure occurs (e.g., timeout or connection refused)...
Implement an adapter wrapper that, given a collection of `AdapterSpec` objects will route each API request in a round-robin fashion. If a connection failure occurs (e.g., timeout or connection refused)...
Add support for creating and participating in [Flash Channels](https://blog.iota.org/instant-feeless-flash-channels-88572d9a4385) Refer to the [Javascript library](https://github.com/iotaledger/iota.flash.js) for requirements and reference implementation.