Open
Description
Describe the Feature
Change the behaviour of the Typed constructor if another instance of Typed is passed as value
Code Example
const address = ..... // any address|addresssable
const type1 = Typed.address(address) // type1.value == address
const type2 = Typed.address(type1) // type2.value == address
const type3 = Typed.uint256(type1) // throws an error