returns instance of type clarity tuple
 import { tupleCV, trueCV, falseCV } from '@stacks/transactions';
 const tuple = tupleCV({
   c: trueCV(),
   b: falseCV(),
   a: trueCV(),
 });
 // { type: 12, data: { c: { type: 3 }, b: { type: 4 }, a: { type: 3 } } }
Generated using TypeDoc
Create tuple of clarity values