Transactions reference
Each item described here is a TxDescriptor<T>, where T describes all the arguments required by the extrinsic
TxDescriptor<T>
T
For example, Balances.transfer_keep_alive is of type
Balances.transfer_keep_alive
transfer_keep_alive: TxDescriptor<{ dest: MultiAddress; value: bigint;}> Copy
transfer_keep_alive: TxDescriptor<{ dest: MultiAddress; value: bigint;}>
and can be used like this
const tx = api.tx.Balances.transfer_keep_alive({ dest: MultiAddress.Id(userAddress), value: 10n ** 10n, // 1 DOT})await tx.signAndSubmit(signer) Copy
const tx = api.tx.Balances.transfer_keep_alive({ dest: MultiAddress.Id(userAddress), value: 10n ** 10n, // 1 DOT})await tx.signAndSubmit(signer)
PAPI docs on transactions for more
Transactions reference
Each item described here is a
TxDescriptor<T>
, whereT
describes all the arguments required by the extrinsicFor example,
Balances.transfer_keep_alive
is of typeand can be used like this
See
PAPI docs on transactions for more