@heliofi/evm-adapter
Version:
API to interact with Helio Finances program on EVM chains.
14 lines (13 loc) • 322 B
TypeScript
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",
SWAP = "Swap"
}