According to docs this should be the way to convert b256 to byte array.
let recipient_bits:b256 = recipient.bits();
let mut recipient_bytes = recipient_bits.to_le_bytes();
Errors with:
No method named "to_le_bytes" found for type "b256"
Any idea why?