Is there way to construct an Address from a byte array of UInt8 in Cadence?
Docs have this example:
let someAddress: Address = 0x436164656E636521
someAddress.toBytes()
What I've tried:
let hexStr = String.encodeHex([0,0,0,0,0,0,0,1])
let addrStr = "0x".concat(hexStr) // gives a string in format '0x0000000000000001' but how cast to Address type?
Possible to do UInt8 byte array to Address?
The use case is to build an Address in a tx from an RLP-encoded data function argument.