@atomiqlabs/base
Version:
Base classes and interfaces for atomiq protocol
12 lines (10 loc) • 391 B
text/typescript
import {SwapEvent, SwapEventType} from "./SwapEvent";
import {SwapData} from "../../../swaps/SwapData";
/**
* Escrow swap Refund event representation, offerer refunded funds from the escrow
*
* @category Events
*/
export class RefundEvent<T extends SwapData> extends SwapEvent<T, SwapEventType.REFUND> {
readonly eventType: SwapEventType.REFUND = SwapEventType.REFUND;
}