Skip to main content
Version: 1.2.0

Type Alias: TokenTransferFee

TokenTransferFee = { bps: number; feeDeducted: bigint; }

Defined in: chain.ts:202

Per-token transfer fee computed by Chain.getTotalFeesEstimate.

Properties

bps

bps: number

Defined in: chain.ts:207

The BPS rate applied (basis points, where 10_000 = 100%).


feeDeducted

feeDeducted: bigint

Defined in: chain.ts:205

Amount deducted from the transferred token by the pool (amount * bps / 10_000). The recipient receives amount - feeDeducted on the destination chain.