UNPKG

@heliofi/evm-adapter

Version:

API to interact with Helio Finances program on EVM chains.

13 lines (12 loc) 303 B
import { RecipientAndAmount } from './types'; export type PaymentEvent = { sender: string; tokenAddress: string; transferAmount: bigint; splitData: RecipientAndAmount[]; transactionDbId: string; }; export declare enum EventName { PAYMENT = "Payment", TRANSFER = "Transfer" }