Releases: rodentrabies/bp
bp 0.0.5
- [BREAKING] All slash-separated package names were replaced
with dot-separated ones (e.g.bp/crypto/secp256k1
became
bp.crypto.secp256k1
). The old package names are still available as
aliases, but will be removed in the future. Package names
bp.crypto
,bp.net
andbp.rpc
should be used instead of aliases
bpcrypto
,bpnet
andbprpc
, which will be removed in the future
as well.
bp 0.0.4
-
New representation format for
OP_PUSHDATA*
script commands now
includes a byte sequence representation of the length of the payload
to ensure(serialize (parse ...))
produces the same byte sequence
even for scripts with unexpected ends. -
Functions
bp.crypto.secp256k1:context-create-{none,sign,verify}
for context initialization no longer exist and their functionality
has been replaced withbp.crypto.secp256k1::context-create
and
bp.crypto.secp256k1::context-randomize
which are unexported. -
The RPC-based chain supplier
bp:node-connection
was renamed to
bp.rpc:node-rpc-connection
for clarity. It is still possible to
use thebp:node-connection
name, but it will issue a warning and
will be removed in one of the next0.0.*
releases. -
[BREAKING] Functions
bp:to-hex
andbp:from-hex
were
renamed tobp:hex-encode
andbp:hex-decode
respectively for
consistency with other encoding functions.