Product Token Pricing Network Docs Changelog
Getting started

Quick start

Settle your first invoice on the FTR rail in three steps. You'll need a self-custody wallet and a Whitechain RPC endpoint.

1 · Install the SDK

Add the FTR client to your project. It wraps settlement, collateral, and rewards calls behind one typed interface.

bash
$ npm install @ftr/client

2 · Connect a wallet

Point the client at Whitechain and your signer. Amounts are denominated in FTR at the $0.01 utility reference.

javascript
import { FTR } from "@ftr/client";

const ftr = new FTR({
  rpc: "https://rpc.whitechain.io",
  signer,
});

3 · Settle an invoice

Call settle() with the counterparty and amount. Settlement is final on confirmation, typically in ~1.8s.

javascript
await ftr.settle({
  to: "0x8Af…12E4",
  amount: "12_400",
  ref: "INV-0042",
});

FTR is a utility token used to operate the rail. Nothing in these docs is financial advice or a promise of price or return.

FAQ

FTR is the utility token that operates the Faktorist settlement rail — it settles invoices, collateralizes trade credit, and rewards the buyers, suppliers and carriers who keep the network honest.

Settlements clear on Whitechain and are final on confirmation, typically in ~1.8s. A priority lane clears in under a second.

Collateral you lock (FTR, USDC, wBTC) backs your credit line. Positions liquidate on-rail below a 1.05× ratio — a mechanical threshold, not a forecast.

No. FTR is a utility token used to operate the rail. Amounts are denominated at the $0.01 utility reference; nothing here is financial advice or a promise of price or return.