Type Alias TransactionPaymentEvent

TransactionPaymentEvent: Enum<{
    TransactionFeePaid: {
        actual_fee: bigint;
        tip: bigint;
        who: SS58String;
    };
}>

Type declaration

  • TransactionFeePaid: {
        actual_fee: bigint;
        tip: bigint;
        who: SS58String;
    }

    A transaction fee actual_fee, of which tip was added to the minimum inclusion fee, has been paid by who.

    • actual_fee: bigint
    • tip: bigint
    • who: SS58String