6.0.0-beta0
Pre-releasePyPi Package: https://pypi.org/project/stellar-sdk/6.0.0b0/
Documentation: https://stellar-sdk.readthedocs.io/en/6.0.0-beta0/
This update includes breaking changes.
This is a pre-release version, please do not use it in production.
Note
- As we introduced in the 5.0.0 release log, this release contains almost no new features, but contains a lot of refactorings, which improve the quality of the code and reduce the chance of users making mistakes.
- I've upgraded django-polaris to stellar-sdk 6.0.0b1, perhaps this can be used as a reference for the upgrade.
Update
- Added a
py.typed
file so that mypy will know to use our type annotations, I strongly recommend that you use it in development. (#543) - Strictly check whether the type of data input by the user meets the requirements, and if it does not,
TypeError
will be thrown. (#542) (#544) universal_account_id
attribute has been added tostellar_sdk.MuxedAccount
andstellar_sdk.Account
, please turn to the documentation to find out more. (#548)- Improve document.
Breaking changes
-
stellar_sdk.Server
can now only be used to send synchronous requests, if you need to send asynchronous requests, usestellar_sdk.ServerAsync
instead. (#540) -
The signature of the following function contained in
stellar_sdk.TransactionBuilder
has changed: (#547)- append_change_trust_op
- append_payment_op
- append_path_payment_strict_receive_op
- append_path_payment_strict_send_op
- append_manage_buy_offer_op
- append_manage_sell_offer_op
- append_create_passive_sell_offer_op
# The most obvious change is that now you need to pass in an Asset object. # Before transaction_builder.append_payment_op(destination=destination_id, amount="10", asset_code="XLM", asset_issuer=None) # Now transaction_builder.append_payment_op(destination=destination_id, asset=Asset.native(), amount="10")
-
append_change_trust_liquidity_pool_asset_op
instellar_sdk.TransactionBuilder
has been removed, please useappend_change_trust_op
instead. (#547) -
The initialization function for
stellar_sdk.Account
has changed, previously it wasdef __init__(self, account_id: Union[str, MuxedAccount], sequence: int)
and now it isdef __init__(self, account: Union[str, MuxedAccount], sequence: int, raw_data: Dict[str, Any])
. (#548) -
stellar_sdk.exceptions.ValueError
,stellar_sdk.exceptions.TypeError
andstellar_sdk.exceptions.AttributeError
are no longer subclass ofstellar_sdk.exceptions.SdkError
, they are now aliases for Python's built-in functions. (#549) -
The previous type of
stellar_sdk.BaseTransactionEnvelope.signatures
wasstellar_sdk.xdr.DecoratedSignature
, now it isstellar_sdk.DecoratedSignature
. (#538) -
stellar_sdk.sep.federation.resolve_stellar_address
andstellar_sdk.sep.federation.resolve_account_id
can also only be used to send synchronization requests, pleasestellar_sdk.sep.federation.resolve_stellar_address_async
andstellar_sdk.sep.federation.resolve_account_id_async
to send asynchronous requests. (#540) -
stellar_sdk.sep.stellar_toml.fetch_stellar_toml
can also only be used to send synchronization requests, pleasestellar_sdk.sep.stellar_toml.fetch_stellar_toml_async
to send asynchronous requests. (#540) -
The initialization function for
stellar_sdk.SignerKey
has changed, previously it wasdef __init__(self, signer_key: stellar_xdr.SignerKey)
and now it isdef __init__(self, signer_key: bytes, signer_key_type: SignerKeyType)
, the attribute contained therein has been changed accordingly. (#537) -
clear_flags
andset_flags
instellar_sdk.operation.SetOptions
have been changed tostellar_sdk.operation.AuthorizationFlag
type, previously it wasint
. (#528) -
The types of the following attribute may have previously varied with the type of the parameters entered by the user, but now they are deterministic: (#528)
attribute current type stellar_sdk.operation.ChangeTrust.limit str stellar_sdk.operation.Clawback.amount str stellar_sdk.operation.CreateAccount.starting_balance str stellar_sdk.operation.CreateClaimableBalance.amount str stellar_sdk.operation.CreatePassiveSellOffer.amount str stellar_sdk.operation.CreatePassiveSellOffer.price Price stellar_sdk.operation.LiquidityPoolDeposit.max_amount_a str stellar_sdk.operation.LiquidityPoolDeposit.max_amount_b str stellar_sdk.operation.LiquidityPoolDeposit.min_price Price stellar_sdk.operation.LiquidityPoolDeposit.max_price Price stellar_sdk.operation.LiquidityPoolWithdraw.amount str stellar_sdk.operation.LiquidityPoolWithdraw.min_amount_a str stellar_sdk.operation.LiquidityPoolWithdraw.min_amount_b str stellar_sdk.operation.ManageBuyOffer.amount str stellar_sdk.operation.ManageBuyOffer.price Price stellar_sdk.operation.ManageSellOffer.amount str stellar_sdk.operation.ManageSellOffer.price Price stellar_sdk.operation.PathPaymentStrictReceive.send_max str stellar_sdk.operation.PathPaymentStrictReceive.dest_amount str stellar_sdk.operation.PathPaymentStrictSend.send_amount str stellar_sdk.operation.PathPaymentStrictSend.dest_min str stellar_sdk.operation.Payment.amount str