FungibleConditionCode
Usage
import { FungibleConditionCode } from '@stacks/transactions';
// Used internally — prefer the Pc builder's readable methods instead:
// Pc.principal('...').willSendEq(1000).ustx() → FungibleConditionCode.Equal
// Pc.principal('...').willSendGt(1000).ustx() → FungibleConditionCode.GreaterDefinition
enum FungibleConditionCode {
Equal = 0x01,
Greater = 0x02,
GreaterEqual = 0x03,
Less = 0x04,
LessEqual = 0x05,
}Values
Value
Number
Pc Builder Method
String Code
Last updated
Was this helpful?