PostConditionType
Usage
import { PostConditionType } from '@stacks/transactions';
// Check post-condition type
if (pc.type === 'stx-postcondition') {
// PostConditionType.STX
}Definition
enum PostConditionType {
STX = 0x00,
Fungible = 0x01,
NonFungible = 0x02,
}Values
Value
Number
Description
Last updated
Was this helpful?