Releases: stellar/js-stellar-base
Releases · stellar/js-stellar-base
v0.10.0
- Breaking change Added
TransactionBuilder.setTimeout
method that setstimebounds.max_time
on a transaction. Because of the distributed nature of the Stellar network it is possible that the status of your transaction will be determined after a long time if the network is highly congested. If you want to be sure to receive the status of the transaction within a given period you should set the TimeBounds withmaxTime
on the transaction (this is whatsetTimeout
does internally; if there'sminTime
set but nomaxTime
it will be added). Call toTransactionBuilder.setTimeout
is required if Transaction does not havemax_time
set. If you don't want to set timeout, useTimeoutInfinite
. In general you should setTimeoutInfinite
only in smart contracts. Please checkTransactionBuilder.setTimeout
docs for more information. - Fixed decoding empty
homeDomain
.
v0.9.0
v0.8.3
v0.8.2
v0.8.1
v0.8.0
v0.7.8
v0.7.7
v0.7.6
v0.7.5
Keypair.constructor
now requirestype
field to define public-key signature system used in this instance (soKeypair
can support other systems in a future). It also checks if public key and secret key match if both are passed (to prevent nasty bugs).Keypair.fromRawSeed
has been renamed toKeypair.fromRawEd25519Seed
to make it clear that the seed must be Ed25519 seed.- It's now possible to instantiate
Memo
class so it's easier to check it's type and value (without dealing with low levelxdr.Memo
objects). - Changed
Asset.toXdrObject
toAsset.toXDRObject
andOperation.operationToObject
toOperation.toXDRObject
for consistency. - Time bounds support for numeric input values.
- Added
browser
prop to package.json.