live · mainnetoc · docs
specs · api · guides
docs / documentation

@orangecheck/me-client


@orangecheck/me-client / SiteFeeShape

Type Alias: SiteFeeShape

type SiteFeeShape = 
  | {
  kind: "fixed_sats";
  sats: number;
}
  | {
  kind: "percent_of_amount";
  pct: number;
};

Defined in: me-client/src/types.ts:60

The shape of a per-event fee — either a fixed sats amount or a percent of the underlying transaction amount (used for payments + pledges).