Transfer fee configuration extension.

1.1.0

interface TransferFeeConfig {
    newerTransferFee: {
        epoch: bigint;
        maximumFee: bigint;
        transferFeeBasisPoints: number;
    };
    olderTransferFee: {
        epoch: bigint;
        maximumFee: bigint;
        transferFeeBasisPoints: number;
    };
    transferFeeConfigAuthority: never;
    type: "TransferFeeConfig";
    withdrawWithheldAuthority: never;
    withheldAmount: bigint;
}

Properties

newerTransferFee: {
    epoch: bigint;
    maximumFee: bigint;
    transferFeeBasisPoints: number;
}
olderTransferFee: {
    epoch: bigint;
    maximumFee: bigint;
    transferFeeBasisPoints: number;
}
transferFeeConfigAuthority: never
type
withdrawWithheldAuthority: never
withheldAmount: bigint