Clarity Value Types
The AIBTC Cache supports two ways to specify Clarity values:
Stacks.js Clarity Values: Using the native Clarity value objects from the
@stacks/transactions
librarySimplified JSON Format: A JSON-friendly format that's easier to use from non-TypeScript environments
This document focuses on the simplified JSON format, which can be used when specifying function arguments or interpreting decoded values.
Simplified Format vs. Stacks.js Format
Stacks.js Format:
Simplified JSON Format:
When specifying function arguments or decoding values, you can use the following Clarity value types:
Basic Types
uint
Unsigned integer
{"type": "uint", "value": "123"}
int
Signed integer
{"type": "int", "value": "-123"}
bool
Boolean
{"type": "bool", "value": true}
principal
Principal (address)
{"type": "principal", "value": "ST252TFQ08T74ZZ6XK426TQNV4EXF1D4RMTTNCWFA"}
buffer
Byte buffer
{"type": "buffer", "value": "0x68656c6c6f"}
string
or stringascii
ASCII string
{"type": "string", "value": "hello"}
stringutf8
UTF-8 string
{"type": "stringutf8", "value": "hello 世界"}
Container Types
list
List of values
{"type": "list", "value": [{"type": "uint", "value": "1"}, {"type": "uint", "value": "2"}]}
tuple
Key-value pairs
{"type": "tuple", "value": {"key1": {"type": "uint", "value": "1"}}}
Optional Types
none
Optional none
{"type": "none"}
some
or optional
Optional some
{"type": "some", "value": {"type": "uint", "value": "123"}}
Response Types
ok
or responseok
Response OK
{"type": "ok", "value": {"type": "uint", "value": "123"}}
err
or responseerr
Response Error
{"type": "err", "value": {"type": "uint", "value": "123"}}
Complex Examples
Nested Tuple with List
Response with Optional
BigInt Handling
When working with large numbers, they are represented as strings to avoid precision loss:
Last updated