some

Creates a Clarity optional some type, wrapping a Clarity value. Alias for someCV.


Usage

import { Cl } from '@stacks/transactions';

Cl.some(Cl.uint(100));
Cl.some(Cl.stringAscii('hello'));

Reference Linkarrow-up-right


Signature

const some: (value: ClarityValue) => SomeCV;

Returns

SomeCV

A Clarity some value object wrapping the provided value.


Parameters

value (required)

  • Type: ClarityValue

The Clarity value to wrap in the optional.

Last updated

Was this helpful?