For the complete documentation index, see llms.txt. This page is also available as Markdown.

stringAscii

Creates a Clarity string-ascii type. Alias for stringAsciiCV.


Usage

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

Cl.stringAscii('hello world');

Reference Link


Signature

const stringAscii: (value: string) => StringAsciiCV;

Returns

StringAsciiCV

A Clarity ASCII string value object.


Parameters

value (required)

  • Type: string

An ASCII string value.

Last updated

Was this helpful?