Interface IFeeRateEvent

Emitted by Wallet when the fee rate changes.

interface IFeeRateEvent {
    low: {
        feerate: bigint;
        seconds: bigint;
    };
    normal: {
        feerate: bigint;
        seconds: bigint;
    };
    priority: {
        feerate: bigint;
        seconds: bigint;
    };
}

Properties

Properties

low: {
    feerate: bigint;
    seconds: bigint;
}

Type declaration

  • feerate: bigint
  • seconds: bigint
normal: {
    feerate: bigint;
    seconds: bigint;
}

Type declaration

  • feerate: bigint
  • seconds: bigint
priority: {
    feerate: bigint;
    seconds: bigint;
}

Type declaration

  • feerate: bigint
  • seconds: bigint

Generated using TypeDoc