Type Alias TransactionPaymentEvent
TransactionPaymentEvent: Enum<{
TransactionFeePaid: {
actual_fee: bigint;
tip: bigint;
who: SS58String;
};
}>
Type declaration
TransactionFeePaid: {
actual_fee: bigint;
tip: bigint;
who: SS58String;
}
actual_fee: bigint
tip: bigint
who: SS58String
A transaction fee
actual_fee
, of whichtip
was added to the minimum inclusion fee, has been paid bywho
.