origin
Entry point for building post conditions that apply to the transaction's origin (sender). Equivalent to Pc.principal('origin') but uses the special origin keyword.
Usage
import { Pc } from '@stacks/transactions';
// The transaction sender will send exactly 10,000 microSTX
Pc.origin().willSendEq(10000).ustx();
// The transaction sender will send at most 5,000 of a fungible token
Pc.origin()
.willSendLte(5000)
.ft('ST1PQHQKV0RJXZFY1DGX8MNSNYVE3VGZJSRTPGZGM.token-contract', 'token-name');
// The transaction sender will lock at most 1 STX when staking
Pc.origin().willSendLte(1000000).ustxToLock();
// The transaction sender will not perform any gated PoX action
Pc.origin().willNotPerformPox();Notes
Use
Pc.origin()when the post condition should apply to the sender of the transaction without specifying a specific address.Pc.origin()takes no arguments.The builder chain is the same as
Pc.principal, including the staking and PoX terminals.
Signature
Returns
PartialPcWithPrincipal
An intermediate builder object. See Pc.principal for the full chain API.
Last updated
Was this helpful?