MoveTypeSignature
The signature of a concrete Move Type (a type with all its type parameters instantiated with concrete types, that contains no references), corresponding to the following recursive type:
type MoveTypeSignature = "address" | "bool" | "u8" | "u16" | ... | "u256" | { vector: MoveTypeSignature } | { datatype: { package: string, module: string, type: string, typeParameters: [MoveTypeSignature], } }
scalar MoveTypeSignature
Member Of
MoveType
object