Parse a piece of string text as Clarity value syntax. Supports all Clarity value types (primitives, sequences, composite types).
const repr = Cl.parse("u4");const repr = Cl.parse(`"hello"`);const repr = Cl.parse('(tuple (a 1) (b 2))'); Copy
const repr = Cl.parse("u4");const repr = Cl.parse(`"hello"`);const repr = Cl.parse('(tuple (a 1) (b 2))');
Generated using TypeDoc
Parse a piece of string text as Clarity value syntax. Supports all Clarity value types (primitives, sequences, composite types).