Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple spend p2sh #40

Merged
merged 5 commits into from
Jan 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ We can also get details on its transaction(s):
'tx_url': 'https://api.blockcypher.com/v1/btc/main/txs/'}
```

Another cool feature is that we can generate a new address keypair server-side:
Another cool feature is that we can generate a new address keypair server-side, but you should really do this client-side:
```
>>> blockcypher.generate_new_address()
{'public': '03c87d1bba027204670c975d01e813d4a20ba4f79500802ba0d51ce3393fb86c1f',
Expand All @@ -268,3 +268,6 @@ For example, here's the latest Litecoin block height.
>>> blockcypher.get_latest_block_height(coin_symbol='ltc')
678686
```

#### Pull Requests Welcome
Please note that all PRs require test coverage in `test_blockcypher.py`.
1 change: 1 addition & 0 deletions blockcypher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
from .api import make_tx_signatures
from .api import broadcast_signed_transaction
from .api import simple_spend
from .api import simple_spend_p2sh
from .api import embed_data
from .api import get_metadata
from .api import put_metadata
Expand Down
Loading