capi icon indicating copy to clipboard operation
capi copied to clipboard

extrinsic status rune `.iter`

Open harrysolovay opened this issue 1 year ago • 0 comments

Something along the following lines:

const iter = westendDev.Balances
  .transfer({
    value: 12345n,
    dest: billy.address,
  })
  .signed(signature({ sender: alexa }))
  .sent()
  .iter()

for await (const status of iter) {
  // ...
}

harrysolovay avatar Jun 29 '23 09:06 harrysolovay