cactus-agent
Version:
cactus rpc/websocket client library
9 lines (7 loc) • 321 B
text/typescript
import {SpendBundleConditions} from "../types/spend_bundle_condition";
import {Optional, uint16, uint64} from "../types/_python_types_";
export type NPCResult = {
error: Optional<uint16>;
conds: Optional<SpendBundleConditions>;
cost: uint64; // # CLVM cost only, cost of conditions and tx size is not included
};