Type Alias: TokenTransferFee
TokenTransferFee = {
bps:number;feeDeducted:bigint; }
Defined in: chain.ts:233
Per-token transfer fee computed by Chain.getTotalFeesEstimate.
Properties
bps
bps:
number
Defined in: chain.ts:238
The BPS rate applied (basis points, where 10_000 = 100%).
feeDeducted
feeDeducted:
bigint
Defined in: chain.ts:236
Amount deducted from the transferred token by the pool (amount * bps / 10_000).
The recipient receives amount - feeDeducted on the destination chain.