@polkadot/types-known
Advanced tools
Changelog
13.0.1 Sep 10, 2024
Breaking Changes:
SignerPayloadJSON
to HexString (#5967)toPayload
(#5968)NOTE: This is part of the current change to generalize the SignerPayloadJSON in order to simplify its integration across other tools. The return value of assetId
field with toPayload
will always be its true type now, which in this case is Option<TAssetConversion>
where TAssetConversion
is equal to MultiLocation | AssetId
.
Changes:
Changelog
12.4.1 Aug 19, 2024
Contributed:
Changes:
transferable
and frameSystemAccountInfo
to the output of api.derive.balance.all
Changelog
12.2.3 July 29, 2024
Contributed:
Changelog
12.2.1 July 13, 2024
Changes:
@polkadot/hw-ledger
. For more info please see (13.0.1)Changelog
12.1.1 July 2, 2024
Contributed:
Changes:
Changelog
12.0.2 June 27, 2024
Important Changes:
withSignedTransaction
: This option has been added to SignerOptions
. When using signAndSend
, signAsync
, and dryRun
you may now enable or disable the use of the signedTransaction
field by adding the withSignedTransaction
option. When withSignedTransaction is not enabled but the signer adds a signedTransaction the api will error.
signPayload
.withSignedTransaction
has also been added to the SignerPayload
type which allows for payload.toPayload()
to include the option.signAsync
: now accepts the signedTransaction
field as well. This means that if withSignedTransaction
is enabled, and signedTransaction
is present the api will adjust the current payload attached to the SubmittableExtrinsic, and add the signature. Then the user can call .send()
as they please.dryRun
: All steps will be the same as signAsync with the exception that .send() has never needed to be called.Contributed: