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